search for: listev

Displaying 11 results from an estimated 11 matches for "listev".

Did you mean: listed
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...VT_WIZARD_PAGE_CHANGED => Wx::WizardEvent, - Wx::EVT_WIZARD_PAGE_CHANGING => Wx::WizardEvent, - Wx::EVT_WIZARD_CANCEL => Wx::WizardEvent, - Wx::EVT_WIZARD_HELP => Wx::WizardEvent, - Wx::EVT_WIZARD_FINISHED => Wx::WizardEvent, - Wx::EVT_COMMAND_LIST_BEGIN_DRAG => Wx::ListEvent, - Wx::EVT_COMMAND_LIST_BEGIN_RDRAG => Wx::ListEvent, - Wx::EVT_COMMAND_LIST_BEGIN_LABEL_EDIT => Wx::ListEvent, - Wx::EVT_COMMAND_LIST_END_LABEL_EDIT => Wx::ListEvent, - Wx::EVT_COMMAND_LIST_DELETE_ITEM => Wx::ListEvent, - Wx::EVT_COMMAND_LIST_DELETE_ALL_ITEMS => Wx...
2007 May 31
0
[1042] trunk/wxruby2: Overhaul of the event handling WxType->RubyClass mapping to make it
...VT_WIZARD_PAGE_CHANGED => Wx::WizardEvent, + Wx::EVT_WIZARD_PAGE_CHANGING => Wx::WizardEvent, + Wx::EVT_WIZARD_CANCEL => Wx::WizardEvent, + Wx::EVT_WIZARD_HELP => Wx::WizardEvent, + Wx::EVT_WIZARD_FINISHED => Wx::WizardEvent, + Wx::EVT_COMMAND_LIST_BEGIN_DRAG => Wx::ListEvent, + Wx::EVT_COMMAND_LIST_BEGIN_RDRAG => Wx::ListEvent, + Wx::EVT_COMMAND_LIST_BEGIN_LABEL_EDIT => Wx::ListEvent, + Wx::EVT_COMMAND_LIST_END_LABEL_EDIT => Wx::ListEvent, + Wx::EVT_COMMAND_LIST_DELETE_ITEM => Wx::ListEvent, + Wx::EVT_COMMAND_LIST_DELETE_ALL_ITEMS => Wx...
2008 Jun 02
0
[ wxruby-Bugs-20477 ] Wx::ListEvent#get_item crashes when navigating with the keypad
...ened at 02/06/2008 10:34 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=218&aid=20477&group_id=35 Category: Incorrect behavior Group: current Status: Open Resolution: None Priority: 3 Submitted By: Pascal Hurni (phi) Assigned to: Nobody (None) Summary: Wx::ListEvent#get_item crashes when navigating with the keypad Initial Comment: Having a ListCtrl with an ''item_selected'' event handler, and inside it calling get_item on the passed event object may crash. To reproduce the bug: If the first selection occurs with the keypad, no bug arise wh...
2008 May 18
0
[ wxruby-Bugs-20211 ] Unresolved symbol due to linkage error
...HtmlHelpController.o obj/HtmlLinkEvent.o obj/HtmlLinkInfo.o obj/HtmlWidgetCell.o obj/HtmlWindow.o obj/HyperlinkCtrl.o obj/HyperlinkEvent.o obj/Icon.o obj/IconBundle.o obj/IconizeEvent.o obj/IdleEvent.o obj/Image.o obj/ImageList.o obj/KeyEvent.o obj/LayoutAlgorithm.o obj/ListBox.o obj/ListCtrl.o obj/ListEvent.o obj/ListItem.o obj/ListItemAttr.o obj/Listbook.o obj/ListbookEvent.o obj/Locale.o obj/Log.o obj/LogTextCtrl.o obj/MDIChildFrame.o obj/MDIParentFrame.o obj/Mask.o obj/MediaCtrl.o obj/MediaEvent.o obj/MemoryDC.o obj/Menu.o obj/MenuBar.o obj/MenuEvent.o obj/MenuItem.o obj/MessageDialog.o obj/Mini...
2006 Dec 24
0
[802] trunk/wxruby2/swig/classes: Add support for MenuEvent (MENU_OPEN, MENU_CLOSE, MENU_HIGHLIGHT)
...n internal_evt_with_id(argc, argv, self, wxEVT_MENU_HIGHLIGHT); +} + +static VALUE evt_menu_highlight_all(int argc, VALUE *argv, VALUE self) +{ + return internal_evt_no_parameters(argc, argv, self, wxEVT_MENU_HIGHLIGHT_ALL); +} + + </ins><span class="cx"> // TODO: Add for ListEvent types? Is this needed? </span><span class="cx"> </span><span class="cx"> %} </span></span></pre></div> <a id="trunkwxruby2swigclassesMenuEventi"></a> <div class="addfile"><h4>Added:...
2010 Jan 28
5
Compiling problem on Ubuntu 9.10 64 bit
....o obj/HtmlLinkEvent.o obj/HtmlLinkInfo.o obj/HtmlListBox.o obj/HtmlWidgetCell.o obj/HtmlWindow.o obj/HyperlinkCtrl.o obj/HyperlinkEvent.o obj/Icon.o obj/IconBundle.o obj/IconizeEvent.o obj/IdleEvent.o obj/Image.o obj/ImageList.o obj/KeyEvent.o obj/LayoutAlgorithm.o obj/ListBox.o obj/ListCtrl.o obj/ListEvent.o obj/ListItem.o obj/ListItemAttr.o obj/Listbook.o obj/ListbookEvent.o obj/Locale.o obj/Log.o obj/LogTextCtrl.o obj/MDIChildFrame.o obj/MDIParentFrame.o obj/Mask.o obj/MediaCtrl.o obj/MediaEvent.o obj/MemoryDC.o obj/Menu.o obj/MenuBar.o obj/MenuEvent.o obj/MenuItem.o obj/MessageDialog.o obj/Mini...
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 07
0
[723] trunk/wxruby2: Added WindowCreateEvent and WindowDestroyEvent + event handlers (AF)
..., VALUE self) +{ + return internal_evt_no_parameters(argc, argv, self, wxEVT_CREATE); +} + +static VALUE evt_destroy(int argc, VALUE *argv, VALUE self) +{ + return internal_evt_no_parameters(argc, argv, self, wxEVT_DESTROY); +} </ins><span class="cx"> // TODO: Add for ListEvent types? Is this needed? </span><span class="cx"> </span><span class="cx"> %} </span></span></pre></div> <a id="trunkwxruby2swigclassesWindowCreateEventi"></a> <div class="addfile"><h4&gt...
2007 May 29
0
[1035] trunk/wxruby2/swig/classes/EvtHandler.i: Removed a heap of redundant stuff that''s been #if 0''d for a while
...argc, VALUE *argv, VALUE self) -{ - return internal_evt_with_id(argc, argv, self, wxEVT_MENU_HIGHLIGHT); -} - -static VALUE evt_menu_highlight_all(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_no_parameters(argc, argv, self, wxEVT_MENU_HIGHLIGHT_ALL); -} - - -// TODO: Add for ListEvent types? Is this needed? - -%} - - - - -%init %{ - rb_define_method(cWxEvtHandler.klass, "connect", VALUEFUNC(connect_fnc), -1); - rb_define_method(cWxEvtHandler.klass, "evt_menu", VALUEFUNC(evt_menu), -1); - rb_define_method(cWxEvtHandler.klass, "evt_tool",...
2004 Sep 28
9
Open call to try wxruby-swig
Hi Everyone, Over the past couple of weeks wxruby-swig has made a lot of progress. Over 100 classes have been added with attempts to mimic the existing wxruby interfaces. While still not as stable as wxruby, stability has increased dramatically. Finally, it has been built on Linux, Mac, and MSVC. This email is an invitation to try out wxruby-swig for yourself. The source code is in CVS and
2007 Feb 09
20
Hello Everyone
I have a bit of a problem with installation. I installed wxX11 in my linux box. I compiled the demos and all the demos, save dbbrowse, work. I think I have a functional wx. Now I''m trying to install wxRuby from source, since I have a 64 bit machine. I only have permission to my home directory so my installation is : /usr/people/stevenq/Applications/wxX11/