Displaying 5 results from an estimated 5 matches for "evt_text_maxlen".
2007 Jan 03
0
[822] trunk/wxruby2/doc/textile: Links to the documentation on TextUrlEvent
...text control (which must haveTE_PROCESS_ENTER style for this event to be generated).|
</span><del>-|*evt_text_url(id) { | event | ... }*|A mouse event occurred over an URLin the text control (MSW and GTK2 only)|
-|*evt_text_maxlen(id) { | event | ... }*|User tried to enter more textinto the control than the limit set by"set_max_length":#TextCtrl_setmaxlength.|
</del><ins>+|*evt_text_maxlen(id) { | ...
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
...E 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__
-static VALUE evt_text_url(int argc, VALUE *argv, VALUE self)
-{
- return internal_evt_with_id(argc, argv, self, wxEVT_COMMAND_TEXT_URL);
-}
-#endif
-
-s...
2006 Oct 17
0
[678] trunk/wxruby2/doc/textile/commandevent.txtl: Fixed a few event macros that did not get fixed by the parser.
...nbsp;{ | event | ... }*|Process a EVT_COMMAND_RADIOBUTTON_SELECTED command,which is generated by a RadioButton control.|
</span><span class="lines">@@ -34,9 +34,9 @@
</span><span class="cx"> |*evt_text_maxlen(id) { | event | ... }*|Process a EVT_COMMAND_TEXT_MAXLEN command,which is generated by a TextCtrl control when the user tries to enter morecharacters into it than the limit previously set with "set_max_length":#Comman...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...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::EVT_COMMAND_TEXT_URL,
+ Wx::TextUrlEvent],
+ EventType[''evt_timer'', 1,
+ Wx::EVT_TIMER,...
2007 Jul 04
0
[1104] trunk/wxruby2: Added 2.8 methods to TextCtrl & document them; tidy up header file
...bsp;{ | event | ... }*|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"> |*evt_text_maxlen(id) { | event | ... }*|User tried to enter more textinto the control than the limit set by "set_max_length":#TextCtrl_setmaxlength.|
</span><span class="cx">
</span><span class="li...