]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/notebook.h
removed useless ; to allow smart preprocessing under Mac OS X
[wxWidgets.git] / include / wx / mac / notebook.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: notebook.h
3// Purpose: MSW/GTK compatible notebook (a.k.a. property sheet)
4// Author: AUTHOR
5// Modified by:
6// RCS-ID: $Id$
7// Copyright: (c) AUTHOR
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_NOTEBOOK_H_
12#define _WX_NOTEBOOK_H_
13
14#ifdef __GNUG__
15#pragma interface "notebook.h"
16#endif
17
18// ----------------------------------------------------------------------------
19// headers
20// ----------------------------------------------------------------------------
21#include "wx/dynarray.h"
22#include "wx/event.h"
23#include "wx/control.h"
24
25// ----------------------------------------------------------------------------
26// types
27// ----------------------------------------------------------------------------
28
29// fwd declarations
30class WXDLLEXPORT wxImageList;
31class WXDLLEXPORT wxWindow;
32
0dbd6262
SC
33// ----------------------------------------------------------------------------
34// wxNotebook
35// ----------------------------------------------------------------------------
36
37// @@@ this class should really derive from wxTabCtrl, but the interface is not
38// exactly the same, so I can't do it right now and instead we reimplement
39// part of wxTabCtrl here
40class wxNotebook : public wxControl
41{
42public:
43 // ctors
44 // -----
45 // default for dynamic class
46 wxNotebook();
47 // the same arguments as for wxControl (@@@ any special styles?)
48 wxNotebook(wxWindow *parent,
49 wxWindowID id,
50 const wxPoint& pos = wxDefaultPosition,
51 const wxSize& size = wxDefaultSize,
52 long style = 0,
53 const wxString& name = "notebook");
54 // Create() function
55 bool Create(wxWindow *parent,
56 wxWindowID id,
57 const wxPoint& pos = wxDefaultPosition,
58 const wxSize& size = wxDefaultSize,
59 long style = 0,
60 const wxString& name = "notebook");
61 // dtor
62 ~wxNotebook();
63
64 // accessors
65 // ---------
66 // get number of pages in the dialog
67 int GetPageCount() const;
68
69 // set the currently selected page, return the index of the previously
70 // selected one (or -1 on error)
71 // NB: this function will _not_ generate wxEVT_NOTEBOOK_PAGE_xxx events
72 int SetSelection(int nPage);
73 // cycle thru the tabs
74 void AdvanceSelection(bool bForward = TRUE);
75 // get the currently selected page
76 int GetSelection() const { return m_nSelection; }
77
78 // set/get the title of a page
79 bool SetPageText(int nPage, const wxString& strText);
80 wxString GetPageText(int nPage) const;
81
82 // image list stuff: each page may have an image associated with it. All
83 // the images belong to an image list, so you have to
84 // 1) create an image list
85 // 2) associate it with the notebook
86 // 3) set for each page it's image
87 // associate image list with a control
88 void SetImageList(wxImageList* imageList);
89 // get pointer (may be NULL) to the associated image list
90 wxImageList* GetImageList() const { return m_pImageList; }
91
92 // sets/returns item's image index in the current image list
93 int GetPageImage(int nPage) const;
94 bool SetPageImage(int nPage, int nImage);
95
96 // currently it's always 1 because wxGTK doesn't support multi-row
97 // tab controls
98 int GetRowCount() const;
99
100 // control the appearance of the notebook pages
101 // set the size (the same for all pages)
102 void SetPageSize(const wxSize& size);
103 // set the padding between tabs (in pixels)
104 void SetPadding(const wxSize& padding);
105
106 // operations
107 // ----------
108 // remove one page from the notebook
109 bool DeletePage(int nPage);
110 // remove one page from the notebook, without deleting
111 bool RemovePage(int nPage);
112 // remove all pages
113 bool DeleteAllPages();
114 // adds a new page to the notebook (it will be deleted ny the notebook,
115 // don't delete it yourself). If bSelect, this page becomes active.
116 bool AddPage(wxNotebookPage *pPage,
117 const wxString& strText,
118 bool bSelect = FALSE,
119 int imageId = -1);
120 // the same as AddPage(), but adds it at the specified position
121 bool InsertPage(int nPage,
122 wxNotebookPage *pPage,
123 const wxString& strText,
124 bool bSelect = FALSE,
125 int imageId = -1);
126 // get the panel which represents the given page
127 wxNotebookPage *GetPage(int nPage) { return m_aPages[nPage]; }
128
129 // callbacks
130 // ---------
131 void OnSize(wxSizeEvent& event);
132 void OnSelChange(wxNotebookEvent& event);
133 void OnSetFocus(wxFocusEvent& event);
134 void OnNavigationKey(wxNavigationKeyEvent& event);
135
136 // base class virtuals
137 // -------------------
138 virtual void Command(wxCommandEvent& event);
139 virtual void SetConstraintSizes(bool recurse = TRUE);
140 virtual bool DoPhase(int nPhase);
141
142protected:
c854c7d9 143 virtual void MacHandleControlClick( ControlHandle control , SInt16 controlpart ) ;
0dbd6262
SC
144 // common part of all ctors
145 void Init();
146
147 // helper functions
148 void ChangePage(int nOldSel, int nSel); // change pages
c854c7d9 149 void MacSetupTabs();
0dbd6262
SC
150
151 wxImageList *m_pImageList; // we can have an associated image list
152 wxArrayPages m_aPages; // array of pages
153
154 int m_nSelection; // the current selection (-1 if none)
155
156 DECLARE_DYNAMIC_CLASS(wxNotebook)
157 DECLARE_EVENT_TABLE()
158};
159
0dbd6262
SC
160
161#endif // _WX_NOTEBOOK_H_