]> Pileus Git - ~andy/gtk/blob - tests/testellipsise.c
Updated test for api change.
[~andy/gtk] / tests / testellipsise.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser 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  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free
16  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 /*
20  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
21  * file for a list of people on the GTK+ Team.  See the ChangeLog
22  * files for a list of changes.  These files are distributed with
23  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
24  */
25
26 #include <gtk/gtk.h>
27
28 static void
29 redraw_event_box (GtkWidget *widget)
30 {
31   while (widget)
32     {
33       if (GTK_IS_EVENT_BOX (widget))
34         {
35           gtk_widget_queue_draw (widget);
36           break;
37         }
38
39       widget = gtk_widget_get_parent (widget);
40     }
41 }
42
43 static void
44 combo_changed_cb (GtkWidget *combo,
45                   gpointer   data)
46 {
47   GtkWidget *label = GTK_WIDGET (data);
48   gint active;
49
50   active = gtk_combo_box_get_active (GTK_COMBO_BOX (combo));
51   gtk_label_set_ellipsize (GTK_LABEL (label), (PangoEllipsizeMode)active);
52   redraw_event_box (label);
53 }
54
55 static void
56 scale_changed_cb (GtkRange *range,
57                   gpointer   data)
58 {
59   double angle = gtk_range_get_value (range);
60   GtkWidget *label = GTK_WIDGET (data);
61   
62   gtk_label_set_angle (GTK_LABEL (label), angle);
63   redraw_event_box (label);
64 }
65
66 static gboolean
67 ebox_expose_event_cb (GtkWidget      *widget,
68                       GdkEventExpose *event,
69                       gpointer        data)
70 {
71   PangoLayout *layout;
72   const double dashes[] = { 6, 18 };
73   GtkRequisition minimum_size, natural_size;
74   GtkWidget *label = data;
75   cairo_t *cr;
76   gint x, y;
77
78   cr = gdk_cairo_create (widget->window);
79   cairo_translate (cr, -0.5, -0.5);
80   cairo_set_line_width (cr, 1);
81
82   cairo_set_source_rgb (cr, 1, 1, 1);
83   cairo_rectangle (cr, 0, 0, widget->allocation.width, widget->allocation.height);
84   cairo_fill (cr);
85
86   gtk_widget_translate_coordinates (label, widget, 0, 0, &x, &y);
87   layout = gtk_widget_create_pango_layout (widget, "");
88
89   gtk_extended_layout_get_desired_size (GTK_EXTENDED_LAYOUT (label), FALSE,
90                                         &minimum_size, &natural_size); 
91
92   pango_layout_set_markup (layout,
93     "<span color='#c33'>\342\227\217 requisition</span>\n"
94     "<span color='#3c3'>\342\227\217 natural size</span>\n"
95     "<span color='#33c'>\342\227\217 allocation</span>", -1);
96
97   pango_cairo_show_layout (cr, layout);
98   g_object_unref (layout);
99
100   cairo_rectangle (cr,
101                    x + 0.5 * (label->allocation.width - minimum_size.width),
102                    y + 0.5 * (label->allocation.height - minimum_size.height),
103                    minimum_size.width, minimum_size.height);
104   cairo_set_source_rgb (cr, 0.8, 0.2, 0.2);
105   cairo_set_dash (cr, NULL, 0, 0);
106   cairo_stroke (cr);
107
108   cairo_rectangle (cr, x, y, label->allocation.width, label->allocation.height);
109   cairo_set_source_rgb (cr, 0.2, 0.2, 0.8);
110   cairo_set_dash (cr, dashes, 2, 0.5);
111   cairo_stroke (cr);
112
113   cairo_rectangle (cr,
114                    x + 0.5 * (label->allocation.width - natural_size.width),
115                    y + 0.5 * (label->allocation.height - natural_size.height),
116                    natural_size.width, natural_size.height);
117   cairo_set_source_rgb (cr, 0.2, 0.8, 0.2);
118   cairo_set_dash (cr, dashes, 2, 12.5);
119   cairo_stroke (cr);
120
121   cairo_destroy (cr);
122
123   return FALSE;
124 }
125
126 int
127 main (int argc, char *argv[])
128 {
129   GtkWidget *window, *vbox, *label;
130   GtkWidget *combo, *scale, *align, *ebox;
131
132   gtk_init (&argc, &argv);
133
134   window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
135   gtk_container_set_border_width (GTK_CONTAINER (window), 12);
136   gtk_window_set_default_size (GTK_WINDOW (window), 400, 300);
137   g_signal_connect (window, "destroy", G_CALLBACK (gtk_main_quit), NULL);
138
139   vbox = gtk_vbox_new (FALSE, 6);
140   gtk_container_add (GTK_CONTAINER (window), vbox);
141
142   combo = gtk_combo_box_new_text ();
143   scale = gtk_hscale_new_with_range (0, 360, 1);
144   label = gtk_label_new ("This label may be ellipsized\nto make it fit.");
145
146   gtk_combo_box_append_text (GTK_COMBO_BOX (combo), "NONE");
147   gtk_combo_box_append_text (GTK_COMBO_BOX (combo), "START");
148   gtk_combo_box_append_text (GTK_COMBO_BOX (combo), "MIDDLE");
149   gtk_combo_box_append_text (GTK_COMBO_BOX (combo), "END");
150   gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0);
151
152   align = gtk_alignment_new (0.5, 0.5, 0.0, 0.0);
153   gtk_container_add (GTK_CONTAINER (align), label);
154
155   ebox = gtk_event_box_new ();
156   gtk_widget_set_app_paintable (ebox, TRUE);
157   gtk_container_add (GTK_CONTAINER (ebox), align);
158
159   gtk_box_pack_start (GTK_BOX (vbox), combo, FALSE, TRUE, 0);
160   gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, TRUE, 0);
161   gtk_box_pack_start (GTK_BOX (vbox), ebox, TRUE, TRUE, 0);
162
163   g_object_set_data (G_OBJECT (label), "combo", combo);
164
165   g_signal_connect (combo, "changed", G_CALLBACK (combo_changed_cb), label);
166   g_signal_connect (scale, "value-changed", G_CALLBACK (scale_changed_cb), label);
167   g_signal_connect (ebox, "expose-event", G_CALLBACK (ebox_expose_event_cb), label);
168
169   gtk_widget_show_all (window);
170
171   gtk_main ();
172
173   return 0;
174 }