-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuMainForm.h
More file actions
54 lines (53 loc) · 2.02 KB
/
Copy pathuMainForm.h
File metadata and controls
54 lines (53 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//---------------------------------------------------------------------------
#ifndef uMainFormH
#define uMainFormH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include "cxButtons.hpp"
#include "cxClasses.hpp"
#include "cxControls.hpp"
#include "cxGraphics.hpp"
#include "cxLookAndFeelPainters.hpp"
#include "cxLookAndFeels.hpp"
#include "dxReport.hpp"
#include <Data.DB.hpp>
#include <Vcl.Menus.hpp>
#include "dxmdaset.hpp"
#include "uData.h"
#include "cxContainer.hpp"
#include "cxRadioGroup.hpp"
#include "cxGroupBox.hpp"
#include "dxBackend.ConnectionString.JSON.DataSet.hpp"
#include "dxBackend.ConnectionString.JSON.hpp"
#include "dxBackend.hpp"
//---------------------------------------------------------------------------
class TMainForm : public TForm
{
__published: // IDE-managed Components
TcxGroupBox *btnGroupDisplayDialog;
TcxButton *btnDisplayReport;
TcxButton *btnDisplayDesigner;
TcxRadioGroup *rbtnGroupLocalization;
TcxRadioButton *rbtnSelectEnglishLocalization;
TcxRadioButton *rbtnSelectGermanLocalization;
TdxReport *dxReport1;
TdxBackendDataConnectionManager *dxBackendDataConnectionManager1;
TdxBackendDataSetJSONConnection *dxBackendDataConnectionManager1dxBackendDataSetJSONConnection1;
TdxBackendDataSetCollectionItem *itmProducts;
TdxBackendDataSetCollectionItem *itmCategories;
void __fastcall FormCreate(TObject *Sender);
void __fastcall btnDisplayDesignerClick(TObject *Sender);
void __fastcall btnDisplayReportClick(TObject *Sender);
void __fastcall rbtnSelectEnglishLocalizationClick(TObject *Sender);
void __fastcall rbtnSelectGermanLocalizationClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TMainForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TMainForm *MainForm;
//---------------------------------------------------------------------------
#endif