summaryrefslogtreecommitdiff
path: root/apps/windoze/CBuilder4/prototype/BookMarkPanel.h
diff options
context:
space:
mode:
authorRoberto C. Sanchez <roberto@connexer.com>2014-03-29 10:53:49 -0400
committerRoberto C. Sanchez <roberto@connexer.com>2014-03-29 10:53:49 -0400
commit8c8aa6b07e595cfac56838b5964ab3e96051f1b2 (patch)
treeda38e2c1979148dbd3b0c7b87f930746f5ba7f44 /apps/windoze/CBuilder4/prototype/BookMarkPanel.h
parent8d3fc864d094eeadc721f8e93436b37a5fab173e (diff)
Imported Upstream version 1.5.7
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