Componentes.Terceros.DevExp.../official/x.38/ExpressQuantumTreeList 4/Demos/CBuilder/SimpleListDemo/SimpleListDemoData.h
2008-08-27 11:56:15 +00:00

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