]> Pileus Git - ~andy/gtk/blob - gtk/gtkarrow.c
main part for GtkArgSetFunc/GtkArgGetFunc implementation.
[~andy/gtk] / gtk / gtkarrow.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 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 Free
16  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18 #include "gtkarrow.h"
19
20
21 #define MIN_ARROW_SIZE  11
22
23
24 static void gtk_arrow_class_init (GtkArrowClass  *klass);
25 static void gtk_arrow_init       (GtkArrow       *arrow);
26 static gint gtk_arrow_expose     (GtkWidget      *widget,
27                                   GdkEventExpose *event);
28
29
30 guint
31 gtk_arrow_get_type ()
32 {
33   static guint arrow_type = 0;
34
35   if (!arrow_type)
36     {
37       GtkTypeInfo arrow_info =
38       {
39         "GtkArrow",
40         sizeof (GtkArrow),
41         sizeof (GtkArrowClass),
42         (GtkClassInitFunc) gtk_arrow_class_init,
43         (GtkObjectInitFunc) gtk_arrow_init,
44         (GtkArgSetFunc) NULL,
45         (GtkArgGetFunc) NULL,
46       };
47
48       arrow_type = gtk_type_unique (gtk_misc_get_type (), &arrow_info);
49     }
50
51   return arrow_type;
52 }
53
54 static void
55 gtk_arrow_class_init (GtkArrowClass *class)
56 {
57   GtkWidgetClass *widget_class;
58
59   widget_class = (GtkWidgetClass*) class;
60
61   widget_class->expose_event = gtk_arrow_expose;
62 }
63
64 static void
65 gtk_arrow_init (GtkArrow *arrow)
66 {
67   GTK_WIDGET_SET_FLAGS (arrow, GTK_NO_WINDOW);
68
69   arrow->arrow_type = GTK_ARROW_RIGHT;
70   arrow->shadow_type = GTK_SHADOW_OUT;
71 }
72
73 GtkWidget*
74 gtk_arrow_new (GtkArrowType  arrow_type,
75                GtkShadowType shadow_type)
76 {
77   GtkArrow *arrow;
78
79   arrow = gtk_type_new (gtk_arrow_get_type ());
80
81   GTK_WIDGET (arrow)->requisition.width = MIN_ARROW_SIZE + GTK_MISC (arrow)->xpad * 2;
82   GTK_WIDGET (arrow)->requisition.height = MIN_ARROW_SIZE + GTK_MISC (arrow)->ypad * 2;
83
84   arrow->arrow_type = arrow_type;
85   arrow->shadow_type = shadow_type;
86
87   return GTK_WIDGET (arrow);
88 }
89
90 void
91 gtk_arrow_set (GtkArrow      *arrow,
92                GtkArrowType   arrow_type,
93                GtkShadowType  shadow_type)
94 {
95   g_return_if_fail (arrow != NULL);
96   g_return_if_fail (GTK_IS_ARROW (arrow));
97
98   if (((GtkArrowType) arrow->arrow_type != arrow_type) ||
99       ((GtkShadowType) arrow->shadow_type != shadow_type))
100     {
101       arrow->arrow_type = arrow_type;
102       arrow->shadow_type = shadow_type;
103
104       if (GTK_WIDGET_DRAWABLE (arrow))
105         {
106           gdk_window_clear_area (GTK_WIDGET (arrow)->window,
107                                  GTK_WIDGET (arrow)->allocation.x + 1,
108                                  GTK_WIDGET (arrow)->allocation.y + 1,
109                                  GTK_WIDGET (arrow)->allocation.width - 2,
110                                  GTK_WIDGET (arrow)->allocation.height - 2);
111           gtk_widget_queue_draw (GTK_WIDGET (arrow));
112         }
113     }
114 }
115
116
117 static gint
118 gtk_arrow_expose (GtkWidget      *widget,
119                   GdkEventExpose *event)
120 {
121   GtkArrow *arrow;
122   GtkMisc *misc;
123   GtkShadowType shadow_type;
124   gint width, height;
125   gint x, y;
126   gint extent;
127
128   g_return_val_if_fail (widget != NULL, FALSE);
129   g_return_val_if_fail (GTK_IS_ARROW (widget), FALSE);
130   g_return_val_if_fail (event != NULL, FALSE);
131
132   if (GTK_WIDGET_DRAWABLE (widget))
133     {
134       arrow = GTK_ARROW (widget);
135       misc = GTK_MISC (widget);
136
137       width = widget->allocation.width - misc->xpad * 2;
138       height = widget->allocation.height - misc->ypad * 2;
139       extent = MIN (width, height);
140
141       x = ((widget->allocation.x + misc->xpad) * (1.0 - misc->xalign) +
142            (widget->allocation.x + widget->allocation.width - extent - misc->ypad) * misc->xalign);
143       y = ((widget->allocation.y + misc->ypad) * (1.0 - misc->yalign) +
144            (widget->allocation.y + widget->allocation.height - extent - misc->ypad) * misc->yalign);
145
146       shadow_type = arrow->shadow_type;
147
148       if (widget->state == GTK_STATE_ACTIVE)
149         {
150           if (shadow_type == GTK_SHADOW_IN)
151             shadow_type = GTK_SHADOW_OUT;
152           else if (shadow_type == GTK_SHADOW_OUT)
153             shadow_type = GTK_SHADOW_IN;
154           else if (shadow_type == GTK_SHADOW_ETCHED_IN)
155             shadow_type = GTK_SHADOW_ETCHED_OUT;
156           else if (shadow_type == GTK_SHADOW_ETCHED_OUT)
157             shadow_type = GTK_SHADOW_ETCHED_IN;
158         }
159
160       gtk_draw_arrow (widget->style, widget->window,
161                       widget->state, shadow_type, arrow->arrow_type, TRUE,
162                       x, y, extent, extent);
163     }
164
165   return FALSE;
166 }