git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@31 05c56307-c608-d34a-929d-697000501d7a
29 lines
1.1 KiB
C++
29 lines
1.1 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef RibbonNotepadDemoGallerySetupH
|
|
#define RibbonNotepadDemoGallerySetupH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
//---------------------------------------------------------------------------
|
|
|
|
class TColorDialogSetupForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TButton *btnOK;
|
|
TButton *btnCancel;
|
|
TCheckBox *chkRemoveHorizontalItemPadding;
|
|
TCheckBox *chkRemoveVerticalItemPadding;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TColorDialogSetupForm(TComponent* Owner);
|
|
bool __fastcall GetSettings(bool &RemoveHorizontalItemPadding,
|
|
bool &RemoveVerticalItemPadding);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TColorDialogSetupForm *ColorDialogSetupForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|