Re: Handle "Enter" pressing at GtkEntry

2012-10-03 Thread Andrew Potter
On Wed, Oct 3, 2012 at 7:42 AM, Yury Alyaev wrote: > What is the right way to catch "Enter" pressing at the end of the text input > to GtkEntry gtk_entry_set_activates_default() is probably what you want. ___ gtk-app-devel-list mailing list gtk-app-deve

GtkFileChooserButton::file-set

2012-10-03 Thread Rafał Mużyło
On Thu, Oct 04, 2012 at 12:33:24AM +0200, Nicola Fontana wrote: > Il Wed, 3 Oct 2012 23:28:23 +0200 Rafał Mużyło > scrisse: > > > but the change on cancel was > > recently fixed in bug . in regard of gtk 3.4 and 3.6 (unfortunately, not in > > 2.24 though, even if it seems to be only a matter of

Re: GtkFileChooserButton::file-set

2012-10-03 Thread Nicola Fontana
Il Wed, 3 Oct 2012 23:28:23 +0200 Rafał Mużyło scrisse: > On Wed, Oct 03, 2012 at 10:23:12PM +0200, Nicola Fontana wrote: > > I need to catch when the file has changed in a > > GtkFileChooserButton. I thought connecting to "file-set" was > > enough but this signal is not emitted when the user can

GtkFileChooserButton::file-set

2012-10-03 Thread Rafał Mużyło
On Wed, Oct 03, 2012 at 10:23:12PM +0200, Nicola Fontana wrote: > I need to catch when the file has changed in a > GtkFileChooserButton. I thought connecting to "file-set" was > enough but this signal is not emitted when the user cancels > (although bug 555351 does not agree [1]). Here is the proof

Re: Handle "Enter" pressing at GtkEntry

2012-10-03 Thread Stefan Salewski
On Wed, 2012-10-03 at 20:18 +0200, David Nečas wrote: > On Wed, Oct 03, 2012 at 09:42:24AM -0500, Yury Alyaev wrote: > > What is the right way to catch "Enter" pressing at the end of the > > text input to GtkEntry. The obvious way is conecting the callback to > > the "activate" signal, but for some

GtkFileChooserButton::file-set

2012-10-03 Thread Nicola Fontana
I need to catch when the file has changed in a GtkFileChooserButton. I thought connecting to "file-set" was enough but this signal is not emitted when the user cancels (although bug 555351 does not agree [1]). Here is the proof: #include int main(int argc, char **argv) { GtkWidget *window,

Re: Handle "Enter" pressing at GtkEntry

2012-10-03 Thread David Nečas
On Wed, Oct 03, 2012 at 09:42:24AM -0500, Yury Alyaev wrote: > What is the right way to catch "Enter" pressing at the end of the > text input to GtkEntry. The obvious way is conecting the callback to > the "activate" signal, but for some reason documentation says > "Applications should not connect

Handle "Enter" pressing at GtkEntry

2012-10-03 Thread Yury Alyaev
Hello all, What is the right way to catch "Enter" pressing at the end of the text input to GtkEntry. The obvious way is conecting the callback to the "activate" signal, but for some reason documentation says "Applications should not connect to it". The alternative method is just to catch key