Displaying 5 results from an estimated 5 matches for "shorthelpstring".
2007 Jun 22
0
[1056] trunk/wxruby2/swig/classes/include/wxToolBar.h: Add missing param to InsertTool long version; uncomment some methods now
...;
-         * \param wxItemKind
-        */
-
- wxToolBarTool* AddTool(int toolId , const wxString& label , const wxBitmap& bitmap1 , const wxString& shortHelpString = wxT(""), wxItemKind kind = wxITEM_NORMAL) ;
-        /**
-         * \brief
-         * \para...
2007 Jun 22
0
[1059] trunk/wxruby2/doc/textile/toolbar.txtl: Update ToolBar documentation to reflect recent changes in API
...ss="cx">
</span><del>- "ToolBarToolBase":toolbartoolbase.html *add_tool*(%(arg-type)Integer% toolId,
- %(arg-type)String% label,
- %(arg-type)Bitmap% bitmap1,
- %(arg-type)String% shortHelpString = "",
- %(arg-type)ItemKind% kind = ITEM_NORMAL)
</del><ins>+ Integer *add_tool*(%(arg-type)Integer% toolId,
+ %(arg-type)String% label,
+ %(arg-type)Bitmap% bitmap1,
+ %(arg-type)String%...
2007 Jun 22
0
[1057] trunk/wxruby2/swig/classes/include/wxToolBar.h: Add new methods from the 2.8 API
...t;<span class="cx"> wxToolBarToolBase* AddTool(wxToolBarToolBase* tool );
</span><span class="cx"> wxToolBarToolBase* AddCheckTool(int toolId , const wxString& label , const wxBitmap& bitmap1 , const wxBitmap& bitmap2 , const wxString& shortHelpString = wxT(""), const wxString& longHelpString = wxT(""), wxObject* clientData = NULL) ;
</span><span class="cx"> wxToolBarToolBase* AddRadioTool(int toolId , const wxString& label , const wxBitmap& bitmap1 , const wxBitmap& bitmap2 , con...
2007 Jun 19
5
Wx::ToolBar#insert_tool
...dated.
1.) Wx::ToolBar#insert_tool(size_t
pos, ToolBarToolBase tool) comes up with a No overloading function
type error, AKA 404 Not Found
2.) Wx::ToolBar#insert_tool(size_t pos, Integer toolId, Bitmap bitmap1,
Bitmap bitmap2 = NullBitmap, Boolean isToggle = false, Object clientData =
nil, String shortHelpString = "", String longHelpString = "") Should have a
reference also in the parameters to String label just after Integer toolId,
to conform with Wx::ToolBar#add_tool().
Just thought I''d give you guys a heads up on some of the stuff I found.
More to come when I find it.
M...
2007 Jun 22
0
[1055] trunk/wxruby2/swig/classes/ToolBar.i: Chnage methods returning ToolBarToolBase to return position of new tool;
...l
-typedef wxControl wxToolBarTool;
</del><span class="cx">
</span><del>-%ignore wxToolBar::AddTool(int toolId, const wxString& label, const wxBitmap& bitmap1, const wxBitmap& bitmap2 = wxNullBitmap, wxItemKind kind = wxITEM_NORMAL, const wxString& shortHelpString = "", const wxString& longHelpString = "", wxObject* clientData = NULL);
</del><ins>+//
+%typemap(out) wxToolBarToolBase* {
+ int pos_of_tool = arg1->GetToolPos($1->GetId());
+ $result = INT2NUM(pos_of_tool);
+}
</ins><span class="cx"&...