FrmMainF.h.~20~ 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmMainFH
  3. #define FrmMainFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "cxContainer.hpp"
  10. #include "cxControls.hpp"
  11. #include "cxEdit.hpp"
  12. #include "cxGraphics.hpp"
  13. #include "cxLookAndFeelPainters.hpp"
  14. #include "cxLookAndFeels.hpp"
  15. #include "cxMaskEdit.hpp"
  16. #include "cxSpinEdit.hpp"
  17. #include "cxTextEdit.hpp"
  18. #include "dxSkinBlack.hpp"
  19. #include "dxSkinMcSkin.hpp"
  20. #include "dxSkinsCore.hpp"
  21. #include "cxButtons.hpp"
  22. #include <Menus.hpp>
  23. #include "cxDropDownEdit.hpp"
  24. //---------------------------------------------------------------------------
  25. class TFrmMain : public TForm
  26. {
  27. __published: // IDE-managed Components
  28. TLabel *Label1;
  29. TLabel *Label2;
  30. TLabel *Label3;
  31. TLabel *Label4;
  32. TLabel *lblIssueDays;
  33. TcxTextEdit *EdSecretValue;
  34. TcxButton *btnLicenseGenerateXml;
  35. TLabel *Label5;
  36. TLabel *Label6;
  37. TLabel *Label7;
  38. TLabel *Label8;
  39. TLabel *Label9;
  40. TcxComboBox *CboLoginType;
  41. TcxTextEdit *EdThumbPrint;
  42. TcxTextEdit *EdAppName;
  43. TcxTextEdit *EdAppVersion;
  44. TcxTextEdit *EdDomain;
  45. TcxTextEdit *EdMipDataPath;
  46. TcxTextEdit *EdTenantId;
  47. TcxTextEdit *EdClientId;
  48. TcxTextEdit *EdEmail;
  49. TLabel *LblHint;
  50. TCheckBox *ChkView;
  51. void __fastcall btnLicenseGenerateXmlClick(TObject *Sender);
  52. void __fastcall CboLoginTypePropertiesChange(TObject *Sender);
  53. void __fastcall ChkViewClick(TObject *Sender);
  54. private: // User declarations
  55. public: // User declarations
  56. __fastcall TFrmMain(TComponent* Owner);
  57. };
  58. //---------------------------------------------------------------------------
  59. extern PACKAGE TFrmMain *FrmMain;
  60. //---------------------------------------------------------------------------
  61. #endif