]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/notebook.h
GTK's dnd is broken, not mine
[wxWidgets.git] / include / wx / gtk1 / notebook.h
CommitLineData
53b28675 1/////////////////////////////////////////////////////////////////////////////
716b7364
RR
2// Name: notebook.h
3// Purpose: wxNotebook class
53b28675
RR
4// Author: Robert Roebling
5// Modified by:
6// RCS-ID: $Id$
7// Copyright: (c) Julian Smart and Markus Holzem
ff829f3f 8// Licence: wxWindows license
53b28675
RR
9/////////////////////////////////////////////////////////////////////////////
10
6ca41e57
RR
11#ifndef __GTKNOTEBOOKH__
12#define __GTKNOTEBOOKH__
53b28675
RR
13
14#ifdef __GNUG__
6ca41e57 15#pragma interface
53b28675
RR
16#endif
17
18#include "wx/defs.h"
19#include "wx/object.h"
20#include "wx/string.h"
21#include "wx/control.h"
22
23//-----------------------------------------------------------------------------
24// classes
25//-----------------------------------------------------------------------------
26
27class wxImageList;
53b28675 28class wxNotebook;
8aadf227 29class wxNotebookPage;
53b28675 30
ff829f3f
VZ
31// ----------------------------------------------------------------------------
32// notebook events
33// ----------------------------------------------------------------------------
219f895a 34
ff829f3f
VZ
35class wxNotebookEvent : public wxCommandEvent
36{
37public:
003a43dc 38 wxNotebookEvent(wxEventType commandType = wxEVT_NULL, int id = 0,
ff829f3f
VZ
39 int nSel = -1, int nOldSel = -1)
40 : wxCommandEvent(commandType, id) { m_nSel = nSel; m_nOldSel = nOldSel; }
53b28675 41
ff829f3f
VZ
42 // accessors
43 int GetSelection() const { return m_nSel; }
44 int GetOldSelection() const { return m_nOldSel; }
53b28675 45
ff829f3f
VZ
46private:
47 int m_nSel, // currently selected page
48 m_nOldSel; // previously selected page
53b28675 49
ff829f3f 50 DECLARE_DYNAMIC_CLASS(wxNotebookEvent)
53b28675
RR
51};
52
53//-----------------------------------------------------------------------------
ff829f3f 54// wxNotebook
53b28675
RR
55//-----------------------------------------------------------------------------
56
ff829f3f 57class wxNotebook : public wxControl
53b28675 58{
ff829f3f
VZ
59public:
60 // ctors
61 // -----
62 // default for dynamic class
63 wxNotebook();
64 // the same arguments as for wxControl (@@@ any special styles?)
65 wxNotebook(wxWindow *parent,
debe6624 66 wxWindowID id,
ff829f3f
VZ
67 const wxPoint& pos = wxDefaultPosition,
68 const wxSize& size = wxDefaultSize,
debe6624 69 long style = 0,
ff829f3f
VZ
70 const wxString& name = "notebook");
71 // Create() function
72 bool Create(wxWindow *parent,
debe6624 73 wxWindowID id,
ff829f3f
VZ
74 const wxPoint& pos = wxDefaultPosition,
75 const wxSize& size = wxDefaultSize,
debe6624 76 long style = 0,
ff829f3f
VZ
77 const wxString& name = "notebook");
78 // dtor
79 ~wxNotebook();
80
81 // accessors
82 // ---------
83 // get number of pages in the dialog
84 int GetPageCount() const;
85
86 // set the currently selected page, return the index of the previously
87 // selected one (or -1 on error)
88 // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
89 int SetSelection(int nPage);
90 // cycle thru the tabs
91 void AdvanceSelection(bool bForward = TRUE);
92 // get the currently selected page
93 int GetSelection() const;
94
95 // set/get the title of a page
96 bool SetPageText(int nPage, const wxString& strText);
97 wxString GetPageText(int nPage) const;
98
99 // image list stuff: each page may have an image associated with it. All
100 // the images belong to an image list, so you have to
101 // 1) create an image list
102 // 2) associate it with the notebook
103 // 3) set for each page it's image
104 // associate image list with a control
105 void SetImageList(wxImageList* imageList);
106 // get pointer (may be NULL) to the associated image list
107 wxImageList* GetImageList() const { return m_imageList; }
108
109 // sets/returns item's image index in the current image list
110 int GetPageImage(int nPage) const;
111 bool SetPageImage(int nPage, int nImage);
112
113 // currently it's always 1 because wxGTK doesn't support multi-row
114 // tab controls
115 int GetRowCount() const;
116
117 // control the appearance of the notebook pages
118 // set the size (the same for all pages)
119 void SetPageSize(const wxSize& size);
120 // set the padding between tabs (in pixels)
121 void SetPadding(const wxSize& padding);
122
123 // operations
124 // ----------
fed46e72
RR
125 // remove one page from the notebook but do not destroy it
126 bool RemovePage(int nPage);
ff829f3f
VZ
127 // remove one page from the notebook
128 bool DeletePage(int nPage);
129 // remove all pages
130 bool DeleteAllPages();
131 // adds a new page to the notebook (it will be deleted ny the notebook,
132 // don't delete it yourself). If bSelect, this page becomes active.
133 bool AddPage(wxWindow *pPage,
134 const wxString& strText,
135 bool bSelect = FALSE,
136 int imageId = -1);
137 // @@@@ VZ: I don't know how to implement InsertPage()
138
139 // get the panel which represents the given page
140 wxWindow *GetPage(int nPage) const;
141
6ca41e57 142
5a8c929e 143 // implementation
58614078 144
58614078
RR
145 void SetConstraintSizes(bool recurse);
146 bool DoPhase(int phase);
147 void ApplyWidgetStyle();
ff829f3f 148
ff829f3f
VZ
149 // common part of all ctors
150 void Init();
151
152 // helper function
153 wxNotebookPage* GetNotebookPage(int page) const;
154
155 wxImageList* m_imageList;
156 wxList m_pages;
c86f1403 157 size_t m_idHandler; // the change page handler id
53b28675 158
ff829f3f 159 DECLARE_DYNAMIC_CLASS(wxNotebook)
53b28675
RR
160};
161
ff829f3f
VZ
162// ----------------------------------------------------------------------------
163// event macros
164// ----------------------------------------------------------------------------
165typedef void (wxEvtHandler::*wxNotebookEventFunction)(wxNotebookEvent&);
166
167#define EVT_NOTEBOOK_PAGE_CHANGED(id, fn) \
168 { \
169 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, \
170 id, \
171 -1, \
172 (wxObjectEventFunction)(wxEventFunction)(wxNotebookEventFunction) &fn, \
173 NULL \
174 },
175
176#define EVT_NOTEBOOK_PAGE_CHANGING(id, fn) \
177 { \
7ce404dd 178 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, \
ff829f3f
VZ
179 id, \
180 -1, \
181 (wxObjectEventFunction)(wxEventFunction)(wxNotebookEventFunction) &fn, \
182 NULL \
183 },
53b28675
RR
184
185#endif
6ca41e57 186 // __GTKNOTEBOOKH__