]>
git.saurik.com Git - wxWidgets.git/blob - samples/notebook/notebook.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/notebook/notebook.h
3 // Purpose: a sample demonstrating notebook usage
4 // Author: Julian Smart
5 // Modified by: Dimitri Schoolwerth
8 // Copyright: (c) 1998-2002 wxWidgets team
9 // License: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/choicebk.h"
13 #include "wx/listbook.h"
14 #include "wx/treebook.h"
15 #include "wx/notebook.h"
16 #include "wx/toolbook.h"
18 #if wxUSE_LOG && !defined( __SMARTPHONE__ )
24 // Define a new application
25 class MyApp
: public wxApp
34 class MyFrame
: public wxFrame
40 void OnType(wxCommandEvent
& event
);
41 void OnOrient(wxCommandEvent
& event
);
42 void OnShowImages(wxCommandEvent
& event
);
43 void OnMulti(wxCommandEvent
& event
);
44 void OnExit(wxCommandEvent
& event
);
46 void OnAddPage(wxCommandEvent
& event
);
47 void OnInsertPage(wxCommandEvent
& event
);
48 void OnDeleteCurPage(wxCommandEvent
& event
);
49 void OnDeleteLastPage(wxCommandEvent
& event
);
50 void OnNextPage(wxCommandEvent
& event
);
52 void OnAddSubPage(wxCommandEvent
& event
);
53 void OnAddPageBefore(wxCommandEvent
& event
);
56 void OnContextHelp(wxCommandEvent
& event
);
59 void OnHitTest(wxCommandEvent
& event
);
61 void OnBookCtrl(wxBookCtrlBaseEvent
& event
);
63 void OnNotebook(wxNotebookEvent
& event
) { OnBookCtrl(event
); }
66 void OnChoicebook(wxChoicebookEvent
& event
) { OnBookCtrl(event
); }
69 void OnListbook(wxListbookEvent
& event
) { OnBookCtrl(event
); }
72 void OnTreebook(wxTreebookEvent
& event
) { OnBookCtrl(event
); }
75 void OnToolbook(wxToolbookEvent
& event
) { OnBookCtrl(event
); }
78 void OnIdle(wxIdleEvent
& event
);
81 void OnUpdateTreeMenu(wxUpdateUIEvent
& event
);
82 #endif // wxUSE_TREEBOOK
84 wxBookCtrlBase
*GetCurrentBook() const { return m_bookCtrl
; }
87 wxLog
*m_logTargetOld
;
90 wxPanel
*CreateNewPage() const;
91 int TranslateBookFlag(int nb
, int lb
, int chb
, int tbk
, int toolbk
) const;
92 void AddFlagStrIfFlagPresent(wxString
& flagStr
, long flags
, long flag
, const wxChar
* flagName
) const;
105 bool m_chkShowImages
;
110 wxPanel
*m_panel
; // Panel containing notebook and other controls
111 wxBookCtrlBase
*m_bookCtrl
;
118 wxBoxSizer
*m_sizerFrame
;
120 wxImageList
*m_imageList
;
122 DECLARE_EVENT_TABLE()
127 // these should be in the same order as Type_XXX elements above
128 ID_BOOK_NOTEBOOK
= wxID_HIGHEST
,
158 Name of each notebook page.
159 Used as a label for a page, and used when cloning the notebook
160 to decide what type of page it is.
163 #define I_WAS_INSERTED_PAGE_NAME wxT("Inserted")
164 #define RADIOBUTTONS_PAGE_NAME wxT("Radiobuttons")
165 #define VETO_PAGE_NAME wxT("Veto")
166 #define MAXIMIZED_BUTTON_PAGE_NAME wxT("Maximized button")
168 // Pages that can be added by the user
169 #define INSERTED_PAGE_NAME wxT("Inserted ")
170 #define ADDED_PAGE_NAME wxT("Added ")
171 #define ADDED_PAGE_NAME_BEFORE wxT(" Inserted before ")
172 #define ADDED_SUB_PAGE_NAME wxT(" Inserted sub-page ")