~brian-sidebotham/wxwidgets-cmake/wxpython-2.9.4

« back to all changes in this revision

Viewing changes to samples/notebook/notebook.h

  • Committer: Brian Sidebotham
  • Date: 2013-08-03 14:30:08 UTC
  • Revision ID: brian.sidebotham@gmail.com-20130803143008-c7806tkych1tp6fc
Initial import into Bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////////////////////
 
2
// Name:        samples/notebook/notebook.h
 
3
// Purpose:     a sample demonstrating notebook usage
 
4
// Author:      Julian Smart
 
5
// Modified by: Dimitri Schoolwerth
 
6
// Created:     25/10/98
 
7
// RCS-ID:      $Id: notebook.h 70112 2011-12-24 18:19:26Z VZ $
 
8
// Copyright:   (c) 1998-2002 wxWidgets team
 
9
// Licence:     wxWindows licence
 
10
/////////////////////////////////////////////////////////////////////////////
 
11
 
 
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"
 
17
#include "wx/aui/auibook.h"
 
18
 
 
19
#if wxUSE_LOG && !defined( __SMARTPHONE__ )
 
20
    #define USE_LOG 1
 
21
#else
 
22
    #define USE_LOG 0
 
23
#endif
 
24
 
 
25
// Define a new application
 
26
class MyApp : public wxApp
 
27
{
 
28
public:
 
29
    bool OnInit();
 
30
};
 
31
 
 
32
DECLARE_APP(MyApp)
 
33
 
 
34
 
 
35
class MyFrame : public wxFrame
 
36
{
 
37
public:
 
38
    MyFrame();
 
39
    virtual ~MyFrame();
 
40
 
 
41
    void OnType(wxCommandEvent& event);
 
42
    void OnOrient(wxCommandEvent& event);
 
43
    void OnShowImages(wxCommandEvent& event);
 
44
    void OnStyle(wxCommandEvent& event);
 
45
    void OnExit(wxCommandEvent& event);
 
46
 
 
47
    void OnAddPage(wxCommandEvent& event);
 
48
    void OnAddPageNoSelect(wxCommandEvent& event);
 
49
    void OnInsertPage(wxCommandEvent& event);
 
50
    void OnDeleteCurPage(wxCommandEvent& event);
 
51
    void OnDeleteLastPage(wxCommandEvent& event);
 
52
    void OnNextPage(wxCommandEvent& event);
 
53
    void OnChangeSelection(wxCommandEvent &event);
 
54
    void OnSetSelection(wxCommandEvent &event);
 
55
    void OnGetPageSize(wxCommandEvent &event);
 
56
    void OnSetPageSize(wxCommandEvent &event);
 
57
 
 
58
    void OnAddSubPage(wxCommandEvent& event);
 
59
    void OnAddPageBefore(wxCommandEvent& event);
 
60
 
 
61
#if wxUSE_HELP
 
62
    void OnContextHelp(wxCommandEvent& event);
 
63
#endif // wxUSE_HELP
 
64
 
 
65
    void OnHitTest(wxCommandEvent& event);
 
66
 
 
67
    void OnBookCtrl(wxBookCtrlBaseEvent& event);
 
68
#if wxUSE_NOTEBOOK
 
69
    void OnNotebook(wxNotebookEvent& event) { OnBookCtrl(event); }
 
70
#endif
 
71
#if wxUSE_CHOICEBOOK
 
72
    void OnChoicebook(wxChoicebookEvent& event) { OnBookCtrl(event); }
 
73
#endif
 
74
#if wxUSE_LISTBOOK
 
75
    void OnListbook(wxListbookEvent& event) { OnBookCtrl(event); }
 
76
#endif
 
77
#if wxUSE_TREEBOOK
 
78
    void OnTreebook(wxTreebookEvent& event) { OnBookCtrl(event); }
 
79
#endif
 
80
#if wxUSE_TOOLBOOK
 
81
    void OnToolbook(wxToolbookEvent& event) { OnBookCtrl(event); }
 
82
#endif
 
83
#if wxUSE_AUI
 
84
    void OnAuiNotebook(wxAuiNotebookEvent& event) { OnBookCtrl(event); }
 
85
#endif
 
86
 
 
87
    void OnIdle(wxIdleEvent& event);
 
88
 
 
89
#if wxUSE_TREEBOOK
 
90
    void OnUpdateTreeMenu(wxUpdateUIEvent& event);
 
91
#endif // wxUSE_TREEBOOK
 
92
 
 
93
    wxBookCtrlBase *GetCurrentBook() const { return m_bookCtrl; }
 
94
 
 
95
private:
 
96
    wxLog *m_logTargetOld;
 
97
 
 
98
    void RecreateBook();
 
99
    wxPanel *CreateNewPage() const;
 
100
    int TranslateBookFlag(int nb, int lb, int chb, int tbk, int toolbkm, int aui) const;
 
101
    void AddFlagStrIfFlagPresent(wxString & flagStr, long flags, long flag, const wxChar * flagName) const;
 
102
 
 
103
    // Sample setup
 
104
    enum BookType
 
105
    {
 
106
        Type_Notebook,
 
107
        Type_Listbook,
 
108
        Type_Choicebook,
 
109
        Type_Treebook,
 
110
        Type_Toolbook,
 
111
        Type_AuiNotebook,
 
112
        Type_Max
 
113
    } m_type;
 
114
    int m_orient;
 
115
    bool m_chkShowImages;
 
116
    bool m_fixedWidth;
 
117
    bool m_multi;
 
118
    bool m_noPageTheme;
 
119
    bool m_buttonBar;
 
120
    bool m_horzLayout;
 
121
 
 
122
    // Controls
 
123
 
 
124
    wxPanel *m_panel; // Panel containing notebook and other controls
 
125
    wxBookCtrlBase *m_bookCtrl;
 
126
 
 
127
#if USE_LOG
 
128
    // Log window
 
129
    wxTextCtrl *m_text;
 
130
#endif // USE_LOG
 
131
 
 
132
    wxBoxSizer *m_sizerFrame;
 
133
 
 
134
    wxImageList *m_imageList;
 
135
 
 
136
    DECLARE_EVENT_TABLE()
 
137
};
 
