git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@8 05c56307-c608-d34a-929d-697000501d7a
60 lines
1.9 KiB
C++
60 lines
1.9 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef SimpleListDemoDataH
|
|
#define SimpleListDemoDataH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "cxClasses.hpp"
|
|
#include "cxStyles.hpp"
|
|
#include <DB.hpp>
|
|
#include "cxTL.hpp"
|
|
#include <DBTables.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TSimpleListDemoDataDM : public TDataModule
|
|
{
|
|
__published: // IDE-managed Components
|
|
TDatabase *DataBase;
|
|
TTable *tblCars;
|
|
TAutoIncField *tblCarsID;
|
|
TStringField *tblCarsTrademark;
|
|
TStringField *tblCarsModel;
|
|
TBlobField *tblCarsPicture;
|
|
TFloatField *tblCarsPrice;
|
|
TSmallintField *tblCarsHP;
|
|
TFloatField *tblCarsLiter;
|
|
TSmallintField *tblCarsCyl;
|
|
TSmallintField *tblCarsTransmissSpeedCount;
|
|
TStringField *tblCarsTransmissAutomatic;
|
|
TSmallintField *tblCarsMPG_City;
|
|
TSmallintField *tblCarsMPG_Highway;
|
|
TStringField *tblCarsCategory;
|
|
TStringField *tblCarsHyperlink;
|
|
TMemoField *tblCarsDescription;
|
|
TDataSource *dsCars;
|
|
TcxStyleRepository *StyleRepository;
|
|
TcxStyle *cxStyle1;
|
|
TcxStyle *cxStyle2;
|
|
TcxStyle *cxStyle3;
|
|
TcxStyle *cxStyle4;
|
|
TcxStyle *cxStyle5;
|
|
TcxStyle *cxStyle6;
|
|
TcxStyle *cxStyle7;
|
|
TcxStyle *cxStyle8;
|
|
TcxStyle *cxStyle9;
|
|
TcxStyle *cxStyle10;
|
|
TcxStyle *cxStyle11;
|
|
TcxStyle *cxStyle12;
|
|
TcxStyle *cxStyle13;
|
|
TcxTreeListStyleSheet *TreeListStyleSheetDevExpress;
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TSimpleListDemoDataDM(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TSimpleListDemoDataDM *SimpleListDemoDataDM;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|