Displaying 4 results from an estimated 4 matches for "wxok".
Did you mean:
wok
2007 Jul 18
0
[1118] trunk/wxruby2/swig: Move Wx::message_box function from wx.i to Functions.i, where it belongs
...122,6 +127,8 @@
</span><span class="cx"> }
</span><span class="cx">
</span><span class="cx">
</span><ins>+int wxMessageBox(const wxString& message, const wxString& caption = wxT("Message"), int style = wxOK, wxWindow *parent = NULL, int x = -1, int y = -1);
+
</ins><span class="cx"> size_t wxGetMultipleChoices(wxArrayInt& selections,const wxString& message,const wxString& caption,int n, const wxString choices[],wxWindow *parent = NULL,int x = -1, int y = -1,bool centr...
2007 Jan 08
0
[845] trunk/wxruby2/swig/classes: Added MultiChoiceDialog in class form
...t;lines">@@ -0,0 +1,49 @@
</span><ins>+// Copyright 2004-2007 by Kevin Smith
+// released under the MIT-style wxruby2 license
+
+#if !defined(_wxMultiChoiceDialog_h_)
+#define _wxMultiChoiceDialog_h_
+
+#define wxCHOICEDLG_STYLE \
+ (wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxOK | wxCANCEL | wxCENTRE)
+
+class wxMultiChoiceDialog : public wxDialog
+{
+public:
+ wxMultiChoiceDialog();
+
+ wxMultiChoiceDialog(wxWindow *parent,
+                &am...
2005 May 03
10
Is wxRuby-SWIG version usable enough to package for download?
If wxRuby-SWIG is as usable as wxRuby 0.6.0, maybe it should be given a
version number and packaged up for download.
Given the nature of SWIG, having a lot more people use it would probably
result in more code contributions to this project.
Seems most of the changes are 2+ months old, so I''m guessing wxRuby-SWIG
is fairly stable right now in terms of frequency of changes...
2005 Aug 03
24
patch for Icon
I just checked out a fresh copy and had to tweak wxIcon.h to get it to
compile on Mac OS X and windows. The problem is with:
wxIcon(const wxString& filename,
wxBitmapType type = wxBITMAP_TYPE_XPM,
int desiredWidth=-1, int desiredHeight=-1);
that signature is only used on GTK on other systems it is:
wxIcon(const wxString& name,
long