From: John L. <jr...@us...> - 2007-06-21 22:03:01
|
Update of /cvsroot/wxlua/wxLua/bindings/wxwidgets In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv30945/wxLua/bindings/wxwidgets Modified Files: controls.i Log Message: Add the rest of the controls to the sample Index: controls.i =================================================================== RCS file: /cvsroot/wxlua/wxLua/bindings/wxwidgets/controls.i,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** controls.i 18 Jun 2007 21:40:29 -0000 1.43 --- controls.i 21 Jun 2007 22:02:55 -0000 1.44 *************** *** 771,777 **** %class wxSpinButton, wxControl wxSpinButton() ! wxSpinButton(wxWindow *parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSP_VERTICAL | wxSP_ARROW_KEYS, const wxString& name = "wxSpinButton") ! bool Create(wxWindow *parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSP_VERTICAL | wxSP_ARROW_KEYS, const wxString& name = "wxSpinButton") int GetMax() const int GetMin() const --- 771,777 ---- %class wxSpinButton, wxControl wxSpinButton() ! wxSpinButton(wxWindow *parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSP_VERTICAL | wxSP_ARROW_KEYS, const wxString& name = "wxSpinButton") ! bool Create(wxWindow *parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSP_VERTICAL | wxSP_ARROW_KEYS, const wxString& name = "wxSpinButton") int GetMax() const int GetMin() const *************** *** 1273,1276 **** --- 1273,1278 ---- %endenum + %define_string wxDirDialogDefaultFolderStr + %class wxGenericDirCtrl, wxControl wxGenericDirCtrl() |