git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@29 05c56307-c608-d34a-929d-697000501d7a
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef EditorsInPlaceDemoMainH
|
|
#define EditorsInPlaceDemoMainH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "cxClasses.hpp"
|
|
#include "cxControls.hpp"
|
|
#include "cxCustomData.hpp"
|
|
#include "cxCustomPivotGrid.hpp"
|
|
#include "cxDBPivotGrid.hpp"
|
|
#include "cxEdit.hpp"
|
|
#include "cxGraphics.hpp"
|
|
#include "cxLookAndFeels.hpp"
|
|
#include "cxProgressBar.hpp"
|
|
#include "cxStyles.hpp"
|
|
#include "DemoBasicMain.h"
|
|
#include <Dialogs.hpp>
|
|
#include <Menus.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TfrmEditorsInPlace : public TfrmDemoBaisicMain
|
|
{
|
|
__published: // IDE-managed Components
|
|
TcxDBPivotGrid *DBPivotGrid;
|
|
TcxDBPivotGridField *pgfPurchaseDate;
|
|
TcxDBPivotGridField *pgfPaymentType;
|
|
TcxDBPivotGridField *pgfQuantity;
|
|
TcxDBPivotGridField *pgfCarName;
|
|
TcxDBPivotGridField *pgfUnitPrice;
|
|
TcxDBPivotGridField *pgfCompanyName;
|
|
TcxDBPivotGridField *pgfPaymentAmount;
|
|
private: // User declarations
|
|
TcxCustomPivotGrid* __fastcall PivotGrid();
|
|
public: // User declarations
|
|
__fastcall TfrmEditorsInPlace(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TfrmEditorsInPlace *frmEditorsInPlace;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|