PlugInSetChartF.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. //---------------------------------------------------------------------------
  35. class TPlugInSetChart : public TForm
  36. {
  37. __published: // IDE-managed Components
  38. TTimer *TmrRefresh;
  39. TShape *ShpInfo;
  40. TcxButton *BtnSave;
  41. TcxLabel *cxLabel1;
  42. TcxLabel *cxLabel2;
  43. TcxLabel *cxLabel3;
  44. TcxLabel *cxLabel4;
  45. TColorDialog *ColorDialog;
  46. TcxCheckBox *ChkVisible;
  47. TPanel *PnlItemColor;
  48. TcxImageComboBox *CbChartKind;
  49. TImage *ImgDesc01;
  50. TImage *ImgDesc02;
  51. TImage *ImgDesc03;
  52. TImage *ImgDesc04;
  53. TcxTextEdit *EdtItemNm;
  54. void __fastcall FormShow(TObject *Sender);
  55. void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  56. void __fastcall TmrRefreshTimer(TObject *Sender);
  57. void __fastcall BtnSaveClick(TObject *Sender);
  58. void __fastcall PnlItemColorClick(TObject *Sender);
  59. private: // User declarations
  60. public:
  61. int m_nSrsType;
  62. bool m_bUpdate;
  63. public: // User declarations
  64. __fastcall TPlugInSetChart(TComponent* Owner);
  65. void __fastcall LoadLocalSkin();
  66. void __fastcall CommClose();
  67. void __fastcall FormInit();
  68. void __fastcall RefreshData();
  69. };
  70. //---------------------------------------------------------------------------
  71. //extern PACKAGE TPlugInSetChart *PlugInSetChart;
  72. //---------------------------------------------------------------------------
  73. #endif