]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/windows2.i
Some slight cleanup and reorganization
[wxWidgets.git] / utils / wxPython / src / windows2.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: windows2.i
3 // Purpose: SWIG definitions of MORE window classes
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 6/2/98
8 // RCS-ID: $Id$
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13 %module windows2
14
15 %{
16 #include "helpers.h"
17 #include <wx/grid.h>
18 #include <wx/notebook.h>
19 #include <wx/splitter.h>
20 #ifdef __WXMSW__
21 #include <wx/msw/taskbar.h>
22 #endif
23 %}
24
25 //----------------------------------------------------------------------
26
27 %include typemaps.i
28 %include my_typemaps.i
29
30 // Import some definitions of other classes, etc.
31 %import _defs.i
32 %import misc.i
33 %import gdi.i
34 %import windows.i
35 %import controls.i
36 %import events.i
37
38 %pragma(python) code = "import wx"
39
40 //---------------------------------------------------------------------------
41
42
43 enum {
44 wxGRID_TEXT_CTRL,
45 wxGRID_HSCROLL,
46 wxGRID_VSCROLL
47 };
48
49 class wxGridCell {
50 public:
51 wxGridCell();
52 ~wxGridCell();
53
54 wxString& GetTextValue();
55 void SetTextValue(const wxString& str);
56 wxFont& GetFont();
57 void SetFont(wxFont& f);
58 wxColour& GetTextColour();
59 void SetTextColour(const wxColour& colour);
60 wxColour& GetBackgroundColour();
61 void SetBackgroundColour(const wxColour& colour);
62 wxBrush& GetBackgroundBrush();
63 int GetAlignment();
64 void SetAlignment(int align);
65 wxBitmap* GetCellBitmap();
66 void SetCellBitmap(wxBitmap* bitmap);
67 };
68
69
70
71
72 class wxGrid : public wxPanel {
73 public:
74 wxGrid(wxWindow* parent, wxWindowID id,
75 const wxPoint& pos=wxPyDefaultPosition,
76 const wxSize& size=wxPyDefaultSize,
77 long style=0,
78 char* name="grid");
79
80 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
81 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnSelectCell', wxEVT_GRID_SELECT_CELL)"
82 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnCreateCell', wxEVT_GRID_CREATE_CELL)"
83 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnChangeLabels', wxEVT_GRID_CHANGE_LABELS)"
84 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnChangeSelectionLabel', wxEVT_GRID_CHANGE_SEL_LABEL)"
85 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnCellChange', wxEVT_GRID_CELL_CHANGE)"
86 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnCellLeftClick', wxEVT_GRID_CELL_LCLICK)"
87 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnCellRightClick', wxEVT_GRID_CELL_RCLICK)"
88 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnLabelLeftClick', wxEVT_GRID_LABEL_LCLICK)"
89 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnLabelRightClick', wxEVT_GRID_LABEL_RCLICK)"
90
91
92 void AdjustScrollbars();
93 bool AppendCols(int n=1, bool updateLabels=TRUE);
94 bool AppendRows(int n=1, bool updateLabels=TRUE);
95 void BeginBatch();
96 bool CellHitTest(int x, int y, int *OUTPUT, int *OUTPUT);
97
98 %addmethods {
99 // TODO: For now we are just ignoring the initial cellValues
100 // and widths. Add support for loading them from
101 // Python sequence objects.
102 bool CreateGrid(int rows, int cols,
103 //PyObject* cellValues = NULL,
104 //PyObject* widths = NULL,
105 short defaultWidth = wxGRID_DEFAULT_CELL_WIDTH,
106 short defaultHeight = wxGRID_DEFAULT_CELL_HEIGHT) {
107 return self->CreateGrid(rows, cols, NULL, NULL,
108 defaultWidth, defaultHeight);
109 }
110 }
111
112 bool CurrentCellVisible();
113 bool DeleteCols(int pos=0, int n=1, bool updateLabels=TRUE);
114 bool DeleteRows(int pos=0, int n=1, bool updateLabels=TRUE);
115 void EndBatch();
116
117 int GetBatchCount();
118 wxGridCell* GetCell(int row, int col);
119 int GetCellAlignment(int row, int col);
120 %name(GetDefCellAlignment)int GetCellAlignment();
121 wxColour& GetCellBackgroundColour(int row, int col);
122 %name(GetDefCellBackgroundColour) wxColour& GetCellBackgroundColour();
123 //wxGridCell *** GetCells();
124 wxColour& GetCellTextColour(int row, int col);
125 %name(GetDefCellTextColour)wxColour& GetCellTextColour();
126 wxFont& GetCellTextFont(int row, int col);
127 %name(GetDefCellTextFont)wxFont& GetCellTextFont();
128 wxString& GetCellValue(int row, int col);
129 int GetCols();
130 int GetColumnWidth(int col);
131 wxRect GetCurrentRect();
132 int GetCursorColumn();
133 int GetCursorRow();
134 bool GetEditable();
135 wxScrollBar * GetHorizScrollBar();
136 int GetLabelAlignment(int orientation);
137 wxColour& GetLabelBackgroundColour();
138 int GetLabelSize(int orientation);
139 wxColour& GetLabelTextColour();
140 wxFont& GetLabelTextFont();
141 wxString& GetLabelValue(int orientation, int pos);
142 int GetRowHeight(int row);
143 int GetRows();
144 int GetScrollPosX();
145 int GetScrollPosY();
146 wxTextCtrl* GetTextItem();
147 wxScrollBar* GetVertScrollBar();
148
149 bool InsertCols(int pos=0, int n=1, bool updateLabels=TRUE);
150 bool InsertRows(int pos=0, int n=1, bool updateLabels=TRUE);
151
152 void OnActivate(bool active);
153
154 void SetCellAlignment(int alignment, int row, int col);
155 %name(SetDefCellAlignment)void SetCellAlignment(int alignment);
156 void SetCellBackgroundColour(const wxColour& colour, int row, int col);
157 %name(SetDefCellBackgroundColour)
158 void SetCellBackgroundColour(const wxColour& colour);
159 void SetCellTextColour(const wxColour& colour, int row, int col);
160 %name(SetDefCellTextColour)void SetCellTextColour(const wxColour& colour);
161 void SetCellTextFont(wxFont& font, int row, int col);
162 %name(SetDefCellTextFont)void SetCellTextFont(wxFont& font);
163 void SetCellValue(const wxString& val, int row, int col);
164 void SetColumnWidth(int col, int width);
165 void SetDividerPen(wxPen& pen);
166 void SetEditable(bool editable);
167 void SetGridCursor(int row, int col);
168 void SetLabelAlignment(int orientation, int alignment);
169 void SetLabelBackgroundColour(const wxColour& value);
170 void SetLabelSize(int orientation, int size);
171 void SetLabelTextColour(const wxColour& value);
172 void SetLabelTextFont(wxFont& font);
173 void SetLabelValue(int orientation, const wxString& value, int pos);
174 void SetRowHeight(int row, int height);
175
176 void UpdateDimensions();
177 };
178
179
180 class wxGridEvent : public wxEvent {
181 public:
182 int m_row;
183 int m_col;
184 int m_x;
185 int m_y;
186 bool m_control;
187 bool m_shift;
188 wxGridCell* m_cell;
189 };
190
191
192 enum {
193 wxEVT_GRID_SELECT_CELL,
194 wxEVT_GRID_CREATE_CELL,
195 wxEVT_GRID_CHANGE_LABELS,
196 wxEVT_GRID_CHANGE_SEL_LABEL,
197 wxEVT_GRID_CELL_CHANGE,
198 wxEVT_GRID_CELL_LCLICK,
199 wxEVT_GRID_CELL_RCLICK,
200 wxEVT_GRID_LABEL_LCLICK,
201 wxEVT_GRID_LABEL_RCLICK,
202 };
203
204
205 //---------------------------------------------------------------------------
206
207 class wxNotebookEvent : public wxCommandEvent {
208 public:
209 int GetSelection();
210 int GetOldSelection();
211 };
212
213
214
215 class wxNotebook : public wxControl {
216 public:
217 wxNotebook(wxWindow *parent,
218 wxWindowID id,
219 const wxPoint& pos = wxPyDefaultPosition,
220 const wxSize& size = wxPyDefaultSize,
221 long style = 0,
222 char* name = "notebook");
223
224 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
225
226 int GetPageCount();
227 int SetSelection(int nPage);
228 void AdvanceSelection(bool bForward = TRUE);
229 int GetSelection();
230 bool SetPageText(int nPage, const wxString& strText);
231 wxString GetPageText(int nPage) const;
232 void SetImageList(wxImageList* imageList);
233 wxImageList* GetImageList();
234 int GetPageImage(int nPage);
235 bool SetPageImage(int nPage, int nImage);
236 int GetRowCount();
237
238 // LINK ERROR: void SetPageSize(const wxSize& size);
239 // LINK ERROR: void SetPadding(const wxSize& padding);
240 bool DeletePage(int nPage);
241 bool RemovePage(int nPage);
242 bool DeleteAllPages();
243 bool AddPage(/*wxNotebookPage*/ wxWindow *pPage,
244 const wxString& strText,
245 int bSelect = FALSE,
246 int imageId = -1);
247 #ifdef __WXMSW__
248 bool InsertPage(int nPage,
249 /*wxNotebookPage*/ wxWindow *pPage,
250 const wxString& strText,
251 bool bSelect = FALSE,
252 int imageId = -1);
253 #endif
254 wxNotebookPage *GetPage(int nPage);
255
256 %addmethods {
257 void ResizeChildren() {
258 wxSizeEvent evt(self->GetClientSize());
259 self->OnSize(evt);
260 }
261 }
262
263
264 };
265
266 //---------------------------------------------------------------------------
267
268 class wxSplitterWindow : public wxWindow {
269 public:
270 wxSplitterWindow(wxWindow* parent, wxWindowID id,
271 const wxPoint& point = wxPyDefaultPosition,
272 const wxSize& size = wxPyDefaultSize,
273 long style=wxSP_3D|wxCLIP_CHILDREN,
274 char* name = "splitterWindow");
275
276 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
277
278 int GetBorderSize();
279 int GetMinimumPaneSize();
280 int GetSashPosition();
281 int GetSashSize();
282 int GetSplitMode();
283 wxWindow* GetWindow1();
284 wxWindow* GetWindow2();
285 void Initialize(wxWindow* window);
286 bool IsSplit();
287
288 // TODO: How to handle callbacks that don't come from
289 // event system???
290 //
291 //void OnDoubleClickSash(int x, int y);
292 //bool OnSashPositionChange(int newSashPosition);
293 //void OnUnsplit(wxWindow* removed);
294
295 void SetBorderSize(int width);
296 void SetSashPosition(int position, int redraw = TRUE);
297 void SetSashSize(int width);
298 void SetMinimumPaneSize(int paneSize);
299 void SetSplitMode(int mode);
300 bool SplitHorizontally(wxWindow* window1, wxWindow* window2, int sashPosition = 0);
301 bool SplitVertically(wxWindow* window1, wxWindow* window2, int sashPosition = 0);
302 bool Unsplit(wxWindow* toRemove = NULL);
303 };
304
305 //---------------------------------------------------------------------------
306
307 #ifdef __WXMSW__
308
309 enum {
310 wxEVT_TASKBAR_MOVE,
311 wxEVT_TASKBAR_LEFT_DOWN,
312 wxEVT_TASKBAR_LEFT_UP,
313 wxEVT_TASKBAR_RIGHT_DOWN,
314 wxEVT_TASKBAR_RIGHT_UP,
315 wxEVT_TASKBAR_LEFT_DCLICK,
316 wxEVT_TASKBAR_RIGHT_DCLICK
317 };
318
319
320 class wxTaskBarIcon : public wxEvtHandler {
321 public:
322 wxTaskBarIcon();
323 ~wxTaskBarIcon();
324
325 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnMouseMove', wxEVT_TASKBAR_MOVE)"
326 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnLButtonDown', wxEVT_TASKBAR_LEFT_DOWN)"
327 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnLButtonUp', wxEVT_TASKBAR_LEFT_UP)"
328 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnRButtonDown', wxEVT_TASKBAR_RIGHT_DOWN)"
329 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnRButtonUp', wxEVT_TASKBAR_RIGHT_UP)"
330 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnLButtonDClick',wxEVT_TASKBAR_LEFT_DCLICK)"
331 %pragma(python) addtomethod = "__init__:wx._checkForCallback(self, 'OnRButtonDClick',wxEVT_TASKBAR_RIGHT_DCLICK)"
332
333 bool SetIcon(const wxIcon& icon, const char* tooltip = "");
334 bool RemoveIcon(void);
335 bool PopupMenu(wxMenu *menu);
336
337 };
338 #endif
339
340 //---------------------------------------------------------------------------
341 /////////////////////////////////////////////////////////////////////////////
342 //
343 // $Log$
344 // Revision 1.10 1999/04/30 03:29:19 RD
345 // wxPython 2.0b9, first phase (win32)
346 // Added gobs of stuff, see wxPython/README.txt for details
347 //
348 // Revision 1.9.4.1 1999/03/16 06:04:05 RD
349 //
350 // wxPython 2.0b7
351 //
352 // Revision 1.9 1999/02/25 07:08:36 RD
353 //
354 // wxPython version 2.0b5
355 //
356 // Revision 1.8 1998/12/17 18:05:53 RD
357 //
358 // wxPython 0.5.2
359 // Minor fixes and SWIG code generation for RR's changes. MSW and GTK
360 // versions are much closer now!
361 //
362 // Revision 1.7 1998/12/15 20:41:25 RD
363 // Changed the import semantics from "from wxPython import *" to "from
364 // wxPython.wx import *" This is for people who are worried about
365 // namespace pollution, they can use "from wxPython import wx" and then
366 // prefix all the wxPython identifiers with "wx."
367 //
368 // Added wxTaskbarIcon for wxMSW.
369 //
370 // Made the events work for wxGrid.
371 //
372 // Added wxConfig.
373 //
374 // Added wxMiniFrame for wxGTK, (untested.)
375 //
376 // Changed many of the args and return values that were pointers to gdi
377 // objects to references to reflect changes in the wxWindows API.
378 //
379 // Other assorted fixes and additions.
380 //
381 // Revision 1.6 1998/11/25 08:45:28 RD
382 //
383 // Added wxPalette, wxRegion, wxRegionIterator, wxTaskbarIcon
384 // Added events for wxGrid
385 // Other various fixes and additions
386 //
387 // Revision 1.5 1998/11/03 09:21:57 RD
388 // fixed a typo
389 //
390 // Revision 1.4 1998/10/02 06:40:43 RD
391 //
392 // Version 0.4 of wxPython for MSW.
393 //
394 // Revision 1.3 1998/08/18 19:48:20 RD
395 // more wxGTK compatibility things.
396 //
397 // It builds now but there are serious runtime problems...
398 //
399 // Revision 1.2 1998/08/15 07:36:50 RD
400 // - Moved the header in the .i files out of the code that gets put into
401 // the .cpp files. It caused CVS conflicts because of the RCS ID being
402 // different each time.
403 //
404 // - A few minor fixes.
405 //
406 // Revision 1.1 1998/08/09 08:25:52 RD
407 // Initial version
408 //
409 //