search for: keyev

Displaying 20 results from an estimated 25 matches for "keyev".

Did you mean: keyed
2007 Jul 04
0
[1107] trunk/wxruby2: Add the 2.8 get_modifiers method to KeyEvent; remove some deprecated
...tch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[1107] trunk/wxruby2: Add the 2.8 get_modifiers method to KeyEvent; remove some deprecated</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>1107</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2007-07-04 15:32:50 -0400 (Wed, 04 Ju...
2008 Mar 13
2
Doc patch for keyevent.txtl
Here''s a doc patch for keyevent.txtl. I''m also attaching two new files referenced from keyevent.txtl. -------------- next part -------------- A non-text attachment was scrubbed... Name: keycode.txtl Type: application/octet-stream Size: 2446 bytes Desc: not available Url : http://rubyforge.org/pipermail/wxruby-deve...
2006 Oct 19
0
[ wxruby-Bugs-6235 ] KeyEvent#get_key_code not working properly on OS X
...-10-19 12:43 You can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=218&aid=6235&group_id=35 Category: Incorrect behavior Group: current Status: Open Resolution: None Priority: 4 Submitted By: Alex Fenton (brokentoy) Assigned to: Kevin Smith (qualitycode) Summary: KeyEvent#get_key_code not working properly on OS X Initial Comment: The wrong values are getting returned from KeyEvent#get_key_code on OS X, unicode builds. This is visible in the caret sample; if the arrow keys are used to try and move the cursor, rubbish characters are instead inserted into the sampl...
2007 Jul 16
0
[1113] trunk/wxruby2/samples/caret/caret.rb: Ensure the canvas has focus so KeyEvents are directed to it, fixing bug 10663
...d:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[1113] trunk/wxruby2/samples/caret/caret.rb: Ensure the canvas has focus so KeyEvents are directed to it, fixing bug 10663</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>1113</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2007-07-16 16:41:03 -04...
2011 Mar 01
0
KeyEvent#get_key_code
Bonsoir Alex, en utilisant "event.get_key_code" avec les touches du pavé numérique(clavier azerty) j''obtient les résultats suivants: par exemple: 1 = 324 2 = 325 3 = 326 Est-ce que j''obtient les mêmes résultats avec les mêmes touches avec un clavier querty? merci. _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org
2006 Apr 07
3
Pointer position on keypress event?
Hi. Is there any straightforward way to tell pointer position (x, y) upon keypress? In original wxWidgets, wxKeyEvent supports GetX() and GetY() methods, but wxRuby''s KeyEvent object does not have one. I also checked with event.methods and event.instance_variables. Do I need to keep track of pointer position by evt_motion? -- Taisuke Yamada <tyamadajp@spam.rakugaki.org>, http://rakugaki.org/ 22...
2006 Aug 21
4
Patch for caret sample
Cleaned up so it follows Ruby coding style and uses ID_EXIT, ID_ABOUT. Sean _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Mar 24
8
Snom 360 problems
Anyone have a Snom they're happy with? How did you manage that? :) I have a system of: Asterisk 1.2.3 2 Wildcard TDM400P Rev I and E/F 1 Snom 360 + sidecar ~15 Sipura/Linsys SPA-841 ~15 Grandstream 101 Everything (currently) is on the same network, not a router to be seen between any two. Also everything, except the snom, is working sweetly. The main problem is ECHO.. awful echo and
2005 Aug 09
3
file
hi im saleh please help me I WANT SOURSE CODE SIMILAR THIS CODE package asl; import java.awt.*; import java.awt.event.* ; import java.applet.*; public class animat1 extends Applet implements Runnable{ int c = 290, d = 300; int x = 20, k = 20, o = 0, m = 10, n = 0, y = 0; Thread t = new Thread(this); Image img1, img2, img3; // AudioClip a1; public void init() {
2007 Jun 28
0
[1096] trunk/wxruby2/lib/wx/classes/evthandler.rb: Add mapping for another obscure and undocumented event type
.../span><span class="lines">@@ -105,6 +105,9 @@ </span><span class="cx"> EventType[''evt_char'', 0, </span><span class="cx"> Wx::EVT_CHAR, </span><span class="cx"> Wx::KeyEvent], </span><ins>+ EventType[''evt_char_hook'', 0, + Wx::EVT_CHAR_HOOK, + Wx::KeyEvent], </ins><span class="cx"> EventType[''evt_checkbox'', 1, </span><span class="cx">...
2006 Dec 13
1
0.0.38 tag and release
...C - Add Scintilla for Linux - Roy, sorry, this patch just dropped off my screen. It''s compiling fine but just not appearing in bigdemo. Hopefully something simple. - Have another go at DataObject using a C++ subclass... - Try and nail some of the platform bugs (ScrolledWindow on MSW, KeyEvent on OS X etc) We seem to be in the sweet position of having very few GUI wx classes left to port. Apart from Clipboard the ones that are left seem mostly (for implementation reasons - eg DatePickerCtrl) to be more trouble than they are worth right now, and less impt than getting a stable beta...
2007 May 31
0
[1042] trunk/wxruby2: Overhaul of the event handling WxType->RubyClass mapping to make it
...=> Wx::PaintEvent, + Wx::EVT_UPDATE_UI => Wx::UpdateUIEvent, + Wx::EVT_SIZE => Wx::SizeEvent, + Wx::EVT_SIZING => Wx::SizeEvent, + Wx::EVT_MOVE => Wx::MoveEvent, + Wx::EVT_MOVING => Wx::MoveEvent, + Wx::EVT_TIMER => Wx::TimerEvent, + Wx::EVT_CHAR => Wx::KeyEvent, + Wx::EVT_CHAR_HOOK => Wx::KeyEvent, + Wx::EVT_KEY_DOWN => Wx::KeyEvent, + Wx::EVT_KEY_UP => Wx::KeyEvent, + Wx::EVT_COMMAND_FIND => Wx::FindDialogEvent, + Wx::EVT_COMMAND_FIND_NEXT => Wx::FindDialogEvent, + Wx::EVT_COMMAND_FIND_REPLACE => Wx::FindDialogEvent...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...=> Wx::EraseEvent, - Wx::EVT_UPDATE_UI => Wx::UpdateUIEvent, - Wx::EVT_SIZE => Wx::SizeEvent, - Wx::EVT_SIZING => Wx::SizeEvent, - Wx::EVT_MOVE => Wx::MoveEvent, - Wx::EVT_MOVING => Wx::MoveEvent, - Wx::EVT_TIMER => Wx::TimerEvent, - Wx::EVT_CHAR => Wx::KeyEvent, - Wx::EVT_CHAR_HOOK => Wx::KeyEvent, - Wx::EVT_KEY_DOWN => Wx::KeyEvent, - Wx::EVT_KEY_UP => Wx::KeyEvent, - Wx::EVT_COMMAND_FIND => Wx::FindDialogEvent, - Wx::EVT_COMMAND_FIND_NEXT => Wx::FindDialogEvent, - Wx::EVT_COMMAND_FIND_REPLACE => Wx::FindDialogEvent...
2008 May 30
4
How to deal with observe_field in partials?
Hiyas I''m having a little problem with a observe_field in a partial "bokings/room_list": <%= select_tag "room_#{room.id}_grownups", options_for_select([0, 1, 2], room.grownups.length) %> <%= observe_field "room_#{room.id}_grownups", :url => set_number_of_grownups_booking_room_url(:id => room.id), :with =>
2009 Jul 31
1
SVG output on Windows OS
...39;t know how to get R to recognize the svg() command under Windows. I have loaded RsvgDevice, Cairo, and cairoDevice in my attempts. The problem seems to me to be directly related to enabling R to produce svg output on Windows, rather than related to ggplot2. Michael Roessler, CFA michael.roesler@keyevent.com [[alternative HTML version deleted]]
2005 Oct 27
1
Event + Keycodes
Hi, Could someone please give me a quick and simple example of using various keys with the event object in prototype? I am not really sure how to use these. Thanks Brgds, Michael _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2008 May 18
0
[ wxruby-Bugs-20211 ] Unresolved symbol due to linkage error
...tmlCellEvent.o obj/HtmlContainerCell.o obj/HtmlEasyPrinting.o obj/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/Me...
2007 Apr 29
0
[982] branches/wxruby2/wxwidgets_282/swig/classes/EvtHandler.i: Add EvtThunker mapping for TimerEvent (bug 10391)
...xPaintEvent; </span><span class="cx"> extern swig_class cWxUpdateUIEvent; </span><span class="cx"> extern swig_class cWxSizeEvent; </span><ins>+extern swig_class cWxTimerEvent; </ins><span class="cx"> extern swig_class cWxKeyEvent; </span><span class="cx"> extern swig_class cWxFindDialogEvent; </span><span class="cx"> extern swig_class cWxMouseEvent; </span><span class="lines">@@ -146,6 +147,12 @@ </span><span class="cx"> (const w...
2007 Mar 09
0
[878] trunk/wxruby2/TODO: Update with 0.0.39 changes and items now in tracker
...>@@ -38,9 +38,6 @@ </span><span class="cx"> </span><span class="cx"> - Truncation/missing widgets in bigdemo (OS X) </span><span class="cx"> </span><del>-- Caret sample not working with unicode builds, need to fix - KeyEvent#get_unicode _key (OS X) - </del><span class="cx"> Underlying SWIG & Build system problems </span><span class="cx"> --------------------------------------- </span><span class="cx"> </span><span class="lines"...
2008 Jun 11
1
xen migrate never ends
...653 | 202970268/202970268 ( 0.0%) 11/06/2008 12:17:44 PointerPos : 1 | 12/ 12 ( 0.0%) 11/06/2008 12:17:44 TOTALS : 1307 | 202970280/202970280 ( 0.0%) 11/06/2008 12:17:44 Statistics events Received/ RawEquiv ( saved) 11/06/2008 12:17:44 KeyEvent : 72 | 576/ 576 ( 0.0%) 11/06/2008 12:17:44 PointerEvent : 491 | 2946/ 2946 ( 0.0%) 11/06/2008 12:17:44 FramebufferUpdate : 654 | 6540/ 6540 ( 0.0%) 11/06/2008 12:17:44 SetEncodings : 1 | 60/ 60 ( 0.0%) 11...