]> Pileus Git - ~andy/gtk/blob - demos/gtk-demo/sizegroup.c
Use gtk_box_new() instead gtk_[v|h]box_new()
[~andy/gtk] / demos / gtk-demo / sizegroup.c
1 /* Size Groups
2  *
3  * GtkSizeGroup provides a mechanism for grouping a number of
4  * widgets together so they all request the same amount of space.
5  * This is typically useful when you want a column of widgets to 
6  * have the same size, but you can't use a GtkTable widget.
7  * 
8  * Note that size groups only affect the amount of space requested,
9  * not the size that the widgets finally receive. If you want the
10  * widgets in a GtkSizeGroup to actually be the same size, you need
11  * to pack them in such a way that they get the size they request
12  * and not more. For example, if you are packing your widgets
13  * into a table, you would not include the GTK_FILL flag.
14  */
15
16 #include <gtk/gtk.h>
17
18 static GtkWidget *window = NULL;
19
20 /* Convenience function to create a combo box holding a number of strings
21  */
22 GtkWidget *
23 create_combo_box (const char **strings)
24 {
25   GtkWidget *combo_box;
26   const char **str;
27
28   combo_box = gtk_combo_box_text_new ();
29   
30   for (str = strings; *str; str++)
31     gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combo_box), *str);
32
33   gtk_combo_box_set_active (GTK_COMBO_BOX (combo_box), 0);
34
35   return combo_box;
36 }
37
38 static void
39 add_row (GtkTable     *table,
40          int           row,
41          GtkSizeGroup *size_group,
42          const char   *label_text,
43          const char  **options)
44 {
45   GtkWidget *combo_box;
46   GtkWidget *label;
47
48   label = gtk_label_new_with_mnemonic (label_text);
49   gtk_misc_set_alignment (GTK_MISC (label), 0, 1);
50   gtk_table_attach (GTK_TABLE (table), label,
51                     0, 1,                  row, row + 1,
52                     GTK_EXPAND | GTK_FILL, 0,
53                     0,                     0);
54   
55   combo_box = create_combo_box (options);
56   gtk_label_set_mnemonic_widget (GTK_LABEL (label), combo_box);
57   gtk_size_group_add_widget (size_group, combo_box);
58   gtk_table_attach (GTK_TABLE (table), combo_box,
59                     1, 2,                  row, row + 1,
60                     0,                     0,
61                     0,                     0);
62 }
63
64 static void
65 toggle_grouping (GtkToggleButton *check_button,
66                  GtkSizeGroup    *size_group)
67 {
68   GtkSizeGroupMode new_mode;
69
70   /* GTK_SIZE_GROUP_NONE is not generally useful, but is useful
71    * here to show the effect of GTK_SIZE_GROUP_HORIZONTAL by
72    * contrast.
73    */
74   if (gtk_toggle_button_get_active (check_button))
75     new_mode = GTK_SIZE_GROUP_HORIZONTAL;
76   else
77     new_mode = GTK_SIZE_GROUP_NONE;
78   
79   gtk_size_group_set_mode (size_group, new_mode);
80 }
81
82 GtkWidget *
83 do_sizegroup (GtkWidget *do_widget)
84 {
85   GtkWidget *content_area;
86   GtkWidget *table;
87   GtkWidget *frame;
88   GtkWidget *vbox;
89   GtkWidget *check_button;
90   GtkSizeGroup *size_group;
91
92   static const char *color_options[] = {
93     "Red", "Green", "Blue", NULL
94   };
95   
96   static const char *dash_options[] = {
97     "Solid", "Dashed", "Dotted", NULL
98   };
99   
100   static const char *end_options[] = {
101     "Square", "Round", "Arrow", NULL
102   };
103   
104   if (!window)
105     {
106       window = gtk_dialog_new_with_buttons ("GtkSizeGroup",
107                                             GTK_WINDOW (do_widget),
108                                             0,
109                                             GTK_STOCK_CLOSE,
110                                             GTK_RESPONSE_NONE,
111                                             NULL);
112       gtk_window_set_resizable (GTK_WINDOW (window), FALSE);
113       
114       g_signal_connect (window, "response",
115                         G_CALLBACK (gtk_widget_destroy), NULL);
116       g_signal_connect (window, "destroy",
117                         G_CALLBACK (gtk_widget_destroyed), &window);
118
119       content_area = gtk_dialog_get_content_area (GTK_DIALOG (window));
120
121       vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE, 5);
122       gtk_box_pack_start (GTK_BOX (content_area), vbox, TRUE, TRUE, 0);
123       gtk_container_set_border_width (GTK_CONTAINER (vbox), 5);
124
125       size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
126       
127       /* Create one frame holding color options
128        */
129       frame = gtk_frame_new ("Color Options");
130       gtk_box_pack_start (GTK_BOX (vbox), frame, TRUE, TRUE, 0);
131
132       table = gtk_table_new (2, 2, FALSE);
133       gtk_container_set_border_width (GTK_CONTAINER (table), 5);
134       gtk_table_set_row_spacings (GTK_TABLE (table), 5);
135       gtk_table_set_col_spacings (GTK_TABLE (table), 10);
136       gtk_container_add (GTK_CONTAINER (frame), table);
137
138       add_row (GTK_TABLE (table), 0, size_group, "_Foreground", color_options);
139       add_row (GTK_TABLE (table), 1, size_group, "_Background", color_options);
140
141       /* And another frame holding line style options
142        */
143       frame = gtk_frame_new ("Line Options");
144       gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
145
146       table = gtk_table_new (2, 2, FALSE);
147       gtk_container_set_border_width (GTK_CONTAINER (table), 5);
148       gtk_table_set_row_spacings (GTK_TABLE (table), 5);
149       gtk_table_set_col_spacings (GTK_TABLE (table), 10);
150       gtk_container_add (GTK_CONTAINER (frame), table);
151
152       add_row (GTK_TABLE (table), 0, size_group, "_Dashing", dash_options);
153       add_row (GTK_TABLE (table), 1, size_group, "_Line ends", end_options);
154
155       /* And a check button to turn grouping on and off */
156       check_button = gtk_check_button_new_with_mnemonic ("_Enable grouping");
157       gtk_box_pack_start (GTK_BOX (vbox), check_button, FALSE, FALSE, 0);
158       
159       gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (check_button), TRUE);
160       g_signal_connect (check_button, "toggled",
161                         G_CALLBACK (toggle_grouping), size_group);
162     }
163
164   if (!gtk_widget_get_visible (window))
165     gtk_widget_show_all (window);
166   else
167     gtk_widget_destroy (window);
168
169   return window;
170 }