1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG definitions for StatusBar and ToolBar classes
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
18 #include <wx/toolbar.h>
19 #include <wx/tbarsmpl.h>
22 //----------------------------------------------------------------------
25 %include my_typemaps.i
27 // Import some definitions of other classes, etc.
33 %pragma(python) code = "import wx"
35 //---------------------------------------------------------------------------
37 class wxStatusBar : public wxWindow {
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");
45 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
48 %new wxRect* GetFieldRect(long item) {
49 wxRect* rect= new wxRect;
50 self->GetFieldRect(item, *rect);
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);
60 // OnSysColourChanged(wxSysColourChangedEvent& event);
62 void SetFieldsCount(int number = 1);
63 void SetStatusText(const wxString& text, int i = 0);
64 void SetStatusWidths(int LCOUNT, int* LIST);
68 //---------------------------------------------------------------------------
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; }
82 wxObject * m_clientData;
92 bool m_deleteSecondBitmap;
97 wxString m_shortHelpString;
98 wxString m_longHelpString;
103 // class wxToolBarBase : public wxControl {
106 class wxToolBar : public wxControl {
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");
114 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
119 // Ignoge the clientData for now...
121 wxToolBarTool* AddTool(int toolIndex,
122 const wxBitmap& bitmap1,
123 const wxBitmap& bitmap2 = wxNullBitmap,
124 int isToggle = FALSE,
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);
135 wxToolBarTool* AddSimpleTool(int toolIndex,
136 const wxBitmap& bitmap,
137 const wxString& shortHelpString = wxPyEmptyStr,
138 const wxString& longHelpString = wxPyEmptyStr) {
139 return self->AddTool(toolIndex, bitmap, wxNullBitmap,
141 shortHelpString, longHelpString);
146 // void DrawTool(wxMemoryDC& memDC, wxToolBarTool* tool);
147 void EnableTool(int toolIndex, const bool enable);
149 wxToolBarTool* FindToolForPosition(const float x, const float y);
150 wxSize GetToolSize();
151 wxSize GetToolBitmapSize();
152 void SetToolBitmapSize(const wxSize& size);
153 // wxSize GetMargins();
155 // wxObject* GetToolClientData(int toolIndex);
157 bool GetToolEnabled(int toolIndex);
158 wxString GetToolLongHelp(int toolIndex);
159 int GetToolPacking();
160 int GetToolSeparation();
161 wxString GetToolShortHelp(int toolIndex);
162 bool GetToolState(int toolIndex);
164 // TODO: figure out how to handle these
165 //bool OnLeftClick(int toolIndex, bool toggleDown);
166 //void OnMouseEnter(int toolIndex);
167 //void OnRightClick(int toolIndex, float x, float y);
171 void SetToolLongHelp(int toolIndex, const wxString& helpString);
172 void SetToolShortHelp(int toolIndex, const wxString& helpString);
173 void SetMargins(const wxSize& size);
174 void SetToolPacking(int packing);
175 void SetToolSeparation(int separation);
176 void ToggleTool(int toolIndex, const bool toggle);
182 //---------------------------------------------------------------------------
184 /////////////////////////////////////////////////////////////////////////////
187 // Revision 1.6 1999/02/25 07:08:35 RD
188 // wxPython version 2.0b5
190 // Revision 1.5 1999/01/30 07:30:15 RD
192 // Added wxSashWindow, wxSashEvent, wxLayoutAlgorithm, etc.
194 // Various cleanup, tweaks, minor additions, etc. to maintain
195 // compatibility with the current wxWindows.
197 // Revision 1.4 1998/12/17 14:07:43 RR
199 // Removed minor differences between wxMSW and wxGTK
201 // Revision 1.3 1998/12/15 20:41:23 RD
202 // Changed the import semantics from "from wxPython import *" to "from
203 // wxPython.wx import *" This is for people who are worried about
204 // namespace pollution, they can use "from wxPython import wx" and then
205 // prefix all the wxPython identifiers with "wx."
207 // Added wxTaskbarIcon for wxMSW.
209 // Made the events work for wxGrid.
213 // Added wxMiniFrame for wxGTK, (untested.)
215 // Changed many of the args and return values that were pointers to gdi
216 // objects to references to reflect changes in the wxWindows API.
218 // Other assorted fixes and additions.
220 // Revision 1.2 1998/10/07 07:34:34 RD
221 // Version 0.4.1 for wxGTK
223 // Revision 1.1 1998/10/02 06:40:42 RD
225 // Version 0.4 of wxPython for MSW.