git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef RibbonNotepadDemoOptionsH
|
|
#define RibbonNotepadDemoOptionsH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
//---------------------------------------------------------------------------
|
|
|
|
struct TScreenTipOptions
|
|
{
|
|
bool ShowScreenTips;
|
|
bool ShowDescripitons;
|
|
};
|
|
|
|
class TRibbonDemoOptionsForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TComboBox *cbColorScheme;
|
|
TComboBox *cbScreenTipStyle;
|
|
TLabel *lblColorScheme;
|
|
TLabel *lblScreenTipStyle;
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TRibbonDemoOptionsForm(TComponent* Owner);
|
|
bool __fastcall GetOptions(String &AColorSchemeName, TScreenTipOptions &AScreenTipOptions);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TRibbonDemoOptionsForm *RibbonDemoOptionsForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|