search for: evt_text_enter

Displaying 7 results from an estimated 7 matches for "evt_text_enter".

2007 Jan 25
0
[ wxruby-Bugs-8131 ] EVT_TEXT_ENTER not firing on OS X & Linux
...2007-01-25 05:27 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=218&aid=8131&group_id=35 Category: Incorrect behavior Group: None Status: Open Resolution: None Priority: 3 Submitted By: Alex Fenton (brokentoy) Assigned to: Alex Fenton (brokentoy) Summary: EVT_TEXT_ENTER not firing on OS X & Linux Initial Comment: evt_text_enter should fire when the ENTER button is pressed within a single-line TextCtrl. BUt this isn''t working on OS X or Linux at the moment - nothing happens. ---------------------------------------------------------------------- You...
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
2006 Nov 23
0
[754] trunk/wxruby2/samples/bigdemo: Rubified samples and added in missing client data sample code
...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| on_evt_text_enter(event)} </ins><span class="cx&qu...
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_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_maxlen(int argc, VALUE *argv, VALUE self) -{ - return internal_evt_with_id(argc, argv, self, wxEVT_COMMAND_TEXT_MAXLEN); -} - -#ifndef __WXMAC__ -stat...
2007 Jan 03
0
[822] trunk/wxruby2/doc/textile: Links to the documentation on TextUrlEvent
..._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 from the program itself (for example, if SetValue() is called)| </span><span class="cx"> |*evt_text_enter(id)&nbsp;{&nbsp;&#124;&nbsp;event&nbsp;&#124;&nbsp;...&nbsp;}*|Respond to a EVT_COMMAND_TEXT_ENTER event,generated when enter is pressed in a text control (which must haveTE_PROCESS_ENTER style for this event to be generated).| </span><del>-|*evt_text_url...
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_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::EVT_COMMAND_TEXT_MAXLEN, + Wx::CommandEvent], + EventType[''evt_text_url'', 1, + Wx::EV...
2007 Jul 04
0
[1104] trunk/wxruby2: Added 2.8 methods to TextCtrl & document them; tidy up header file
...es. Notice that this event will be sentwhen the text controls contents changes - whether this is due to user input orcomes from the program itself (for example, if SetValue() is called); see ChangeValue() fora function which does not send this event.| </ins><span class="cx"> |*evt_text_enter(id)&nbsp;{&nbsp;&#124;&nbsp;event&nbsp;&#124;&nbsp;...&nbsp;}*|Respond to a EVT_COMMAND_TEXT_ENTER event,generated when enter is pressed in a text control (which must haveTE_PROCESS_ENTER style for this event to be generated).| </span><span class="cx&qu...