chiark / gitweb /
Use `dstr_putf' for formatting, rather than `sprintf'.
[mgLib] / msg.c
1 /* -*-c-*-
2  *
3  * $Id: msg.c,v 1.2 1998/12/15 23:48:06 mdw Exp $
4  *
5  * Display a message and get an answer
6  *
7  * (c) 1998 Straylight/Edgeware
8  */
9
10 /*----- Licensing notice --------------------------------------------------* 
11  *
12  * This file is part of the mgLib GTK utilities library.
13  *
14  * mgLib is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2 of the License, or
17  * (at your option) any later version.
18  * 
19  * mgLib is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  * 
24  * You should have received a copy of the GNU General Public License
25  * along with mgLib; if not, write to the Free Software Foundation,
26  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27  */
28
29 /*----- Revision history --------------------------------------------------* 
30  *
31  * $Log: msg.c,v $
32  * Revision 1.2  1998/12/15 23:48:06  mdw
33  * Use `dstr_putf' for formatting, rather than `sprintf'.
34  *
35  * Revision 1.1  1998/12/11 09:44:21  mdw
36  * Initial version.
37  *
38  */
39
40 /*----- Header files ------------------------------------------------------*/
41
42 #include <stdarg.h>
43 #include <stdio.h>
44 #include <stdlib.h>
45 #include <string.h>
46
47 #include <gtk/gtk.h>
48
49 #include <mLib/alloc.h>
50 #include <mLib/dstr.h>
51
52 #include "cancel.h"
53 #include "mdwfocus.h"
54 #include "msg.h"
55
56 /*----- Static variables --------------------------------------------------*/
57
58 static int reply;
59 static int creply;
60
61 /*----- Main code ---------------------------------------------------------*/
62
63 /* --- @msg@ --- *
64  *
65  * Arguments:   @char *buttons@ = the button strings to display
66  *              @char *msg@ = the message skeleton string
67  *
68  * Returns:     Index of the button selected.
69  *
70  * Use:         Displays a message to the user in a nice dialogue box and
71  *              returns the index of the button selected.
72  */
73
74 static int close(GtkWidget *w, gpointer p)
75 {
76   reply = creply;
77   gtk_main_quit();
78   return (1);
79 }
80
81 static void click(GtkWidget *w, gpointer p)
82 {
83   reply = (int)p;
84   gtk_main_quit();
85 }
86
87 int msg(const char *buttons, const char *msg, ...)
88 {
89   GtkWidget *dbox, *w;
90
91   /* --- Make most of the dialogue box --- */
92
93   dbox = gtk_dialog_new();
94   gtk_signal_connect(GTK_OBJECT(dbox), "delete_event",
95                      GTK_SIGNAL_FUNC(close), 0);
96   gtk_box_set_homogeneous(GTK_BOX(GTK_DIALOG(dbox)->action_area), 0);  
97
98   /* --- Set up the message string --- */
99
100   {
101     dstr d;
102     va_list ap;
103
104     va_start(ap, msg);
105     dstr_create(&d);
106     dstr_vputf(&d, msg, ap);
107     va_end(ap);
108     w = gtk_label_new(d.buf);
109     gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dbox)->vbox), w, 1, 1, 0);
110     gtk_window_position(GTK_WINDOW(dbox), GTK_WIN_POS_MOUSE);
111     gtk_widget_show(w);
112     gtk_misc_set_padding(GTK_MISC(w), 16, 16);
113     dstr_destroy(&d);
114   }
115
116   /* --- Set up the buttons --- */
117
118   {
119     char *p = xstrdup(buttons);
120     unsigned f = 0;
121     int i = 0;
122
123     enum {
124       f_ok = 1,
125       f_cancel = 2,
126       f_mdwfocus = 4
127     };
128
129     if (*p == '!') {
130       f |= f_mdwfocus;
131       p++;
132     }
133
134     creply = -1;
135
136     for (p = strtok(p, ","); p; p = strtok(0, ","), i++) {
137       unsigned ff = 0;
138       if (*p == ':') {
139         ff |= f_ok;
140         p++;
141       }
142       if (*p == '~') {
143         ff |= f_cancel;
144         creply = i;
145         p++;
146       }
147       w = gtk_button_new_with_label(p);
148       GTK_WIDGET_SET_FLAGS(w, GTK_CAN_DEFAULT);
149       gtk_box_pack_end(GTK_BOX(GTK_DIALOG(dbox)->action_area), w, 0, 0, 0);
150       gtk_signal_connect(GTK_OBJECT(w), "clicked",
151                          GTK_SIGNAL_FUNC(click), (gpointer)i);
152       if (ff & f_ok)
153         gtk_widget_grab_default(w);
154       if (ff & f_cancel)
155         cancel(GTK_WINDOW(dbox), w);
156       gtk_widget_show(w);
157     }
158     free(p);
159
160     /* --- Preflight checklist --- */
161
162     gtk_widget_realize(dbox);
163     if (f & f_mdwfocus)
164       mdwfocus(dbox);
165
166   }
167
168   /* --- Ready --- */
169
170   gtk_grab_add(GTK_WIDGET(dbox));
171   gtk_widget_show(dbox);
172   gtk_main();
173   gtk_grab_remove(GTK_WIDGET(dbox));
174   gtk_widget_destroy(dbox);
175   return (reply);
176 }
177
178 /*----- That's all, folks -------------------------------------------------*/