mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
e6c23361a1
- Add ImageModel::IsBlackAndWhite and ImageModel::PushBlackAndWhite helper functions. - Add CAttributesDialog::m_bBlackAndWhite. - If IDD_ATTRIBUTESRB4 is checked, then make the bitmap black and white. - Add IDS_LOSECOLOR to show message. CORE-19094
124 lines
5 KiB
C++
124 lines
5 KiB
C++
/*
|
|
* PROJECT: PAINT for ReactOS
|
|
* LICENSE: LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
|
|
* PURPOSE: Window procedures of the dialog windows plus launching functions
|
|
* COPYRIGHT: Copyright 2015 Benedikt Freisen <b.freisen@gmx.net>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
void ShowError(INT stringID, ...);
|
|
|
|
class CMirrorRotateDialog : public CDialogImpl<CMirrorRotateDialog>
|
|
{
|
|
public:
|
|
enum { IDD = IDD_MIRRORROTATE };
|
|
|
|
BEGIN_MSG_MAP(CMirrorRotateDialog)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
MESSAGE_HANDLER(WM_CLOSE, OnClose)
|
|
COMMAND_ID_HANDLER(IDOK, OnOk)
|
|
COMMAND_ID_HANDLER(IDCANCEL, OnCancel)
|
|
COMMAND_ID_HANDLER(IDD_MIRRORROTATERB3, OnRadioButton3)
|
|
COMMAND_ID_HANDLER(IDD_MIRRORROTATERB1, OnRadioButton12)
|
|
COMMAND_ID_HANDLER(IDD_MIRRORROTATERB2, OnRadioButton12)
|
|
END_MSG_MAP()
|
|
|
|
LRESULT OnInitDialog(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnClose(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnOk(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnCancel(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnRadioButton3(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnRadioButton12(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
};
|
|
|
|
class CAttributesDialog : public CDialogImpl<CAttributesDialog>
|
|
{
|
|
public:
|
|
enum { IDD = IDD_ATTRIBUTES };
|
|
|
|
BEGIN_MSG_MAP(CAttributesDialog)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
MESSAGE_HANDLER(WM_CLOSE, OnClose)
|
|
COMMAND_ID_HANDLER(IDOK, OnOk)
|
|
COMMAND_ID_HANDLER(IDCANCEL, OnCancel)
|
|
COMMAND_ID_HANDLER(IDD_ATTRIBUTESSTANDARD, OnDefault)
|
|
COMMAND_ID_HANDLER(IDD_ATTRIBUTESRB1, OnRadioButton1)
|
|
COMMAND_ID_HANDLER(IDD_ATTRIBUTESRB2, OnRadioButton2)
|
|
COMMAND_ID_HANDLER(IDD_ATTRIBUTESRB3, OnRadioButton3)
|
|
COMMAND_ID_HANDLER(IDD_ATTRIBUTESEDIT1, OnEdit1)
|
|
COMMAND_ID_HANDLER(IDD_ATTRIBUTESEDIT2, OnEdit2)
|
|
END_MSG_MAP()
|
|
|
|
LRESULT OnInitDialog(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnClose(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnOk(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnCancel(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnDefault(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnRadioButton1(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnRadioButton2(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnRadioButton3(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnEdit1(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnEdit2(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
|
|
public:
|
|
int newWidth;
|
|
int newHeight;
|
|
BOOL m_bBlackAndWhite;
|
|
};
|
|
|
|
class CStretchSkewDialog : public CDialogImpl<CStretchSkewDialog>
|
|
{
|
|
public:
|
|
enum { IDD = IDD_STRETCHSKEW };
|
|
|
|
BEGIN_MSG_MAP(CStretchSkewDialog)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
MESSAGE_HANDLER(WM_CLOSE, OnClose)
|
|
COMMAND_ID_HANDLER(IDOK, OnOk)
|
|
COMMAND_ID_HANDLER(IDCANCEL, OnCancel)
|
|
END_MSG_MAP()
|
|
|
|
LRESULT OnInitDialog(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnClose(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnOk(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
LRESULT OnCancel(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled);
|
|
|
|
public:
|
|
POINT percentage;
|
|
POINT angle;
|
|
};
|
|
|
|
class CFontsDialog : public CDialogImpl<CFontsDialog>
|
|
{
|
|
public:
|
|
enum { IDD = IDD_FONTS };
|
|
|
|
CFontsDialog();
|
|
void InitFontNames();
|
|
void InitFontSizes();
|
|
void InitToolbar();
|
|
|
|
BEGIN_MSG_MAP(CFontsDialog)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
MESSAGE_HANDLER(WM_CLOSE, OnClose)
|
|
MESSAGE_HANDLER(WM_COMMAND, OnCommand)
|
|
MESSAGE_HANDLER(WM_MOVE, OnMove)
|
|
MESSAGE_HANDLER(WM_NOTIFY, OnNotify)
|
|
MESSAGE_HANDLER(WM_TOOLSMODELTOOLCHANGED, OnToolsModelToolChanged)
|
|
MESSAGE_HANDLER(WM_MEASUREITEM, OnMeasureItem)
|
|
MESSAGE_HANDLER(WM_DRAWITEM, OnDrawItem)
|
|
END_MSG_MAP()
|
|
|
|
protected:
|
|
LRESULT OnInitDialog(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnClose(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnCommand(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnMove(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnNotify(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnToolsModelToolChanged(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnMeasureItem(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
LRESULT OnDrawItem(UINT nMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
|
|
void OnFontSize(UINT codeNotify);
|
|
void OnFontName(UINT codeNotify);
|
|
};
|