]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/notebook.h
Added more '#pragma implementation' for gcc.
[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$
b2b3ccc5 7// Copyright: (c) Julian Smart and Robert Roebling
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"
dcf924a3
RR
19
20#if wxUSE_NOTEBOOK
21
53b28675
RR
22#include "wx/object.h"
23#include "wx/string.h"
24#include "wx/control.h"
25
26//-----------------------------------------------------------------------------
27// classes
28//-----------------------------------------------------------------------------
29
30class wxImageList;
53b28675 31class wxNotebook;
8aadf227 32class wxNotebookPage;
53b28675 33
53b28675 34//-----------------------------------------------------------------------------
ff829f3f 35// wxNotebook
53b28675
RR
36//-----------------------------------------------------------------------------
37
ff829f3f 38class wxNotebook : public wxControl
53b28675 39{
ff829f3f
VZ
40public:
41 // ctors
42 // -----
43 // default for dynamic class
44 wxNotebook();
45 // the same arguments as for wxControl (@@@ any special styles?)
46 wxNotebook(wxWindow *parent,
debe6624 47 wxWindowID id,
ff829f3f
VZ
48 const wxPoint& pos = wxDefaultPosition,
49 const wxSize& size = wxDefaultSize,
debe6624 50 long style = 0,
ff829f3f
VZ
51 const wxString& name = "notebook");
52 // Create() function
53 bool Create(wxWindow *parent,
debe6624 54 wxWindowID id,
ff829f3f
VZ
55 const wxPoint& pos = wxDefaultPosition,
56 const wxSize& size = wxDefaultSize,
debe6624 57 long style = 0,
ff829f3f
VZ
58 const wxString& name = "notebook");
59 // dtor
60 ~wxNotebook();
61
62 // accessors
63 // ---------
64 // get number of pages in the dialog
65 int GetPageCount() const;
66
67 // set the currently selected page, return the index of the previously
68 // selected one (or -1 on error)
69 // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
70 int SetSelection(int nPage);
71 // cycle thru the tabs
72 void AdvanceSelection(bool bForward = TRUE);
73 // get the currently selected page
74 int GetSelection() const;
75
76 // set/get the title of a page
77 bool SetPageText(int nPage, const wxString& strText);
78 wxString GetPageText(int nPage) const;
79
80 // image list stuff: each page may have an image associated with it. All
81 // the images belong to an image list, so you have to
82 // 1) create an image list
83 // 2) associate it with the notebook
84 // 3) set for each page it's image
85 // associate image list with a control
86 void SetImageList(wxImageList* imageList);
87 // get pointer (may be NULL) to the associated image list
d8f2439c 88 wxImageList *GetImageList() const { return m_imageList; }
ff829f3f
VZ
89
90 // sets/returns item's image index in the current image list
91 int GetPageImage(int nPage) const;
92 bool SetPageImage(int nPage, int nImage);
93
94 // currently it's always 1 because wxGTK doesn't support multi-row
95 // tab controls
96 int GetRowCount() const;
97
98 // control the appearance of the notebook pages
99 // set the size (the same for all pages)
100 void SetPageSize(const wxSize& size);
101 // set the padding between tabs (in pixels)
102 void SetPadding(const wxSize& padding);
d8f2439c 103 // sets the size of the tabs (assumes all tabs are the same size)
ca8b28f2
JS
104 void SetTabSize(const wxSize& sz);
105
ff829f3f
VZ
106 // operations
107 // ----------
fed46e72
RR
108 // remove one page from the notebook but do not destroy it
109 bool RemovePage(int nPage);
ff829f3f
VZ
110 // remove one page from the notebook
111 bool DeletePage(int nPage);
112 // remove all pages
113 bool DeleteAllPages();
587ce561 114
ff829f3f
VZ
115 // adds a new page to the notebook (it will be deleted ny the notebook,
116 // don't delete it yourself). If bSelect, this page becomes active.
587ce561
RR
117 bool AddPage( wxWindow *win,
118 const wxString& strText,
119 bool select = FALSE,
120 int imageId = -1 );
121 // the same as AddPage(), but adds it at the specified position
122 bool InsertPage( int position,
123 wxWindow *win,
124 const wxString& strText,
125 bool bSelect = FALSE,
126 int imageId = -1 );
ff829f3f
VZ
127
128 // get the panel which represents the given page
129 wxWindow *GetPage(int nPage) const;
130
b98d804b 131 void OnNavigationKey(wxNavigationKeyEvent& event);
d8f2439c 132
ed58dbea
RR
133 // overridden from wxWindow to make tabbing work
134 void SetFocus();
135
db434467
RR
136 // implementation
137 // --------------
d8f2439c 138
db434467
RR
139 void SetConstraintSizes(bool recurse);
140 bool DoPhase(int phase);
141 void ApplyWidgetStyle();
ff829f3f 142
db434467
RR
143 // report if window belongs to notebook
144 bool IsOwnGtkWindow( GdkWindow *window );
58d1c1ae 145
db434467
RR
146 // common part of all ctors
147 void Init();
ff829f3f 148
db434467
RR
149 // helper function
150 wxNotebookPage* GetNotebookPage(int page) const;
ff829f3f 151
db434467
RR
152 wxImageList* m_imageList;
153 wxList m_pages;
154 int m_lastSelection; /* hack */
53b28675 155
db434467
RR
156private:
157 DECLARE_DYNAMIC_CLASS(wxNotebook)
158 DECLARE_EVENT_TABLE()
53b28675
RR
159};
160
dcf924a3
RR
161#endif
162
53b28675 163#endif
6ca41e57 164 // __GTKNOTEBOOKH__