Forum: wxRuby Tab key traversal

Posted by Philip Stephens (philipcs)
on 2010-03-21 01:26
(Received via mailing list)
Below is my attempt at changing the focus from one text control to the
next control after a person presses the tab key.  The wxTE_PROCESS_TAB
style property has been selected for each of the controls.  What
corrections do I have to make? Thanks.

#!/usr/bin/env ruby
require 'rubygems'
require 'wx'
require 'tp1.rb'

class MainFrame < TPSC
   def on_init
  m_scrolledwindow6.set_virtual_size(400, 100)
  m_scrolledwindow6.set_scroll_rate(5, 5)

  wxEVT_CHAR(@m_textCtrl2) { m_textCtrl3.set_focus }
  wxEVT_CHAR(@m_textCtrl3) { m_textCtrl4.set_focus }
  wxEVT_CHAR(@m_textCtrl4) { m_textCtrl4.set_focus }

#  evt_button(@m_buttonincrement) { increaseColour }
#  evt_button(@m_buttondecrement) { decreaseColour }
end


Wx::App.run do
   self.app_name = 'TestNotebook'
   frame = MainFrame.new
   frame.show
end
Posted by hendra kusuma (Guest)
on 2010-03-22 02:52
(Received via mailing list)
Sorry, I don't really understand your question,
but if I got it right,
you expect that if you press tab key, then focus will move to next 
control
to do so automatically, you simply have to put every control
in a panel. I am personally doing it in this order :
frame -> panel -> sizer -> control

Hope this help
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.