FRAME_ItsRoadF.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //---------------------------------------------------------------------------
  2. #ifndef FRAME_ItsRoadFH
  3. #define FRAME_ItsRoadFH
  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 "CDSItsRoadInfoF.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. //---------------------------------------------------------------------------
  31. class TFRAMEItsRoad : public TFrame
  32. {
  33. __published: // IDE-managed Components
  34. TcxTreeList *tlItsRoad;
  35. TcxTreeListColumn *colItsRoad;
  36. TcxTreeListColumn *colMem;
  37. TPanel *Panel2;
  38. TcxLabel *cxLabel5;
  39. TcxTextEdit *EdFilter;
  40. TcxButton *btnFilter;
  41. TcxButton *btnNoFilter;
  42. TcxLabel *lblAll;
  43. void __fastcall EdFilterKeyDown(TObject *Sender, WORD &Key, TShiftState Shift);
  44. void __fastcall btnFilterClick(TObject *Sender);
  45. void __fastcall btnNoFilterClick(TObject *Sender);
  46. private: // User declarations
  47. bool FCompleted;
  48. public:
  49. void __fastcall InitFilter(bool AShow);
  50. void __fastcall InitItsRoad();
  51. void __fastcall FilterItsRoad(String AFilter);
  52. void __fastcall FilterItsRoadA(String AFilter);
  53. void __fastcall UnFilterItsRoad();
  54. AnsiString __fastcall GetHTMLString();
  55. void __fastcall GetCondition(STCodeCondition& ACondition);
  56. String FSelNm;
  57. public: // User declarations
  58. __fastcall TFRAMEItsRoad(TComponent* Owner);
  59. };
  60. //---------------------------------------------------------------------------
  61. //extern PACKAGE TFRAMEItsRoad *FRAMEItsRoad;
  62. //---------------------------------------------------------------------------
  63. #endif