2005-02-25 [paul] 1.0.1cvs15.12
[claws.git] / src / gtk / colorlabel.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2001-2004 Hiroyuki Yamamoto & The Sylpheed Claws Team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 /* (alfons) - based on a contribution by Satoshi Nagayasu; revised for colorful 
21  * menu and more Sylpheed integration. The idea to put the code in a separate
22  * file is just that it make it easier to allow "user changeable" label colors.
23  */
24
25 #include "defs.h"
26
27 #include <glib.h>
28 #include <glib/gi18n.h>
29 #include <gtk/gtk.h>
30 #include <gtk/gtkwidget.h>
31 #include <gtk/gtkimage.h>
32 #include <gtk/gtkmenu.h>
33 #include <gtk/gtkcheckmenuitem.h>
34 #include <gtk/gtklabel.h>
35 #include <gtk/gtkmenuitem.h>
36 #include <gtk/gtkalignment.h>
37 #include <gtk/gtkhbox.h>
38 #include <gtk/gtkwindow.h>
39 #include <gtk/gtkdrawingarea.h>
40
41 #include "colorlabel.h"
42 #include "utils.h"
43
44 static gchar *labels[] = {
45         N_("Orange"),
46         N_("Red") ,
47         N_("Pink"),
48         N_("Sky blue"),
49         N_("Blue"),
50         N_("Green"),
51         N_("Brown")
52 };
53
54 typedef enum LabelColorChangeFlags_ {
55         LCCF_COLOR = 1 << 0,
56         LCCF_LABEL = 1 << 1,
57         LCCF_ALL   = LCCF_COLOR | LCCF_LABEL
58 } LabelColorChangeFlags;
59
60 /* XXX: if you add colors, make sure you also check the procmsg.h.
61  * color indices are stored as 3 bits; that explains the max. of 7 colors */
62 static struct 
63 {
64         LabelColorChangeFlags   changed; 
65         GdkColor                color;
66
67         /* XXX: note that the label member is supposed to be dynamically 
68          * allocated and fffreed */
69         gchar                   *label;
70         GtkWidget               *widget;
71 } label_colors[] = {
72         { LCCF_ALL, { 0, 0xffff, (0x99 << 8), 0x0 },            NULL, NULL },
73         { LCCF_ALL, { 0, 0xffff, 0, 0 },                        NULL, NULL },
74         { LCCF_ALL, { 0, 0xffff, (0x66 << 8), 0xffff },         NULL, NULL },
75         { LCCF_ALL, { 0, 0x0, (0xcc << 8), 0xffff },            NULL, NULL },
76         { LCCF_ALL, { 0, 0x0, 0x0, 0xffff },                    NULL, NULL },
77         { LCCF_ALL, { 0, 0x0, 0x99 << 8, 0x0 },                 NULL, NULL },
78         { LCCF_ALL, { 0, 0x66 << 8, 0x33 << 8, 0x33 << 8 },     NULL, NULL }
79 };
80
81 #define LABEL_COLOR_WIDTH       28
82 #define LABEL_COLOR_HEIGHT      16
83
84 #define LABEL_COLORS_ELEMS (sizeof label_colors / sizeof label_colors[0])
85
86 #define G_RETURN_VAL_IF_INVALID_COLOR(color, val) \
87         g_return_val_if_fail((color) >= 0 && (color) < LABEL_COLORS_ELEMS, (val))
88
89 static void colorlabel_recreate        (gint);
90 static void colorlabel_recreate_label  (gint);
91
92 gint colorlabel_get_color_count(void)
93 {
94         return LABEL_COLORS_ELEMS;
95 }
96
97 GdkColor colorlabel_get_color(gint color_index)
98 {
99         GdkColor invalid = { 0 };
100
101         G_RETURN_VAL_IF_INVALID_COLOR(color_index, invalid);
102
103         return label_colors[color_index].color;
104 }
105
106 gchar *colorlabel_get_color_text(gint color_index)
107 {
108         G_RETURN_VAL_IF_INVALID_COLOR(color_index, NULL);
109
110         colorlabel_recreate_label(color_index);
111         return label_colors[color_index].label;
112 }
113
114 static gboolean colorlabel_drawing_area_expose_event_cb
115         (GtkWidget *widget, GdkEventExpose *expose, gpointer data)
116 {
117         GdkDrawable *drawable = widget->window;
118         gulong c = (gulong) GPOINTER_TO_INT(data);
119         GdkColor color;
120         GdkGC *gc;
121
122         color.red   = ((c >> 16UL) & 0xFFUL) << 8UL;
123         color.green = ((c >>  8UL) & 0xFFUL) << 8UL;
124         color.blue  = ((c)         & 0xFFUL) << 8UL;
125
126         gdk_colormap_alloc_color(gtk_widget_get_colormap(widget), &color, FALSE, TRUE);
127
128         gc = gdk_gc_new(drawable);
129
130         gdk_gc_set_foreground(gc, &color);
131         gdk_draw_rectangle(drawable, gc,
132                            TRUE, 0, 0, widget->allocation.width - 1,
133                            widget->allocation.height - 1);
134         gdk_draw_rectangle(drawable, widget->style->black_gc,
135                            FALSE, 0, 0, widget->allocation.width - 1,
136                            widget->allocation.height - 1);
137
138         gdk_gc_unref(gc);                          
139
140         return FALSE;
141 }
142
143 static GtkWidget *colorlabel_create_color_widget(GdkColor color)
144 {
145         GtkWidget *widget;
146
147         widget = gtk_drawing_area_new();
148         gtk_widget_set_size_request(widget, LABEL_COLOR_WIDTH - 2, 
149                                     LABEL_COLOR_HEIGHT - 4);
150
151 #define CL(x)           (((gulong) (x) >> (gulong) 8) & 0xFFUL) 
152 #define CR(r, g, b)     ((CL(r) << (gulong) 16) | \
153                          (CL(g) << (gulong)  8) | \
154                          (CL(b)))
155
156         g_signal_connect(G_OBJECT(widget), "expose_event", 
157                          G_CALLBACK
158                                 (colorlabel_drawing_area_expose_event_cb),
159                          GINT_TO_POINTER
160                                 ((gint)CR(color.red, color.green, color.blue)));
161
162         return widget;
163 }
164
165 /* XXX: this function to check if menus with colors and labels should
166  * be recreated */
167 gboolean colorlabel_changed(void)
168 {
169         gint n;
170
171         for (n = 0; n < LABEL_COLORS_ELEMS; n++) {
172                 if (label_colors[n].changed) 
173                         return TRUE;
174         }
175
176         return FALSE;
177 }
178
179 /* XXX: colorlabel_recreate_XXX are there to make sure everything
180  * is initialized ok, without having to call a global _xxx_init_
181  * function */
182 static void colorlabel_recreate_color(gint color)
183 {
184         GtkWidget *widget;
185
186         if (!(label_colors[color].changed & LCCF_COLOR))
187                 return;
188
189         widget = colorlabel_create_color_widget(label_colors[color].color);
190         g_return_if_fail(widget);
191
192         if (label_colors[color].widget) 
193                 gtk_widget_destroy(label_colors[color].widget);
194
195         label_colors[color].widget = widget;            
196         label_colors[color].changed &= ~LCCF_COLOR;
197 }
198
199 static void colorlabel_recreate_label(gint color)
200 {
201         if (!label_colors[color].changed & LCCF_LABEL)
202                 return;
203
204         if (label_colors[color].label == NULL) 
205                 label_colors[color].label = g_strdup(gettext(labels[color]));
206
207         label_colors[color].changed &= ~LCCF_LABEL;
208 }
209
210 /* XXX: call this function everytime when you're doing important
211  * stuff with the label_colors[] array */
212 static void colorlabel_recreate(gint color)
213 {
214         colorlabel_recreate_label(color);
215         colorlabel_recreate_color(color);
216 }
217
218 static void colorlabel_recreate_all(void)
219 {
220         gint n;
221
222         for ( n = 0; n < LABEL_COLORS_ELEMS; n++) 
223                 colorlabel_recreate(n);
224 }
225
226 /* colorlabel_create_check_color_menu_item() - creates a color
227  * menu item with a check box */
228 GtkWidget *colorlabel_create_check_color_menu_item(gint color_index)
229 {
230         GtkWidget *label; 
231         GtkWidget *hbox; 
232         GtkWidget *align; 
233         GtkWidget *item;
234
235         G_RETURN_VAL_IF_INVALID_COLOR(color_index, NULL);
236
237         item = gtk_check_menu_item_new();
238
239         colorlabel_recreate(color_index);
240
241         /* XXX: gnome-core::panel::menu.c is a great example of
242          * how to create pixmap menus */
243         label = gtk_label_new(label_colors[color_index].label);
244
245         gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
246         gtk_widget_show(label);
247         hbox = gtk_hbox_new(FALSE, 0);
248         gtk_widget_show(hbox);
249         gtk_container_add(GTK_CONTAINER(item), hbox);
250
251         align = gtk_alignment_new(0.5, 0.5, 0.0, 0.0);
252         gtk_widget_show(align);
253         gtk_container_set_border_width(GTK_CONTAINER(align), 1);
254
255         gtk_container_add(GTK_CONTAINER(align), label_colors[color_index].widget);
256         gtk_widget_show(label_colors[color_index].widget);
257         gtk_widget_set_size_request(align, LABEL_COLOR_WIDTH, 
258                                     LABEL_COLOR_HEIGHT);
259
260         gtk_box_pack_start(GTK_BOX(hbox), align, FALSE, FALSE, 0);
261         gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 4);
262
263         return item;
264 }
265
266 /* colorlabel_create_color_menu() - creates a color menu without 
267  * checkitems, probably for use in combo items */
268 GtkWidget *colorlabel_create_color_menu(void)
269 {
270         GtkWidget *label; 
271         GtkWidget *hbox; 
272         GtkWidget *align; 
273         GtkWidget *item;
274         GtkWidget *menu;
275         gint i;
276
277         colorlabel_recreate_all();
278
279         /* create the menu items. each item has its color code attached */
280         menu = gtk_menu_new();
281         g_object_set_data(G_OBJECT(menu), "label_color_menu", menu);
282
283         item = gtk_menu_item_new_with_label(_("None"));
284         gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
285         g_object_set_data(G_OBJECT(item), "color", GUINT_TO_POINTER(0));
286         gtk_widget_show(item);
287
288         /* and the color items */
289         for (i = 0; i < LABEL_COLORS_ELEMS; i++) {
290                 GtkWidget *widget = colorlabel_create_color_widget(label_colors[i].color);
291
292                 item  = gtk_menu_item_new();
293                 g_object_set_data(G_OBJECT(item), "color", GUINT_TO_POINTER(i + 1));
294
295                 label = gtk_label_new(label_colors[i].label);
296                 
297                 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
298                 gtk_widget_show(label);
299                 hbox = gtk_hbox_new(FALSE, 0);
300                 gtk_widget_show(hbox);
301                 gtk_container_add(GTK_CONTAINER(item), hbox);
302
303                 align = gtk_alignment_new(0.5, 0.5, 0.0, 0.0);
304                 gtk_widget_show(align);
305                 gtk_container_set_border_width(GTK_CONTAINER(align), 1);
306
307                 gtk_container_add(GTK_CONTAINER(align), widget);
308                 gtk_widget_show(widget);
309                 gtk_widget_set_size_request(align, LABEL_COLOR_WIDTH, 
310                                             LABEL_COLOR_HEIGHT);
311
312                 gtk_box_pack_start(GTK_BOX(hbox), align, FALSE, FALSE, 0);
313                 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 4);
314                 
315                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
316                 gtk_widget_show(item);
317         }
318
319         gtk_widget_show(menu);
320
321         return menu;
322 }
323
324 guint colorlabel_get_color_menu_active_item(GtkWidget *menu)
325 {
326         GtkWidget *menuitem;
327         guint color;
328
329         menuitem = gtk_menu_get_active(GTK_MENU(menu));
330         color = GPOINTER_TO_UINT
331                 (g_object_get_data(G_OBJECT(menuitem), "color"));
332         return color;
333 }