Init bookmark manager

This commit is contained in:
Charles J. Cliffe
2016-09-14 19:46:57 -04:00
parent bf7d67751e
commit ba7a0d8cd3
5 changed files with 75 additions and 3 deletions
+4 -3
View File
@@ -2,13 +2,13 @@
#include "BookmarkPanel.h"
#include "BookmarkMgr.h"
class BookmarkView : public BookmarkPanel {
public:
BookmarkView( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( -1, -1 ), long style = wxTAB_TRAVERSAL );
void updateActiveList();
void saveToFile(std::string bookmarkFn);
void loadFromFile(std::string bookmarkFn);
protected:
void onTreeBeginLabelEdit( wxTreeEvent& event );
@@ -22,5 +22,6 @@ protected:
void onBookmark( wxCommandEvent& event );
void onActivate( wxCommandEvent& event );
void onRemove( wxCommandEvent& event );
};