home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / Plasmatech / ptscp_examples.exe / %MAINDIR% / Examples / CustomColumns / CBuilder / FMain.h < prev   
Encoding:
C/C++ Source or Header  |  2001-08-31  |  1.1 KB  |  31 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef FMainH
  3. #define FMainH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ComCtrls.hpp>
  10. #include "UPTSplitter.hpp"
  11. #include "UPTShellControls.hpp"
  12. #include "UPTTreeList.hpp"
  13. //---------------------------------------------------------------------------
  14. class TFrmMain : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.     TPTShellList *PTShellList1;
  18.     TPTSplitter *PTSplitter1;
  19.     TPTShellTree *PTShellTree1;
  20.     void __fastcall PTShellList1FillComplete(TObject *Sender);
  21.     void __fastcall PTShellList1Insert(TObject *Sender, TListItem *Item);
  22. private:    // User declarations
  23.     bool FIsFolder;
  24. public:        // User declarations
  25.     __fastcall TFrmMain(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern TFrmMain *FrmMain;
  29. //---------------------------------------------------------------------------
  30. #endif
  31.