Displaying 8 results from an estimated 8 matches for "onabout".
Did you mean:
nabout
2004 Dec 22
2
(no subject)
Hi,
While running the sample application controls/control.rbw I
encountered the following
error:
controls.rbw:1064:in `onAbout'': undefined method `free'' for
#<Wx::BusyCursor:0x2
827db0> (NoMethodError)
from controls.rbw:1039:in `initialize''
from controls.rbw:1039:in `call''
from controls.rbw:1164:in `main_loop''
from controls.rbw:1164
I'&...
2006 Jul 24
6
MiniFrame.i
Hi
Another little patch, adding MiniFrame (a frame with small title bar and
buttons which doesn''t appear in the desktop taskbar).
Also a sample - not very interesting, happy to roll this into something
else if that''s better.
cheers
alex
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
2008 Jan 24
2
Problems when compiling MFC application
..."</font><br>
<font size="2">hello.cpp:56: error: `s' was not declared in this scope</font><br>
<font size="2">hello.cpp: At global scope:</font><br>
<font size="2">hello.cpp:69: error: no `void CMainWindow::OnAbout()' member function declared in class `CMainWindow'</font><br>
<font size="2">hello.cpp: In member function `void CMainWindow::OnAbout()':</font><br>
<font size="2">hello.cpp:70: error: `CDialog' was not declared in this scope&l...
2005 Jul 24
2
Fwd: fix Choice.cpp unicode string
...Jul 2005 19:18:55 -0000
@@ -14,7 +14,7 @@
for(int i=0; i < $1; ++i)
{
VALUE thisItem = rb_ary_entry($input, i);
- $2[i] = (wxChar *)STR2CSTR(thisItem);
+ $2[i] = wxConvUTF8.cMB2WC(STR2CSTR(thisItem));
}
}
There''s another I think UTF8 problem: The onAbout dialog in caret.rb
uses the (c) character so the string is not shown.
Jani
2006 Nov 13
0
[732] trunk/wxruby2/samples: Fixed a few crashes related to the about box menu.
...pan class="cx"> s = Wx::StaticText.new(self, -1, ''The Wizard has completed'')
</span><span class="cx">
</span><span class="cx">
</span><del>- evt_menu(Wx::ID_EXIT) { onQuit }
- evt_menu(Wx::ID_ABOUT) { onAbout }
</del><ins>+ evt_menu(Wx::ID_EXIT) { on_quit }
+ evt_menu(Wx::ID_ABOUT) { on_about }
</ins><span class="cx"> w = Wx::Wizard.new(self, -1, ''The WxRuby Wizard'')
</span><span class="cx"> p1 = Wx::WizardPageSimple...
2006 Jul 25
6
Wizards
Hi
Please find attached a set of patches and swig files to implement
Wizards for wxruby. Also a brief sample.
Quick q - the C declarations of evt_xxx_xxx methods and their attaching
to Ruby classes seems to be duplicated across Events.i and EvtHandler.i
- is one of these the right place to be adding them? or both?
Thanks
alex
_______________________________________________
2006 Nov 13
0
[731] trunk/wxruby2/samples/etc/sash.rb: Changed menu events so they call the correct method.
...t;<span class="cx"> create_status_bar(2)
</span><span class="cx"> set_status_text("wxRuby Sash sample")
</span><span class="cx">
</span><del>- evt_menu(Wx::ID_EXIT) { onQuit }
- evt_menu(Wx::ID_ABOUT) { onAbout }
</del><ins>+ evt_menu(Wx::ID_EXIT) { on_quit }
+ evt_menu(Wx::ID_ABOUT) { on_about }
</ins><span class="cx">
</span><span class="cx"> # Start creating the sashes - these are created from outermost
</span><span class="...
2008 Sep 12
7
embedding wxruby?
Hello,
is it possible to code a wxWidgets GUI in C++ and pass the whole wxApp or just single windows to embedded Ruby code? This would be very nice to provide a scriptable plugin system.
Greetings,
Niklas
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users