From: mdw Date: Thu, 3 Dec 1998 00:39:45 +0000 (+0000) Subject: Force focus when starting up. X-Git-Tag: 1.1.0~8 X-Git-Url: https://git.distorted.org.uk/~mdw/xtoys/commitdiff_plain/7347b0d903928529441e26e41433b9884977eb0f Force focus when starting up. --- diff --git a/xgetline.c b/xgetline.c index ed621ae..a7c505f 100644 --- a/xgetline.c +++ b/xgetline.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: xgetline.c,v 1.4 1998/11/30 22:36:47 mdw Exp $ + * $Id: xgetline.c,v 1.5 1998/12/03 00:39:44 mdw Exp $ * * Fetch a line of text from the user * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: xgetline.c,v $ + * Revision 1.5 1998/12/03 00:39:44 mdw + * Force focus when starting up. + * * Revision 1.4 1998/11/30 22:36:47 mdw * Tidy up tabbing in help texts very slightly. * @@ -53,6 +56,7 @@ #include #include +#include "mdwfocus.h" #include "mdwopt.h" #include "quis.h" @@ -328,6 +332,8 @@ int main(int argc, char *argv[]) /* --- Go go go --- */ + gtk_widget_realize(win); + mdwfocus(win); gtk_widget_show(win); gtk_main(); diff --git a/xshutdown.c b/xshutdown.c index a21dab9..f76dc39 100644 --- a/xshutdown.c +++ b/xshutdown.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: xshutdown.c,v 1.3 1998/11/30 22:36:49 mdw Exp $ + * $Id: xshutdown.c,v 1.4 1998/12/03 00:39:45 mdw Exp $ * * Pretty GTK interface to waking up an xwait * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: xshutdown.c,v $ + * Revision 1.4 1998/12/03 00:39:45 mdw + * Force focus when starting up. + * * Revision 1.3 1998/11/30 22:36:49 mdw * Tidy up tabbing in help texts very slightly. * @@ -53,6 +56,7 @@ #include #include +#include "mdwfocus.h" #include "mdwopt.h" #include "quis.h" #include "xwait.h" @@ -229,6 +233,8 @@ int main(int argc, char *argv[]) /* --- Make everything work --- */ + gtk_widget_realize(win); + mdwfocus(win); gtk_widget_show(win); gtk_main(); exit(EXIT_FAILURE); @@ -276,6 +282,8 @@ int main(int argc, char *argv[]) /* --- Show the completed window --- */ + gtk_widget_realize(win); + mdwfocus(win); gtk_widget_show(win); }