PlugInSetChartF.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. //---------------------------------------------------------------------------
  2. #ifndef PlugInSetChartFH
  3. #define PlugInSetChartFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <jpeg.hpp>
  11. #include <Buttons.hpp>
  12. #include <ImgList.hpp>
  13. #include <Graphics.hpp>
  14. #include <Dialogs.hpp>
  15. //---------------------------------------------------------------------------
  16. #include "DataTypesF.h"
  17. #include <Menus.hpp>
  18. #include "cxButtons.hpp"
  19. #include "cxCheckBox.hpp"
  20. #include "cxContainer.hpp"
  21. #include "cxControls.hpp"
  22. #include "cxDropDownEdit.hpp"
  23. #include "cxEdit.hpp"
  24. #include "cxGraphics.hpp"
  25. #include "cxImageComboBox.hpp"
  26. #include "cxLabel.hpp"
  27. #include "cxLookAndFeelPainters.hpp"
  28. #include "cxLookAndFeels.hpp"
  29. #include "cxMaskEdit.hpp"
  30. #include "cxTextEdit.hpp"
  31. #include "dxSkinBlack.hpp"
  32. #include "dxSkinBlue.hpp"
  33. #include "dxSkinsCore.hpp"
  34. #include "dxSkinMcSkin.hpp"
  35. //---------------------------------------------------------------------------
  36. class TPlugInSetChart : public TForm
  37. {
  38. __published: // IDE-managed Components
  39. TTimer *TmrRefresh;
  40. TShape *ShpInfo;
  41. TcxButton *BtnSave;
  42. TcxLabel *cxLabel1;
  43. TcxLabel *cxLabel2;
  44. TcxLabel *cxLabel3;
  45. TcxLabel *cxLabel4;
  46. TColorDialog *ColorDialog;
  47. TcxCheckBox *ChkVisible;
  48. TPanel *PnlItemColor;
  49. TcxImageComboBox *CbChartKind;
  50. TImage *ImgDesc01;
  51. TImage *ImgDesc02;
  52. TImage *ImgDesc03;
  53. TImage *ImgDesc04;
  54. TcxTextEdit *EdtItemNm;
  55. void __fastcall FormShow(TObject *Sender);
  56. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  57. void __fastcall TmrRefreshTimer(TObject *Sender);
  58. void __fastcall BtnSaveClick(TObject *Sender);
  59. void __fastcall PnlItemColorClick(TObject *Sender);
  60. private: // User declarations
  61. public:
  62. int m_nSrsType;
  63. bool m_bUpdate;
  64. public: // User declarations
  65. __fastcall TPlugInSetChart(TComponent* Owner);
  66. void __fastcall LoadLocalSkin();
  67. void __fastcall CommClose();
  68. void __fastcall FormInit();
  69. void __fastcall RefreshData();
  70. };
  71. //---------------------------------------------------------------------------
  72. //extern PACKAGE TPlugInSetChart *PlugInSetChart;
  73. //---------------------------------------------------------------------------
  74. #endif