How to generate event explicit (through code) ?

2012-04-23 Thread Leena Chourey
Hello list, I want the focus to move selection/focus from one icon to another automatically on single key press. I have tried to just run key_press event code in a loop, but the selection is not moving from one to another, it is directly coming to the last item. it requires a h/w interruption

Re: How to generate event explicit (through code) ?

2012-04-23 Thread schuster . bernhard
http://developer.gnome.org/gobject/unstable/gobject-Signals.html g_signal_emit is what you are looking for. Regaards BernhardLeena Chourey schrieb am 23.04.12 13:46: Hello list, I want the focus to move selection/focus from one icon to another automatically on single key press. I have tried to

Re: How to generate event explicit (through code) ?

2012-04-23 Thread David Nečas
On Mon, Apr 23, 2012 at 05:16:52PM +0530, Leena Chourey wrote: I want the focus to move selection/focus from one icon to another automatically on single key press. I have tried to just run key_press event code in a loop, but the selection is not moving from one to another, it is directly

docking GTK3

2012-04-23 Thread Arne Pagel
Hello, I read about some possibilities to add docking capability to gtk using gdl. (http://www.micahcarrick.com/gdl-docking-gtk.html) Is there any build in solution available or planned within GTK3? regards Arne ___ gtk-app-devel-list mailing

Replace context menu of GTK applications

2012-04-23 Thread Simon Schneegans
Hey there! I asked this question on another mailing list. There I got the hint to ask here, maybe you can help me! I'm going to write my bachelor thesis on different menu types (e.g. Pie Menus). For this reason I'd like to replace the context menu of GTK applications (the menu opened by

Re: Replace context menu of GTK applications

2012-04-23 Thread David Nečas
On Mon, Apr 23, 2012 at 08:18:05PM +0200, Simon Schneegans wrote: I asked this question on another mailing list. There I got the hint to ask here, maybe you can help me! I'm going to write my bachelor thesis on different menu types (e.g. Pie Menus). For this reason I'd like to replace the

GtkTextView and bidi text

2012-04-23 Thread Ferdinand Ramirez
How can I force GtkTextView object to use left to right rendering when I type in a character which has the default behavior of being from a RTL language? I need this behavior when I mix some RTL characters with LTR characters and the first character on a line is of RTL type. The following

Re: How to generate event explicit (through code) ?

2012-04-23 Thread Leena Chourey
Thanks David. This is a requirement of visually challenged person. Problem statement: To traverse the item present on desktop using single keystroke. Details : The existing way provides multiple keystroks in in multiple directions. This creates confusion of which direction to go and how many

Re: GtkTextView and bidi text

2012-04-23 Thread Dov Grobgeld
Indeed there is no higher level override determine the text direction. You have to change the buffer contents to get what you want. The easiest way of doing this is by inserting the character zero-width character LRM (U+200E) before your first RTL character. Lots of years ago we spoke about