git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@31 05c56307-c608-d34a-929d-697000501d7a
89 lines
3.2 KiB
C++
89 lines
3.2 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef ViewCardSimpleDemoMainH
|
|
#define ViewCardSimpleDemoMainH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "cxClasses.hpp"
|
|
#include "cxControls.hpp"
|
|
#include "cxCustomData.hpp"
|
|
#include "cxData.hpp"
|
|
#include "cxDBData.hpp"
|
|
#include "cxEdit.hpp"
|
|
#include "cxFilter.hpp"
|
|
#include "cxGraphics.hpp"
|
|
#include "cxGrid.hpp"
|
|
#include "cxGridCardView.hpp"
|
|
#include "cxGridCustomTableView.hpp"
|
|
#include "cxGridCustomView.hpp"
|
|
#include "cxGridDBCardView.hpp"
|
|
#include "cxGridDBTableView.hpp"
|
|
#include "cxGridLevel.hpp"
|
|
#include "cxGridTableView.hpp"
|
|
#include "cxStyles.hpp"
|
|
#include <ActnList.hpp>
|
|
#include <ComCtrls.hpp>
|
|
#include <DB.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <ImgList.hpp>
|
|
#include <Menus.hpp>
|
|
#include "cxLookAndFeels.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TViewCardSimpleDemoMainForm : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TSplitter *Splitter;
|
|
TLabel *lbDescription;
|
|
TStatusBar *sbMain;
|
|
TPanel *pnDepartments;
|
|
TPanel *pnDepartmentsCaption;
|
|
TcxGrid *cxGridDepartments;
|
|
TcxGridDBTableView *cxGridDepartmentsDBTableView;
|
|
TcxGridDBColumn *cxGridDepartmentsDBTableViewNAME;
|
|
TcxGridLevel *cxGridDepartmentsLevel;
|
|
TPanel *pnUsers;
|
|
TcxGrid *cxGridUsers;
|
|
TcxGridDBCardView *cxGridUsersDBCardView;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewFNAME;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewMNAME;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewLNAME;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewCOUNTRY;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewPOSTALCODE;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewCITY;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewADDRESS;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewPHONE;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewFAX;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewEMAIL;
|
|
TcxGridDBCardViewRow *cxGridUsersDBCardViewHOMEPAGE;
|
|
TcxGridLevel *cxGridUsersLevel;
|
|
TPanel *pnUsersCaption;
|
|
TMainMenu *mmMain;
|
|
TMenuItem *miFile;
|
|
TMenuItem *miExit;
|
|
TMenuItem *miOptions;
|
|
TMenuItem *miInvertSelect;
|
|
TMenuItem *miCellSelect;
|
|
TMenuItem *miMultiSelect;
|
|
TMenuItem *miHideFocusRect;
|
|
TMenuItem *miAbout;
|
|
TMenuItem *miShowNavigator;
|
|
TcxLookAndFeelController *LookAndFeelController;
|
|
void __fastcall miAboutClick(TObject *Sender);
|
|
void __fastcall miInvertSelectClick(TObject *Sender);
|
|
void __fastcall miCellSelectClick(TObject *Sender);
|
|
void __fastcall miHideFocusRectClick(TObject *Sender);
|
|
void __fastcall miMulitiSelectClick(TObject *Sender);
|
|
void __fastcall miExitClick(TObject *Sender);
|
|
void __fastcall miShowNavigatorClick(TObject *Sender);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TViewCardSimpleDemoMainForm(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TViewCardSimpleDemoMainForm *ViewCardSimpleDemoMainForm;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|