]> Pileus Git - ~andy/gtk/blob - tests/testframe.c
Merge branch 'windows_list'
[~andy/gtk] / tests / testframe.c
1 /* testframe.c
2  * Copyright (C) 2007  Xan López <xan@gnome.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #include <gtk/gtk.h>
21 #include <math.h>
22
23 static void
24 spin_ythickness_cb (GtkSpinButton *spin, gpointer user_data)
25 {
26   GtkWidget *frame = user_data;
27   GtkRcStyle *rcstyle;
28
29   rcstyle = gtk_rc_style_new ();
30   rcstyle->xthickness = GTK_WIDGET (frame)->style->xthickness;
31   rcstyle->ythickness = gtk_spin_button_get_value (spin);
32   gtk_widget_modify_style (frame, rcstyle);
33
34   g_object_unref (rcstyle);
35 }
36
37 static void
38 spin_xthickness_cb (GtkSpinButton *spin, gpointer user_data)
39 {
40   GtkWidget *frame = user_data;
41   GtkRcStyle *rcstyle;
42
43   rcstyle = gtk_rc_style_new ();
44   rcstyle->xthickness = gtk_spin_button_get_value (spin);
45   rcstyle->ythickness = GTK_WIDGET (frame)->style->ythickness;
46   gtk_widget_modify_style (frame, rcstyle);
47
48   g_object_unref (rcstyle);
49 }
50
51 /* Function to normalize rounding errors in FP arithmetic to
52    our desired limits */
53
54 #define EPSILON 1e-10
55
56 static gdouble
57 double_normalize (gdouble n)
58 {
59   if (fabs (1.0 - n) < EPSILON)
60     n = 1.0;
61   else if (n < EPSILON)
62     n = 0.0;
63
64   return n;
65 }
66
67 static void
68 spin_xalign_cb (GtkSpinButton *spin, GtkFrame *frame)
69 {
70   gdouble xalign;
71   gfloat yalign;
72
73   xalign = double_normalize (gtk_spin_button_get_value (spin));
74   gtk_frame_get_label_align (frame, NULL, &yalign);
75   gtk_frame_set_label_align (frame, xalign, yalign);
76 }
77
78 static void
79 spin_yalign_cb (GtkSpinButton *spin, GtkFrame *frame)
80 {
81   gdouble yalign;
82   gfloat xalign;
83
84   yalign = double_normalize (gtk_spin_button_get_value (spin));
85   gtk_frame_get_label_align (frame, &xalign, NULL);
86   gtk_frame_set_label_align (frame, xalign, yalign);
87 }
88
89 int main (int argc, char **argv)
90 {
91   GtkWidget *window, *frame, *xthickness_spin, *ythickness_spin, *vbox;
92   GtkWidget *xalign_spin, *yalign_spin, *button, *table, *label;
93   gfloat xalign, yalign;
94
95   gtk_init (&argc, &argv);
96
97   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
98   gtk_container_set_border_width (GTK_CONTAINER (window), 5);
99   gtk_window_set_default_size (GTK_WINDOW (window), 300, 300);
100
101   g_signal_connect (G_OBJECT (window), "delete-event", gtk_main_quit, NULL);
102
103   vbox = gtk_vbox_new (FALSE, 5);
104   gtk_container_add (GTK_CONTAINER (window), vbox);
105
106   frame = gtk_frame_new ("Testing");
107   gtk_box_pack_start (GTK_BOX (vbox), frame, TRUE, TRUE, 0);
108
109   button = gtk_button_new_with_label ("Hello!");
110   gtk_container_add (GTK_CONTAINER (frame), button);
111
112   table = gtk_table_new (4, 2, FALSE);
113   gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
114
115   /* Spin to control xthickness */
116   label = gtk_label_new ("xthickness: ");
117   gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, 0, 1);
118
119   xthickness_spin = gtk_spin_button_new_with_range (0, 250, 1);
120   g_signal_connect (G_OBJECT (xthickness_spin), "value-changed", G_CALLBACK (spin_xthickness_cb), frame);
121   gtk_spin_button_set_value (GTK_SPIN_BUTTON (xthickness_spin), frame->style->xthickness);
122   gtk_table_attach_defaults (GTK_TABLE (table), xthickness_spin, 1, 2, 0, 1);
123
124   /* Spin to control ythickness */
125   label = gtk_label_new ("ythickness: ");
126   gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, 1, 2);
127
128   ythickness_spin = gtk_spin_button_new_with_range (0, 250, 1);
129   g_signal_connect (G_OBJECT (ythickness_spin), "value-changed", G_CALLBACK (spin_ythickness_cb), frame);
130   gtk_spin_button_set_value (GTK_SPIN_BUTTON (ythickness_spin), frame->style->ythickness);
131   gtk_table_attach_defaults (GTK_TABLE (table), ythickness_spin, 1, 2, 1, 2);
132
133   gtk_frame_get_label_align (GTK_FRAME (frame), &xalign, &yalign);
134
135   /* Spin to control label xalign */
136   label = gtk_label_new ("xalign: ");
137   gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, 2, 3);
138
139   xalign_spin = gtk_spin_button_new_with_range (0.0, 1.0, 0.1);
140   g_signal_connect (G_OBJECT (xalign_spin), "value-changed", G_CALLBACK (spin_xalign_cb), frame);
141   gtk_spin_button_set_value (GTK_SPIN_BUTTON (xalign_spin), xalign);
142   gtk_table_attach_defaults (GTK_TABLE (table), xalign_spin, 1, 2, 2, 3);
143
144   /* Spin to control label yalign */
145   label = gtk_label_new ("yalign: ");
146   gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, 3, 4);
147
148   yalign_spin = gtk_spin_button_new_with_range (0.0, 1.0, 0.1);
149   g_signal_connect (G_OBJECT (yalign_spin), "value-changed", G_CALLBACK (spin_yalign_cb), frame);
150   gtk_spin_button_set_value (GTK_SPIN_BUTTON (yalign_spin), yalign);
151   gtk_table_attach_defaults (GTK_TABLE (table), yalign_spin, 1, 2, 3, 4);
152
153   gtk_widget_show_all (window);
154
155   gtk_main ();
156
157   return 0;
158 }