Thursday, November 22, 2012

Grab focus on Gtk Widget

Many times I had to give focus to a newly created Gtk widget that still had to be mapped to screen. Since widget.grab_focus() does not work if the widget is not displayed on the screen, then I always used an idle source to delay the operation.
Today I noticed that the idle may be too late: if the user is writing something, then some key strokes may be lost because the idle runs slightly after the widget has been mapped. You may think that's imperceptible to the user, but that's not true in some cases.

So I've tried connecting to the map, map-event and show signals (also "after"), without success: the handler is called slightly before the right time thus grab_focus() will not work.

Then I ended up with this working solution, that will grab the focus as soon as the widget is first drawn to the screen:

void focus_widget (Widget widget) {
  // it may be already displayed
  widget.grab_focus ();
  // grab focus right after the widget is drawn
  // for the first time
  ulong sigid = 0;
  sigid = widget.draw.connect (() => {
    widget.grab_focus ();
    widget.disconnect (sigid);
    return false;
  });
}

I still don't know exactly what's the best way to grab focus as soon as the widget can really grab it. So if you have any better idea, please let me know :-)

6 comments:

Anonymous said...

I use show event instead. On GtkEntry draw callback causes the text to be all selected.

Anonymous said...

I use show event instead. On GtkEntry draw callback causes the text to be all selected.

pandith13 said...

Nice pick. it's very Useful Article.
SRI ANNAPOORNESHAWARI ASTROLOGY CENTER.Best Astrologer In Massachusetts

Vasudeva said...

Nice pick. it's very Useful Article.

SRIKRISHANA ASTROLOGY.Best Astrologer In Karnataka

shri chakram astro centre said...

Nice pick. it's very Useful Article.

SRI ANNAPOORNESHAWARI ASTROLOGY CENTER.Best Astrologer In Ohio

abhiram said...

Thanks for sharing!
ABHIRAM ASTROLOGY CENTER.Best Astrologer In electronic-city