]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/notebook.h
Add wxUSE_UNICODE guard around wxDF_UNICODETEXT in the sample.
[wxWidgets.git] / include / wx / gtk / notebook.h
CommitLineData
53b28675 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/gtk/notebook.h
716b7364 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
65571936 8// Licence: wxWindows licence
53b28675
RR
9/////////////////////////////////////////////////////////////////////////////
10
48200154
PC
11#ifndef _WX_GTKNOTEBOOK_H_
12#define _WX_GTKNOTEBOOK_H_
53b28675 13
80a58c99
RR
14//-----------------------------------------------------------------------------
15// internal class
16//-----------------------------------------------------------------------------
17
b5dbe15d 18class WXDLLIMPEXP_FWD_CORE wxGtkNotebookPage;
53b28675 19
07b8d7ec
VZ
20#include "wx/list.h"
21WX_DECLARE_LIST(wxGtkNotebookPage, wxGtkNotebookPagesList);
22
53b28675 23//-----------------------------------------------------------------------------
ff829f3f 24// wxNotebook
53b28675
RR
25//-----------------------------------------------------------------------------
26
20123d49 27class WXDLLIMPEXP_CORE wxNotebook : public wxNotebookBase
53b28675 28{
ff829f3f 29public:
8253c7fd
RR
30 // default for dynamic class
31 wxNotebook();
32 // the same arguments as for wxControl
33 wxNotebook(wxWindow *parent,
debe6624 34 wxWindowID id,
ff829f3f
VZ
35 const wxPoint& pos = wxDefaultPosition,
36 const wxSize& size = wxDefaultSize,
debe6624 37 long style = 0,
630ad6c6 38 const wxString& name = wxNotebookNameStr);
8253c7fd
RR
39 // Create() function
40 bool Create(wxWindow *parent,
debe6624 41 wxWindowID id,
ff829f3f
VZ
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize,
debe6624 44 long style = 0,
630ad6c6 45 const wxString& name = wxNotebookNameStr);
8253c7fd 46 // dtor
07b8d7ec 47 virtual ~wxNotebook();
ff829f3f
VZ
48
49 // accessors
50 // ---------
ff829f3f
VZ
51
52 // set the currently selected page, return the index of the previously
7e837615 53 // selected one (or wxNOT_FOUND on error)
ff829f3f 54 // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
1d6fcbcc 55 int SetSelection(size_t nPage) { return DoSetSelection(nPage, SetSelection_SendEvent); }
ff829f3f
VZ
56 // get the currently selected page
57 int GetSelection() const;
58
1d6fcbcc
VZ
59 // changes selected page without sending events
60 int ChangeSelection(size_t nPage) { return DoSetSelection(nPage); }
61
ff829f3f 62 // set/get the title of a page
15aad3b9
VZ
63 bool SetPageText(size_t nPage, const wxString& strText);
64 wxString GetPageText(size_t nPage) const;
ff829f3f 65
ff829f3f 66 // sets/returns item's image index in the current image list
15aad3b9
VZ
67 int GetPageImage(size_t nPage) const;
68 bool SetPageImage(size_t nPage, int nImage);
ff829f3f 69
ff829f3f
VZ
70 // control the appearance of the notebook pages
71 // set the size (the same for all pages)
72 void SetPageSize(const wxSize& size);
73 // set the padding between tabs (in pixels)
74 void SetPadding(const wxSize& padding);
d8f2439c 75 // sets the size of the tabs (assumes all tabs are the same size)
ca8b28f2
JS
76 void SetTabSize(const wxSize& sz);
77
279b5e2e
VZ
78 virtual int HitTest(const wxPoint& pt, long *flags = NULL) const;
79
ff829f3f
VZ
80 // operations
81 // ----------
ff829f3f
VZ
82 // remove all pages
83 bool DeleteAllPages();
1e6feb95 84
90e572f1 85 // adds a new page to the notebook (it will be deleted by the notebook,
ff829f3f 86 // don't delete it yourself). If bSelect, this page becomes active.
587ce561 87 // the same as AddPage(), but adds it at the specified position
789d0a3d 88 bool InsertPage( size_t position,
80a58c99
RR
89 wxNotebookPage *win,
90 const wxString& strText,
630ad6c6 91 bool bSelect = false,
80a58c99 92 int imageId = -1 );
ff829f3f 93
8253c7fd
RR
94 // handler for tab navigation
95 // --------------------------
96 void OnNavigationKey(wxNavigationKeyEvent& event);
ed58dbea 97
9d522606
RD
98
99 static wxVisualAttributes
100 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
630ad6c6 101
db434467
RR
102 // implementation
103 // --------------
d8f2439c 104
93d38175 105#if wxUSE_CONSTRAINTS
db434467
RR
106 void SetConstraintSizes(bool recurse);
107 bool DoPhase(int phase);
93d38175 108#endif
58d1c1ae 109
db434467
RR
110 // common part of all ctors
111 void Init();
ff829f3f 112
681be2ef
VZ
113 // Called by GTK event handler when the current page is definitely changed.
114 void GTKOnPageChanged();
115
db434467 116 // helper function
80a58c99 117 wxGtkNotebookPage* GetNotebookPage(int page) const;
ff829f3f 118
07b8d7ec
VZ
119 // the additional page data (the pages themselves are in m_pages array)
120 wxGtkNotebookPagesList m_pagesData;
36202885 121
c9882624
RR
122 // we need to store the old selection since there
123 // is no other way to know about it at the time
124 // of the change selection event
125 int m_oldSelection;
1d6fcbcc 126
1e6feb95 127protected:
6f02a879 128 // set all page's attributes
ef5c70f9
VZ
129 virtual void DoApplyWidgetStyle(GtkRcStyle *style);
130 virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
6f02a879 131
1e6feb95 132 // remove one page from the notebook but do not destroy it
15aad3b9 133 virtual wxNotebookPage *DoRemovePage(size_t nPage);
1e6feb95 134
1d6fcbcc
VZ
135 int DoSetSelection(size_t nPage, int flags = 0);
136
db434467 137private:
2b5f62a0 138 // the padding set by SetPadding()
b318dc42
JS
139 int m_padding;
140
48200154
PC
141 virtual void AddChildGTK(wxWindowGTK* child);
142
db434467
RR
143 DECLARE_DYNAMIC_CLASS(wxNotebook)
144 DECLARE_EVENT_TABLE()
53b28675
RR
145};
146
48200154 147#endif // _WX_GTKNOTEBOOK_H_