FRAME_ItsCrossF.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //---------------------------------------------------------------------------
  2. #ifndef FRAME_ItsCrossFH
  3. #define FRAME_ItsCrossFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Menus.hpp>
  11. #include "CDSItsCrossInfoF.h"
  12. #include "cxButtons.hpp"
  13. #include "cxCalc.hpp"
  14. #include "cxContainer.hpp"
  15. #include "cxControls.hpp"
  16. #include "cxCustomData.hpp"
  17. #include "cxEdit.hpp"
  18. #include "cxGraphics.hpp"
  19. #include "cxInplaceContainer.hpp"
  20. #include "cxLabel.hpp"
  21. #include "cxLookAndFeelPainters.hpp"
  22. #include "cxLookAndFeels.hpp"
  23. #include "cxStyles.hpp"
  24. #include "cxTextEdit.hpp"
  25. #include "cxTL.hpp"
  26. #include "cxTLdxBarBuiltInMenu.hpp"
  27. #include "dxSkinBlack.hpp"
  28. #include "dxSkinBlue.hpp"
  29. #include "dxSkinsCore.hpp"
  30. #include "dxSkinMcSkin.hpp"
  31. //---------------------------------------------------------------------------
  32. class TFRAMEItsCross : public TFrame
  33. {
  34. __published: // IDE-managed Components
  35. TcxTreeList *tlItsCross;
  36. TcxTreeListColumn *colItsCross;
  37. TcxTreeListColumn *colMem;
  38. TPanel *Panel2;
  39. TcxLabel *cxLabel5;
  40. TcxTextEdit *EdFilter;
  41. TcxButton *btnFilter;
  42. TcxButton *btnNoFilter;
  43. TcxLabel *lblAll;
  44. void __fastcall EdFilterKeyDown(TObject *Sender, WORD &Key, TShiftState Shift);
  45. void __fastcall btnFilterClick(TObject *Sender);
  46. void __fastcall btnNoFilterClick(TObject *Sender);
  47. private: // User declarations
  48. bool FCompleted;
  49. public:
  50. void __fastcall InitFilter(bool AShow);
  51. void __fastcall InitItsCross();
  52. void __fastcall FilterItsCross(String AFilter);
  53. void __fastcall FilterItsCrossA(String AFilter);
  54. void __fastcall UnFilterItsCross();
  55. AnsiString __fastcall GetHTMLString();
  56. void __fastcall GetCondition(STCondition& ACondition);
  57. String FSelNm;
  58. public: // User declarations
  59. __fastcall TFRAMEItsCross(TComponent* Owner);
  60. };
  61. //---------------------------------------------------------------------------
  62. //extern PACKAGE TFRAMEItsCross *FRAMEItsCross;
  63. //---------------------------------------------------------------------------
  64. #endif