コード例 #1
0
ファイル: ExStyle.cpp プロジェクト: jwk000/YSLib
void
RectDrawRadioBox_Aoi(const PaintContext& pc_, RadioBox& rb)
{
	RectDrawSelector_Aoi([](const PaintContext& pc, const Size& s,
		const bool cst[], const Color ccs[], size_t c_idx){
		const auto& g(pc.Target);
		const SDst rad(min(s.Width / 2, s.Height / 2));
		const auto pt(pc.Location + Size(rad, rad));
		const Rect& bounds(pc.ClipArea);
		const Rect r(pc.Location, s);
		const bool is_enabled(cst[ControlState_Enabled]);

		DrawCircle(g, bounds, pt, rad, ccs[is_enabled ? c_idx : 0]);
		// XXX: Minimal size.
		if(YB_LIKELY(r.Width > 10 && r.Height > 10))
		{
			SDst radt(rad);

			FillCircle(g, bounds, pt, --radt, ccs[SelectorIndex_Aoi_C1
				+ (cst[ControlState_Locked] || cst[ControlState_Focused]
				? 2 : is_enabled ? c_idx : 0)]);
			if(is_enabled)
			{
				--c_idx;
				DrawCircle(g, bounds, pt, --radt,
					ccs[SelectorIndex_Aoi_C2 + c_idx]);
				DrawCircle(g, bounds, pt, --radt,
					ccs[SelectorIndex_Aoi_C3 + c_idx]);
			}
		}
		if(cst[ControlState_Ticked])
			FillCircle(g, bounds, pt, rad - 2, is_enabled ? Color(11, 130, 199)
				: MakeGray(190));
	}, pc_, rb, rb.IsSelected());
}
コード例 #2
0
ファイル: pixmap.cpp プロジェクト: ailue/NiubiSlash
void Pixmap::makeGray(){
    MakeGray(pixmap);
}
コード例 #3
0
ファイル: DocCommands.cpp プロジェクト: jimmccurdy/ArchiveGit
bool CDocCommands::DoCommand(LPCTSTR rstrCommand, LPCTSTR strValue)
{
	CString strCommand = rstrCommand;
	strCommand.MakeUpper();
	CString strSubCommand = strValue;
	strSubCommand.MakeUpper();
	int iValue = _ttoi(strValue);

	if (!m_DocWindow.m_hWnd)
		return (strCommand == "CLOSE" ? true : false);

	bool bOK = false;
	// Commands from the main dialog
	     if (strCommand == "STARTOVER")
		bOK = StartOver();
	else if (strCommand == "ZOOMIN")
		bOK = ZoomIn();
	else if (strCommand == "ZOOMOUT")
		bOK = ZoomOut();
	else if (strCommand == "ZOOMFULL")
		bOK = ZoomFull();

	// Commands from the File Operations tab
	else if (strCommand == "FILETAB")
		bOK = FileTab(strSubCommand);

	// Commands from the Crop tab
	else if (strCommand == "CROPTAB")
		bOK = CropTab(iValue);

	// Commands from the Resize tab
	else if (strCommand == "RESIZETAB")
		bOK = ResizeTab(iValue, NULL);
	else if (strCommand == "RESIZEAPPLY")
		bOK = ResizeTab(EDIT_APPLY, strValue);

	// Commands from the Flip & Rotate tab
	else if (strCommand == "FLIPROTATETAB")
		bOK = FlipRotateTab(iValue);
	else if (strCommand == "FLIPROTATETABSUBCOMMAND")
		bOK = FlipRotateTabSubCommand(strSubCommand);

	// Commands from the Recolor Area Fill tab
	else if (strCommand == "RECOLORTAB")
		bOK = RecolorTab(iValue);
	else if (strCommand == "RECOLORTABSUBCOMMAND")
		bOK = RecolorTabSubCommand(strSubCommand);

	else if (strCommand == "SETPRIMARYCOLOR")
		m_DocWindow.m_ToolSettings.m_PrimaryColor = iValue;
	else if (strCommand == "SETSECONDARYCOLOR")
		m_DocWindow.m_ToolSettings.m_SecondaryColor = iValue;
	else if (strCommand == "TOLERANCE")
		m_DocWindow.m_ToolSettings.m_nTolerance = iValue;

	// Commands from the Special Effects tab
	else if (strCommand == "EFFECTSTAB")
		bOK = EffectsTab(iValue);
	else if (strCommand == "EFFECTSTABSUBCOMMAND")
		bOK = EffectsTabSubCommand(strSubCommand);

	// Commands from the Contrast & Brightness tab
	else if (strCommand == "CONTRASTBRIGHTNESSTAB")
		bOK = ContrastBrightnessTab(iValue);
	else if (strCommand == "AUTOCORRECT")
		bOK = AutoCorrect();

	// Commands from the Hue & Saturation tab
	else if (strCommand == "COLORSTAB")
		bOK = ColorsTab(iValue);
	else if (strCommand == "MAKEGRAY")
		bOK = MakeGray();
	else if (strCommand == "INVERT")
		return Invert();

	// Commands from the Red Eye Removal tab
	else if (strCommand == "REDEYETAB")
		bOK = RedEyeTab(iValue);

	// Commands from the Frames & Borders tab
	else if (strCommand == "BORDERSTAB")
		bOK = BordersTab(iValue);
	else if (strCommand == "BORDERIMAGE")
		bOK = BorderImageMerge(strValue);
	else if (strCommand == "BORDERTYPE")
		bOK = BorderType(strValue);
	else if (strCommand == "BORDERSIZE")
		bOK = BorderSize(iValue);
	else if (strCommand == "BORDERSOFTNESS")
		bOK = SetBorderSoftness(iValue);
	else if (strCommand == "BORDERSTRETCH")
		bOK = SetBorderStretch(!!iValue);
	else
		CMessageBox::Message(String("'%s' is not implemented.", strCommand));

	return bOK;
}