0.8.10claws52
[claws.git] / src / gtk / colorlabel.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2001-2003 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 <gdk/gdkx.h>
29 #include <gtk/gtkwidget.h>
30 #include <gtk/gtkpixmap.h>
31 #include <gtk/gtkmenu.h>
32 #include <gtk/gtkcheckmenuitem.h>
33 #include <gtk/gtklabel.h>
34 #include <gtk/gtkmenuitem.h>
35 #include <gtk/gtkalignment.h>
36 #include <gtk/gtkhbox.h>
37 #include <gtk/gtkwindow.h>
38 #include <gtk/gtkdrawingarea.h>
39
40 #include "intl.h"
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_COLORS_ELEMS (sizeof label_colors / sizeof label_colors[0])
82
83 #define G_RETURN_VAL_IF_INVALID_COLOR(color, val) \
84         g_return_val_if_fail((color) >= 0 && (color) < LABEL_COLORS_ELEMS, (val))
85
86 static void colorlabel_recreate        (gint);
87 static void colorlabel_recreate_label  (gint);
88
89 gint colorlabel_get_color_count(void)
90 {
91         return LABEL_COLORS_ELEMS;
92 }
93
94 GdkColor colorlabel_get_color(gint color_index)
95 {
96         GdkColor invalid = { 0 };
97
98         G_RETURN_VAL_IF_INVALID_COLOR(color_index, invalid);
99
100         return label_colors[color_index].color;
101 }
102
103 gchar *colorlabel_get_color_text(gint color_index)
104 {
105         G_RETURN_VAL_IF_INVALID_COLOR(color_index, NULL);
106
107         colorlabel_recreate_label(color_index);
108         return label_colors[color_index].label;
109 }
110
111 static gboolean colorlabel_drawing_area_expose_event_cb
112         (GtkWidget *widget, GdkEventExpose *expose, gpointer data)
113 {
114         GdkDrawable *drawable = widget->window;
115         gulong c = (gulong) GPOINTER_TO_INT(data);
116         GdkColor color;
117         GdkGC *gc;
118
119         color.red   = ((c >> 16UL) & 0xFFUL) << 8UL;
120         color.green = ((c >>  8UL) & 0xFFUL) << 8UL;
121         color.blue  = ((c)         & 0xFFUL) << 8UL;
122
123         gdk_colormap_alloc_color(gtk_widget_get_colormap(widget), &color, FALSE, TRUE);
124
125         gc = gdk_gc_new(drawable);
126
127         gdk_gc_set_foreground(gc, &color);
128         gdk_draw_rectangle(drawable, gc,
129                            TRUE, 0, 0, widget->allocation.width,
130                            widget->allocation.height);
131         gdk_draw_rectangle(drawable, widget->style->black_gc,
132                            FALSE, 0, 0, widget->allocation.width,
133                            widget->allocation.height);
134
135         gdk_gc_unref(gc);                          
136
137         return FALSE;
138 }
139
140 static GtkWidget *colorlabel_create_color_widget(GdkColor color)
141 {
142         GtkWidget *widget;
143
144         widget = gtk_drawing_area_new();
145         gtk_drawing_area_size(GTK_DRAWING_AREA(widget), 16, 16);
146
147 #define CL(x)           (((gulong) (x) >> (gulong) 8) & 0xFFUL) 
148 #define CR(r, g, b)     ((CL(r) << (gulong) 16) | \
149                          (CL(g) << (gulong)  8) | \
150                          (CL(b)))
151
152         gtk_signal_connect(GTK_OBJECT(widget), "expose_event", 
153                            GTK_SIGNAL_FUNC
154                                 (colorlabel_drawing_area_expose_event_cb),
155                            GINT_TO_POINTER
156                                 ((gint)CR(color.red, color.green, color.blue)));
157
158         return widget;
159 }
160
161 /* XXX: this function to check if menus with colors and labels should
162  * be recreated */
163 gboolean colorlabel_changed(void)
164 {
165         gint n;
166
167         for (n = 0; n < LABEL_COLORS_ELEMS; n++) {
168                 if (label_colors[n].changed) 
169                         return TRUE;
170         }
171
172         return FALSE;
173 }
174
175 /* XXX: colorlabel_recreate_XXX are there to make sure everything
176  * is initialized ok, without having to call a global _xxx_init_
177  * function */
178 static void colorlabel_recreate_color(gint color)
179 {
180         GtkWidget *widget;
181
182         if (!(label_colors[color].changed & LCCF_COLOR))
183                 return;
184
185         widget = colorlabel_create_color_widget(label_colors[color].color);
186         g_return_if_fail(widget);
187
188         if (label_colors[color].widget) 
189                 gtk_widget_destroy(label_colors[color].widget);
190
191         label_colors[color].widget = widget;            
192         label_colors[color].changed &= ~LCCF_COLOR;
193 }
194
195 static void colorlabel_recreate_label(gint color)
196 {
197         if (!label_colors[color].changed & LCCF_LABEL)
198                 return;
199
200         if (label_colors[color].label == NULL) 
201                 label_colors[color].label = g_strdup(gettext(labels[color]));
202
203         label_colors[color].changed &= ~LCCF_LABEL;
204 }
205
206 /* XXX: call this function everytime when you're doing important
207  * stuff with the label_colors[] array */
208 static void colorlabel_recreate(gint color)
209 {
210         colorlabel_recreate_label(color);
211         colorlabel_recreate_color(color);
212 }
213
214 static void colorlabel_recreate_all(void)
215 {
216         gint n;
217
218         for ( n = 0; n < LABEL_COLORS_ELEMS; n++) 
219                 colorlabel_recreate(n);
220 }
221
222 /* colorlabel_create_check_color_menu_item() - creates a color
223  * menu item with a check box */
224 GtkWidget *colorlabel_create_check_color_menu_item(gint color_index)
225 {
226         GtkWidget *label; 
227         GtkWidget *hbox; 
228         GtkWidget *align; 
229         GtkWidget *item;
230
231         G_RETURN_VAL_IF_INVALID_COLOR(color_index, NULL);
232
233         item  = gtk_check_menu_item_new();
234
235         colorlabel_recreate(color_index);
236
237         /* XXX: gnome-core::panel::menu.c is a great example of
238          * how to create pixmap menus */
239         label = gtk_label_new(label_colors[color_index].label);
240
241         gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
242         gtk_widget_show(label);
243         hbox = gtk_hbox_new(FALSE, 0);
244         gtk_widget_show(hbox);
245         gtk_container_add(GTK_CONTAINER(item), hbox);
246
247         align = gtk_alignment_new(0.5, 0.5, 0.0, 0.0);
248         gtk_widget_show(align);
249         gtk_container_set_border_width(GTK_CONTAINER(align), 1);
250
251         gtk_container_add(GTK_CONTAINER(align), label_colors[color_index].widget);
252         gtk_widget_show(label_colors[color_index].widget);
253         gtk_widget_set_usize(align, 16, 16);
254
255         gtk_box_pack_start(GTK_BOX(hbox), align, FALSE, FALSE, 0);
256         gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 4);
257
258         return item;
259 }
260
261 /* colorlabel_create_color_menu() - creates a color menu without 
262  * checkitems, probably for use in combo items */
263 GtkWidget *colorlabel_create_color_menu(void)
264 {
265         GtkWidget *label; 
266         GtkWidget *hbox; 
267         GtkWidget *align; 
268         GtkWidget *item;
269         GtkWidget *menu;
270         gint i;
271
272         colorlabel_recreate_all();
273
274         /* create the menu items. each item has its color code attached */
275         menu = gtk_menu_new();
276         gtk_object_set_data(GTK_OBJECT(menu), "label_color_menu", menu);
277
278         item = gtk_menu_item_new_with_label(_("None"));
279         gtk_menu_append(GTK_MENU(menu), item);
280         gtk_object_set_data(GTK_OBJECT(item), "color", GUINT_TO_POINTER(0));
281         gtk_widget_show(item);
282         
283         /* and the color items */
284         for (i = 0; i < LABEL_COLORS_ELEMS; i++) {
285                 GtkWidget *widget = colorlabel_create_color_widget(label_colors[i].color);
286
287                 item  = gtk_menu_item_new();
288                 gtk_object_set_data(GTK_OBJECT(item), "color", GUINT_TO_POINTER(i + 1));
289
290                 label = gtk_label_new(label_colors[i].label);
291                 
292                 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
293                 gtk_widget_show(label);
294                 hbox = gtk_hbox_new(FALSE, 0);
295                 gtk_widget_show(hbox);
296                 gtk_container_add(GTK_CONTAINER(item), hbox);
297
298                 align = gtk_alignment_new(0.5, 0.5, 0.0, 0.0);
299                 gtk_widget_show(align);
300                 gtk_container_set_border_width(GTK_CONTAINER(align), 1);
301
302                 gtk_container_add(GTK_CONTAINER(align), widget);
303                 gtk_widget_show(widget);
304                 gtk_widget_set_usize(align, 16, 16);
305
306                 gtk_box_pack_start(GTK_BOX(hbox), align, FALSE, FALSE, 0);
307                 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 4);
308                 
309                 gtk_menu_append(GTK_MENU(menu), item);
310                 gtk_widget_show(item);
311         }
312
313         gtk_widget_show(menu);
314
315         return menu;
316 }
317
318 guint colorlabel_get_color_menu_active_item(GtkWidget *menu)
319 {
320         GtkWidget *menuitem;
321         guint      color;
322
323         g_return_val_if_fail
324                 (gtk_object_get_data(GTK_OBJECT(menu), "label_color_menu"), 0);
325         menuitem = gtk_menu_get_active(GTK_MENU(menu));
326         color = GPOINTER_TO_UINT
327                 (gtk_object_get_data(GTK_OBJECT(menuitem), "color"));
328         return color;
329 }
330
331