summaryrefslogtreecommitdiff
path: root/apps/windoze/CBuilder4/prototype/BookMarkPanel.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/windoze/CBuilder4/prototype/BookMarkPanel.h')
-rw-r--r--apps/windoze/CBuilder4/prototype/BookMarkPanel.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/apps/windoze/CBuilder4/prototype/BookMarkPanel.h b/apps/windoze/CBuilder4/prototype/BookMarkPanel.h
deleted file mode 100644
index c998b76..0000000
--- a/apps/windoze/CBuilder4/prototype/BookMarkPanel.h
+++ /dev/null
@@ -1,39 +0,0 @@
-//---------------------------------------------------------------------------
-#ifndef BookMarkPanelH
-#define BookMarkPanelH
-//---------------------------------------------------------------------------
-#include <SysUtils.hpp>
-#include <Controls.hpp>
-#include <Classes.hpp>
-#include <Forms.hpp>
-#include <ExtCtrls.hpp>
-#include <swconfig.h>
-#include <list>
-//---------------------------------------------------------------------------
-class PACKAGE TBookMarkPanel : public TPanel
-{
-private:
- void AddSection(SWConfig *config, TTreeView *tree, TTreeNode *parent, String section);
- list <String *> bmfiles; // so we can delete each display we create
-protected:
-public:
- __fastcall TBookMarkPanel(TComponent* Owner);
- virtual __fastcall ~TBookMarkPanel();
- virtual void __fastcall CreateWnd();
- string bmdir;
- void SaveBookmarks();
- void AddSectionToConf(SWConfig *config, String section, TTreeNode *tree);
-__published:
- TTreeView *bmtree;
- TPopupMenu *BMPopup;
- void __fastcall bmtreeDragDrop(TObject *Sender, TObject *Source, int X, int Y);
- void __fastcall bmtreeDragOver(TObject *Sender, TObject *Source, int X, int Y,
- TDragState State, bool &Accept);
- void __fastcall bmtreeDblClick(TObject *Sender);
- void __fastcall AddChild1Click(TObject *Sender);
- void __fastcall Delete1Click(TObject *Sender);
- void __fastcall Rename1Click(TObject *Sender);
- void __fastcall NewBookmarkFile1Click(TObject *Sender);
-};
-//---------------------------------------------------------------------------
-#endif