FrmMainF.h.~19~ 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. void __fastcall btnLicenseGenerateXmlClick(TObject *Sender);
  51. void __fastcall CboLoginTypePropertiesChange(TObject *Sender);
  52. private: // User declarations
  53. public: // User declarations
  54. __fastcall TFrmMain(TComponent* Owner);
  55. };
  56. //---------------------------------------------------------------------------
  57. extern PACKAGE TFrmMain *FrmMain;
  58. //---------------------------------------------------------------------------
  59. #endif