]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/stattool.i
Now compiles with /GX- on MSW.
[wxWidgets.git] / utils / wxPython / src / stattool.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: stattool.i
3 // Purpose: SWIG definitions for StatusBar and ToolBar classes
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 08/24/1998
8 // RCS-ID: $Id$
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13
14 %module stattool
15
16 %{
17 #include "helpers.h"
18 #include <wx/toolbar.h>
19 #include <wx/tbarsmpl.h>
20 %}
21
22 //----------------------------------------------------------------------
23
24 %include typemaps.i
25 %include my_typemaps.i
26
27 // Import some definitions of other classes, etc.
28 %import _defs.i
29 %import misc.i
30 %import windows.i
31 %import controls.i
32
33 %pragma(python) code = "import wx"
34
35 //---------------------------------------------------------------------------
36
37 class wxStatusBar : public wxWindow {
38 public:
39 wxStatusBar(wxWindow* parent, wxWindowID id,
40 const wxPoint& pos = wxPyDefaultPosition,
41 const wxSize& size = wxPyDefaultSize,
42 long style = wxST_SIZEGRIP,
43 char* name = "statusBar");
44
45 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
46
47 %addmethods {
48 %new wxRect* GetFieldRect(long item) {
49 wxRect* rect= new wxRect;
50 self->GetFieldRect(item, *rect);
51 return rect;
52 }
53 }
54 int GetFieldsCount(void);
55 wxString GetStatusText(int ir = 0);
56 void DrawField(wxDC& dc, int i);
57 void DrawFieldText(wxDC& dc, int i);
58 void InitColours(void);
59
60 // OnSysColourChanged(wxSysColourChangedEvent& event);
61
62 void SetFieldsCount(int number = 1);
63 void SetStatusText(const wxString& text, int i = 0);
64 void SetStatusWidths(int LCOUNT, int* LIST);
65 };
66
67
68 //---------------------------------------------------------------------------
69
70 class wxToolBarTool {
71 public:
72 wxToolBarTool();
73 ~wxToolBarTool();
74 #ifdef __WXMSW__
75 void SetSize( long w, long h ) { m_width = w; m_height = h; }
76 long GetWidth () const { return m_width; }
77 long GetHeight () const { return m_height; }
78 #endif
79
80 public:
81 int m_toolStyle;
82 wxObject * m_clientData;
83 int m_index;
84 #ifdef __WXMSW__
85 long m_x;
86 long m_y;
87 long m_width;
88 long m_height;
89 #endif
90 bool m_toggleState;
91 bool m_isToggle;
92 bool m_deleteSecondBitmap;
93 bool m_enabled;
94 wxBitmap m_bitmap1;
95 wxBitmap m_bitmap2;
96 bool m_isMenuCommand;
97 wxString m_shortHelpString;
98 wxString m_longHelpString;
99 };
100
101
102
103 // class wxToolBarBase : public wxControl {
104 // public:
105
106 class wxToolBar : public wxControl {
107 public:
108 wxToolBar(wxWindow* parent, wxWindowID id,
109 const wxPoint& pos = wxPyDefaultPosition,
110 const wxSize& size = wxPyDefaultSize,
111 long style = wxTB_HORIZONTAL | wxNO_BORDER,
112 char* name = "toolBar");
113
114 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
115
116
117 void AddSeparator(void);
118
119 // Ignoge the clientData for now...
120 %addmethods {
121 wxToolBarTool* AddTool(int toolIndex,
122 const wxBitmap& bitmap1,
123 const wxBitmap& bitmap2 = wxNullBitmap,
124 int isToggle = FALSE,
125 long xPos = -1,
126 long yPos = -1,
127 //wxObject* clientData = NULL,
128 const wxString& shortHelpString = wxPyEmptyStr,
129 const wxString& longHelpString = wxPyEmptyStr) {
130 return self->AddTool(toolIndex, bitmap1, bitmap2,
131 isToggle, xPos, yPos, NULL,
132 shortHelpString, longHelpString);
133 }
134 }
135
136 // void DrawTool(wxMemoryDC& memDC, wxToolBarTool* tool);
137 void EnableTool(int toolIndex, const bool enable);
138 #ifdef __WXMSW__
139 wxToolBarTool* FindToolForPosition(const float x, const float y);
140 wxSize GetToolSize();
141 wxSize GetToolBitmapSize();
142 void SetToolBitmapSize(const wxSize& size);
143 // wxSize GetMargins();
144 wxSize GetMaxSize();
145 // wxObject* GetToolClientData(int toolIndex);
146 #endif
147 bool GetToolEnabled(int toolIndex);
148 wxString GetToolLongHelp(int toolIndex);
149 int GetToolPacking();
150 int GetToolSeparation();
151 wxString GetToolShortHelp(int toolIndex);
152 bool GetToolState(int toolIndex);
153
154 // TODO: figure out how to handle these
155 //bool OnLeftClick(int toolIndex, bool toggleDown);
156 //void OnMouseEnter(int toolIndex);
157 //void OnRightClick(int toolIndex, float x, float y);
158
159 bool Realize();
160
161 void SetToolLongHelp(int toolIndex, const wxString& helpString);
162 void SetToolShortHelp(int toolIndex, const wxString& helpString);
163 void SetMargins(const wxSize& size);
164 void SetToolPacking(int packing);
165 void SetToolSeparation(int separation);
166 void ToggleTool(int toolIndex, const bool toggle);
167 };
168
169
170
171 // // The Native Toolbar
172 // class wxToolBar : public wxToolBarBase {
173 // public:
174 // wxToolBar(wxWindow* parent, wxWindowID id,
175 // const wxPoint& pos = wxPyDefaultPosition,
176 // const wxSize& size = wxPyDefaultSize,
177 // long style = wxTB_HORIZONTAL | wxNO_BORDER,
178 // char* name = "toolBar");
179
180 // %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
181
182 // };
183
184
185 // // A generic toolbar
186 // class wxToolBarSimple : public wxToolBarBase {
187 // public:
188 // wxToolBarSimple(wxWindow* parent, wxWindowID id,
189 // const wxPoint& pos = wxPyDefaultPosition,
190 // const wxSize& size = wxPyDefaultSize,
191 // long style = wxTB_HORIZONTAL | wxNO_BORDER,
192 // char* name = "toolBar");
193
194 // %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
195
196 // };
197
198
199 //---------------------------------------------------------------------------
200
201 /////////////////////////////////////////////////////////////////////////////
202 //
203 // $Log$
204 // Revision 1.4 1998/12/17 14:07:43 RR
205 // Removed minor differences between wxMSW and wxGTK
206 //
207 // Revision 1.3 1998/12/15 20:41:23 RD
208 // Changed the import semantics from "from wxPython import *" to "from
209 // wxPython.wx import *" This is for people who are worried about
210 // namespace pollution, they can use "from wxPython import wx" and then
211 // prefix all the wxPython identifiers with "wx."
212 //
213 // Added wxTaskbarIcon for wxMSW.
214 //
215 // Made the events work for wxGrid.
216 //
217 // Added wxConfig.
218 //
219 // Added wxMiniFrame for wxGTK, (untested.)
220 //
221 // Changed many of the args and return values that were pointers to gdi
222 // objects to references to reflect changes in the wxWindows API.
223 //
224 // Other assorted fixes and additions.
225 //
226 // Revision 1.2 1998/10/07 07:34:34 RD
227 // Version 0.4.1 for wxGTK
228 //
229 // Revision 1.1 1998/10/02 06:40:42 RD
230 //
231 // Version 0.4 of wxPython for MSW.
232 //
233 //
234
235
236
237
238
239
240