Using Gambas 2.20, Ubuntu 9.10 with KDE 4.3.5 and GTK+ libraries

Key.Code is not returned? Key.Text is lost? KeyRelease is not raised?

Put a TextBox in a Form, then write the code to catch the pressed key.
Run it and press a number o letter key.

PUBLIC SUB TextBox1_KeyPress()
  PRINT Key.Code
  PRINT Key.Text
END

PUBLIC SUB TextBox1_KeyRelease()
  PRINT Key.Code
  PRINT Key.Text
END

Result Tests (gb.qt)
----------------------------

pressed the '5' key

KeyPress: Key.Code = 53, Key.Text = "5"

KeyRelease: Key.Code = 53, Key.Text = ""

Randomly KeyRelease wasn't raised.


Result Test (gb.qt)
--------------------------

pressed the '5' key

KeyPress: Key.Code = 0, Key.Text = "5"

KeyRelease: Key.Code = 53, Key.Text = "5"

Randomly KeyRelease wasn't raised.


Issues in two real proyects (I'm trying to isolate the problem):
---------------------------------------

KeyPress never is raised when gb.gtk is used.

KeyPress sometimes is not raised when gb.qt is used.

Key.Text is lost when the event KeyRelease is raised.

-- 
Fabián Flores Vadell
www.speedbooksargentina.blogspot.com

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to