search for: evt_text

Displaying 10 results from an estimated 10 matches for "evt_text".

Did you mean: ivt_text
2006 Nov 23
0
[754] trunk/wxruby2/samples/bigdemo: Rubified samples and added in missing client data sample code
...x::Point.new(90,50), Wx::DEFAULT_SIZE, </span><span class="cx"> sampleList, Wx::CB_DROPDOWN) </span><span class="cx"> </span><del>- evt_combobox(cb.get_id()) {|event| on_combobox(event)} - evt_text(cb.get_id()) {|event| on_evt_text(event)} - evt_text_enter(cb.get_id()) {|event| on_evt_text_enter(event)} </del><ins>+ evt_combobox(cb.get_id) {|event| on_combobox(event)} + evt_text(cb.get_id) {|event| on_evt_text(event)} + evt_text_enter(cb.get_id) {|event...
2009 Feb 18
3
Validation and ComboBox
I''m trying to make a ComboBox that can be typed into but only accepts entries that are already in the drop-down list. I hoped a combination of the CB_DROPDOWN style and a TextValidator with the FILTER_INCLUDE_LIST would make that happen, but the validator seems to be ignored. Is that combination supposed to do what I want? If so, please review the code below and let me know where my
2006 Aug 25
3
Patch to wxComboBox.rbw
This patch fixes the sample so it works correctly. You''ll need to patches in the previous e-mail. Roy _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2007 Jul 04
0
[1101] trunk/wxruby2/doc/textile/spinctrl.txtl: Doc patch to SpinCtrl from wxWidgets 2.8
...p;nbsp&nbsp&nbsp2007-07-04 18:52:37 UTC (rev 1101) </span><span class="lines">@@ -35,6 +35,12 @@ </span><span class="cx"> the user modifies the text in the edit part of the spin control directly, the </span><span class="cx"> @EVT_TEXT@ is generated, like for the "TextCtrl":textctrl.html. </span><span class="cx"> </span><ins>+When the use enters text into the text area, the text is not +validated until the control loses focus (e.g. by using the TAB +key). The value is then adjusted to...
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
...t argc, VALUE *argv, VALUE self) -{ - return internal_evt_with_id(argc, argv, self, wxEVT_COMMAND_LISTBOX_DOUBLECLICKED); -} - -static VALUE evt_checkbox(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_with_id(argc, argv, self, wxEVT_COMMAND_CHECKBOX_CLICKED); -} - -static VALUE evt_text(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_with_id(argc, argv, self, wxEVT_COMMAND_TEXT_UPDATED); -} - -static VALUE evt_text_enter(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_with_id(argc, argv, self, wxEVT_COMMAND_TEXT_ENTER); -} - -static VALUE evt_text_m...
2007 Jul 04
0
[1104] trunk/wxruby2: Added 2.8 methods to TextCtrl & document them; tidy up header file
...ommands are processed by default event handlers in </span><span class="lines">@@ -104,7 +133,7 @@ </span><span class="cx"> argument. </span><span class="cx"> </span><span class="cx"> </span><del>-|*evt_text(id)&nbsp;{&nbsp;&#124;&nbsp;event&nbsp;&#124;&nbsp;...&nbsp;}*|Respond to a EVT_COMMAND_TEXT_UPDATED event,generated when the text changes. Notice that this event will always be sentwhen the text controls contents changes - whether this is due to user input orcomes f...
2007 Jan 03
0
[822] trunk/wxruby2/doc/textile: Links to the documentation on TextUrlEvent
...ut from a text control, use these event handler methods to +direct the events to a block that takes a "CommandEvent":commandevent.html +argument. </ins><span class="cx"> </span><span class="cx"> </span><span class="cx"> |*evt_text(id)&nbsp;{&nbsp;&#124;&nbsp;event&nbsp;&#124;&nbsp;...&nbsp;}*|Respond to a EVT_COMMAND_TEXT_UPDATED event,generated when the text changes. Notice that this event will always be sentwhen the text controls contents changes - whether this is due to user input orcomes f...
2004 May 22
10
Tabbing between Notebook pages
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: wxTony.rbw Type: application/octet-stream Size: 10436 bytes Desc: not available Url : http://rubyforge.org/pipermail/wxruby-users/attachments/20040522/9c1889d0/wxTony.obj
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...Wx::Event], + EventType[''evt_taskbar_right_down'', 0, + Wx::EVT_TASKBAR_RIGHT_DOWN, + Wx::Event], + EventType[''evt_taskbar_right_up'', 0, + Wx::EVT_TASKBAR_RIGHT_UP, + Wx::Event], + EventType[''evt_text'', 1, + Wx::EVT_COMMAND_TEXT_UPDATED, + Wx::CommandEvent], + EventType[''evt_text_enter'', 1, + Wx::EVT_COMMAND_TEXT_ENTER, + Wx::CommandEvent], + EventType[''evt_text_maxlen'', 1, + Wx:...
2006 Dec 18
13
unit testing wxruby GUIs
paul.allton at uk.bnpparibas.com wrote: > I''m a big fan of automated UI testing (i.e. driving the UI from some robot API). I appreciate this > is potentially a whole new project, but does wxwidgets provide a method of clicking buttons, > typing into components ... if so, would it be technically possible to expose this in wxruby. I like automated UI testing too, but