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
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
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
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
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
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,
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
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