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 //---------------------------------------------------------------------------