138
 
 
139
enum ID_COMMANDS
 
140
{
 
141
    // these should be in the same order as Type_XXX elements above
 
142
    ID_BOOK_NOTEBOOK = wxID_HIGHEST,
 
143
    ID_BOOK_LISTBOOK,
 
144
    ID_BOOK_CHOICEBOOK,
 
145
    ID_BOOK_TREEBOOK,
 
146
    ID_BOOK_TOOLBOOK,
 
147
    ID_BOOK_AUINOTEBOOK,
 
148
    ID_BOOK_MAX,
 
149
 
 
150
    ID_ORIENT_DEFAULT,
 
151
    ID_ORIENT_TOP,
 
152
    ID_ORIENT_BOTTOM,
 
153
    ID_ORIENT_LEFT,
 
154
    ID_ORIENT_RIGHT,
 
155
    ID_ORIENT_MAX,
 
156
    ID_SHOW_IMAGES,
 
157
    ID_FIXEDWIDTH,
 
158
    ID_MULTI,
 
159
    ID_NOPAGETHEME,
 
160
    ID_BUTTONBAR,
 
161
    ID_HORZ_LAYOUT,
 
162
    ID_ADD_PAGE,
 
163
    ID_ADD_PAGE_NO_SELECT,
 
164
    ID_INSERT_PAGE,
 
165
    ID_DELETE_CUR_PAGE,
 
166
    ID_DELETE_LAST_PAGE,
 
167
    ID_NEXT_PAGE,
 
168
    ID_ADD_PAGE_BEFORE,
 
169
    ID_ADD_SUB_PAGE,
 
170
    ID_CHANGE_SELECTION,
 
171
    ID_SET_SELECTION,
 
172
    ID_GET_PAGE_SIZE,
 
173
    ID_SET_PAGE_SIZE,
 
174
 
 
175
#if wxUSE_HELP
 
176
    ID_CONTEXT_HELP,
 
177
#endif // wxUSE_HELP
 
178
    ID_HITTEST
 
179
};
 
180
 
 
181
 
 
182
/*
 
183
    Name of each notebook page.
 
184
    Used as a label for a page, and used when cloning the notebook
 
185
    to decide what type of page it is.
 
186
*/
 
187
 
 
188
#define I_WAS_INSERTED_PAGE_NAME        wxT("Inserted")
 
189
#define RADIOBUTTONS_PAGE_NAME          wxT("Radiobuttons")
 
190
#define VETO_PAGE_NAME                  wxT("Veto")
 
191
#define MAXIMIZED_BUTTON_PAGE_NAME      wxT("Maximized button")
 
192
 
 
193
// Pages that can be added by the user
 
194
#define INSERTED_PAGE_NAME              wxT("Inserted ")
 
195
#define ADDED_PAGE_NAME                 wxT("Added ")
 
196
#define ADDED_PAGE_NAME_BEFORE          wxT(" Inserted before ")
 
197
#define ADDED_SUB_PAGE_NAME             wxT(" Inserted sub-page ")
 
198
 
 
199