This commit was manufactured by cvs2svn to create tag 'LAST_STABLE'.
[claws.git] / src / gtkutils.c
blob630e9d42a5ac0c79c841d75b55be99d2b737067a
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2002 Hiroyuki Yamamoto
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.
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.
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.
20 #ifdef HAVE_CONFIG_H
21 # include "config.h"
22 #endif
24 #include <glib.h>
25 #include <gdk/gdkkeysyms.h>
26 #include <gdk/gdk.h>
27 #include <gtk/gtkwidget.h>
28 #include <gtk/gtkhbbox.h>
29 #include <gtk/gtkbutton.h>
30 #include <gtk/gtkctree.h>
31 #include <gtk/gtkcombo.h>
32 #include <gtk/gtkthemes.h>
33 #include <gtk/gtkbindings.h>
34 #include <stdlib.h>
35 #include <stdarg.h>
36 #include <sys/stat.h>
38 #if (HAVE_WCTYPE_H && HAVE_WCHAR_H)
39 # include <wchar.h>
40 # include <wctype.h>
41 #endif
43 #include "intl.h"
44 #include "gtkutils.h"
45 #include "utils.h"
46 #include "gtksctree.h"
47 #include "codeconv.h"
48 #include "stock_pixmap.h"
49 #include "menu.h"
50 #include "prefs_account.h"
52 gint gtkut_get_font_width(GdkFont *font)
54 gchar *str;
55 gint width;
57 if (conv_get_current_charset() == C_UTF_8)
58 str = "Abcdef";
59 else
60 str = _("Abcdef");
62 width = gdk_string_width(font, str);
63 width /= strlen(str);
65 return width;
68 gint gtkut_get_font_height(GdkFont *font)
70 gchar *str;
71 gint height;
73 if (conv_get_current_charset() == C_UTF_8)
74 str = "Abcdef";
75 else
76 str = _("Abcdef");
78 height = gdk_string_height(font, str);
80 return height;
83 GdkFont *gtkut_font_load(const gchar *fontset_name)
85 GdkFont *font;
87 g_return_val_if_fail(fontset_name != NULL, NULL);
89 if (conv_get_current_charset() == C_US_ASCII)
90 font = gtkut_font_load_from_fontset(fontset_name);
91 else
92 font = gdk_fontset_load(fontset_name);
94 return font;
97 GdkFont *gtkut_font_load_from_fontset(const gchar *fontset_name)
99 GdkFont *font = NULL;
101 if (strchr(fontset_name, ',') == NULL) {
102 font = gdk_font_load(fontset_name);
103 } else {
104 gchar **fonts;
105 gint i;
107 fonts = g_strsplit(fontset_name, ",", -1);
108 for (i = 0; fonts[i] != NULL && fonts[i][0] != '\0';
109 i++) {
110 font = gdk_font_load(fonts[i]);
111 if (font) break;
113 g_strfreev(fonts);
116 return font;
119 void gtkut_convert_int_to_gdk_color(gint rgbvalue, GdkColor *color)
121 g_return_if_fail(color != NULL);
123 color->pixel = 0L;
124 color->red = (int) (((gdouble)((rgbvalue & 0xff0000) >> 16) / 255.0) * 65535.0);
125 color->green = (int) (((gdouble)((rgbvalue & 0x00ff00) >> 8) / 255.0) * 65535.0);
126 color->blue = (int) (((gdouble) (rgbvalue & 0x0000ff) / 255.0) * 65535.0);
129 void gtkut_button_set_create(GtkWidget **bbox,
130 GtkWidget **button1, const gchar *label1,
131 GtkWidget **button2, const gchar *label2,
132 GtkWidget **button3, const gchar *label3)
134 g_return_if_fail(bbox != NULL);
135 g_return_if_fail(button1 != NULL);
137 *bbox = gtk_hbutton_box_new();
138 gtk_button_box_set_layout(GTK_BUTTON_BOX(*bbox), GTK_BUTTONBOX_END);
139 gtk_button_box_set_spacing(GTK_BUTTON_BOX(*bbox), 5);
141 *button1 = gtk_button_new_with_label(label1);
142 GTK_WIDGET_SET_FLAGS(*button1, GTK_CAN_DEFAULT);
143 gtk_box_pack_start(GTK_BOX(*bbox), *button1, TRUE, TRUE, 0);
144 gtk_widget_show(*button1);
146 if (button2) {
147 *button2 = gtk_button_new_with_label(label2);
148 GTK_WIDGET_SET_FLAGS(*button2, GTK_CAN_DEFAULT);
149 gtk_box_pack_start(GTK_BOX(*bbox), *button2, TRUE, TRUE, 0);
150 gtk_widget_show(*button2);
153 if (button3) {
154 *button3 = gtk_button_new_with_label(label3);
155 GTK_WIDGET_SET_FLAGS(*button3, GTK_CAN_DEFAULT);
156 gtk_box_pack_start(GTK_BOX(*bbox), *button3, TRUE, TRUE, 0);
157 gtk_widget_show(*button3);
161 #define CELL_SPACING 1
162 #define ROW_TOP_YPIXEL(clist, row) (((clist)->row_height * (row)) + \
163 (((row) + 1) * CELL_SPACING) + \
164 (clist)->voffset)
165 #define ROW_FROM_YPIXEL(clist, y) (((y) - (clist)->voffset) / \
166 ((clist)->row_height + CELL_SPACING))
168 void gtkut_ctree_node_move_if_on_the_edge(GtkCTree *ctree, GtkCTreeNode *node)
170 GtkCList *clist = GTK_CLIST(ctree);
171 gint row;
172 GtkVisibility row_visibility, prev_row_visibility, next_row_visibility;
174 g_return_if_fail(ctree != NULL);
175 g_return_if_fail(node != NULL);
177 row = g_list_position(clist->row_list, (GList *)node);
178 if (row < 0 || row >= clist->rows || clist->row_height == 0) return;
179 row_visibility = gtk_clist_row_is_visible(clist, row);
180 prev_row_visibility = gtk_clist_row_is_visible(clist, row - 1);
181 next_row_visibility = gtk_clist_row_is_visible(clist, row + 1);
183 if (row_visibility == GTK_VISIBILITY_NONE) {
184 gtk_clist_moveto(clist, row, -1, 0.5, 0);
185 return;
187 if (row_visibility == GTK_VISIBILITY_FULL &&
188 prev_row_visibility == GTK_VISIBILITY_FULL &&
189 next_row_visibility == GTK_VISIBILITY_FULL)
190 return;
191 if (prev_row_visibility != GTK_VISIBILITY_FULL &&
192 next_row_visibility != GTK_VISIBILITY_FULL)
193 return;
195 if (prev_row_visibility != GTK_VISIBILITY_FULL) {
196 gtk_clist_moveto(clist, row, -1, 0.2, 0);
197 return;
199 if (next_row_visibility != GTK_VISIBILITY_FULL) {
200 gtk_clist_moveto(clist, row, -1, 0.8, 0);
201 return;
205 #undef CELL_SPACING
206 #undef ROW_TOP_YPIXEL
207 #undef ROW_FROM_YPIXEL
209 gint gtkut_ctree_get_nth_from_node(GtkCTree *ctree, GtkCTreeNode *node)
211 g_return_val_if_fail(ctree != NULL, -1);
212 g_return_val_if_fail(node != NULL, -1);
214 return g_list_position(GTK_CLIST(ctree)->row_list, (GList *)node);
217 /* get the next node, including the invisible one */
218 GtkCTreeNode *gtkut_ctree_node_next(GtkCTree *ctree, GtkCTreeNode *node)
220 GtkCTreeNode *parent;
222 if (!node) return NULL;
224 if (GTK_CTREE_ROW(node)->children)
225 return GTK_CTREE_ROW(node)->children;
227 if (GTK_CTREE_ROW(node)->sibling)
228 return GTK_CTREE_ROW(node)->sibling;
230 for (parent = GTK_CTREE_ROW(node)->parent; parent != NULL;
231 parent = GTK_CTREE_ROW(parent)->parent) {
232 if (GTK_CTREE_ROW(parent)->sibling)
233 return GTK_CTREE_ROW(parent)->sibling;
236 return NULL;
239 GtkCTreeNode *gtkut_ctree_find_collapsed_parent(GtkCTree *ctree,
240 GtkCTreeNode *node)
242 if (!node) return NULL;
244 while ((node = GTK_CTREE_ROW(node)->parent) != NULL) {
245 if (!GTK_CTREE_ROW(node)->expanded)
246 return node;
249 return NULL;
252 void gtkut_ctree_expand_parent_all(GtkCTree *ctree, GtkCTreeNode *node)
254 while ((node = gtkut_ctree_find_collapsed_parent(ctree, node)) != NULL)
255 gtk_ctree_expand(ctree, node);
258 gboolean gtkut_ctree_node_is_parent(GtkCTreeNode *parent, GtkCTreeNode *node)
260 GtkCTreeNode *tmp;
261 g_return_val_if_fail(node != NULL, FALSE);
262 g_return_val_if_fail(parent != NULL, FALSE);
263 tmp = node;
265 while (tmp) {
266 if(GTK_CTREE_ROW(tmp)->parent && GTK_CTREE_ROW(tmp)->parent == parent)
267 return TRUE;
268 tmp = GTK_CTREE_ROW(tmp)->parent;
271 return FALSE;
274 void gtkut_ctree_set_focus_row(GtkCTree *ctree, GtkCTreeNode *node)
276 gtkut_clist_set_focus_row(GTK_CLIST(ctree),
277 gtkut_ctree_get_nth_from_node(ctree, node));
280 void gtkut_clist_set_focus_row(GtkCList *clist, gint row)
282 clist->focus_row = row;
283 GTKUT_CTREE_REFRESH(clist);
286 void gtkut_combo_set_items(GtkCombo *combo, const gchar *str1, ...)
288 va_list args;
289 gchar *s;
290 GList *combo_items = NULL;
292 g_return_if_fail(str1 != NULL);
294 combo_items = g_list_append(combo_items, (gpointer)str1);
295 va_start(args, str1);
296 s = va_arg(args, gchar*);
297 while (s) {
298 combo_items = g_list_append(combo_items, (gpointer)s);
299 s = va_arg(args, gchar*);
301 va_end(args);
303 gtk_combo_set_popdown_strings(combo, combo_items);
305 g_list_free(combo_items);
308 gchar *gtkut_editable_get_selection(GtkEditable *editable)
310 guint start_pos, end_pos;
312 g_return_val_if_fail(editable != NULL, NULL);
314 if (!editable->has_selection) return NULL;
316 if (editable->selection_start_pos == editable->selection_end_pos)
317 return NULL;
319 if (editable->selection_start_pos < editable->selection_end_pos) {
320 start_pos = editable->selection_start_pos;
321 end_pos = editable->selection_end_pos;
322 } else {
323 start_pos = editable->selection_end_pos;
324 end_pos = editable->selection_start_pos;
327 return gtk_editable_get_chars(editable, start_pos, end_pos);
331 * Walk through the widget tree and disclaim the selection from all currently
332 * realized GtkEditable widgets.
334 static void gtkut_check_before_remove(GtkWidget *widget, gpointer unused)
336 g_return_if_fail(widget != NULL);
338 if (!GTK_WIDGET_REALIZED(widget))
339 return; /* all nested widgets must be unrealized too */
340 if (GTK_IS_CONTAINER(widget))
341 gtk_container_forall(GTK_CONTAINER(widget),
342 gtkut_check_before_remove, NULL);
343 if (GTK_IS_EDITABLE(widget))
344 gtk_editable_claim_selection(GTK_EDITABLE(widget),
345 FALSE, GDK_CURRENT_TIME);
349 * Wrapper around gtk_container_remove to work around a bug in GtkText and
350 * GtkEntry (in all GTK+ versions up to and including at least 1.2.10).
352 * The problem is that unrealizing a GtkText or GtkEntry widget which has the
353 * active selection completely messes up selection handling, leading to
354 * non-working selections and crashes. Removing a widget from its container
355 * implies unrealizing it and all its child widgets; this triggers the bug if
356 * the removed widget or any of its children is GtkText or GtkEntry. As a
357 * workaround, this function walks through the widget subtree before removing
358 * and disclaims the selection from all GtkEditable widgets found.
360 * A similar workaround may be needed for gtk_widget_reparent(); currently it
361 * is not necessary because Sylpheed does not use gtk_widget_reparent() for
362 * GtkEditable widgets or containers holding such widgets.
364 void gtkut_container_remove(GtkContainer *container, GtkWidget *widget)
366 gtkut_check_before_remove(widget, NULL);
367 gtk_container_remove(container, widget);
370 void gtkut_window_popup(GtkWidget *window)
372 gint x, y, sx, sy, new_x, new_y;
374 g_return_if_fail(window != NULL);
375 g_return_if_fail(window->window != NULL);
377 sx = gdk_screen_width();
378 sy = gdk_screen_height();
380 gdk_window_get_origin(window->window, &x, &y);
381 new_x = x % sx; if (new_x < 0) new_x = 0;
382 new_y = y % sy; if (new_y < 0) new_y = 0;
383 if (new_x != x || new_y != y)
384 gdk_window_move(window->window, new_x, new_y);
386 gdk_window_raise(window->window);
387 gdk_window_show(window->window);
390 void gtkut_widget_get_uposition(GtkWidget *widget, gint *px, gint *py)
392 gint x, y;
393 gint sx, sy;
395 g_return_if_fail(widget != NULL);
396 g_return_if_fail(widget->window != NULL);
398 sx = gdk_screen_width();
399 sy = gdk_screen_height();
401 /* gdk_window_get_root_origin ever return *rootwindow*'s position */
402 gdk_window_get_root_origin(widget->window, &x, &y);
404 x %= sx; if (x < 0) x = 0;
405 y %= sy; if (y < 0) y = 0;
406 *px = x;
407 *py = y;
410 void gtkut_widget_disable_theme_engine(GtkWidget *widget)
412 GtkStyle *style, *new_style;
414 style = gtk_widget_get_style(widget);
416 if (style->engine) {
417 GtkThemeEngine *engine;
419 engine = style->engine;
420 style->engine = NULL;
421 new_style = gtk_style_copy(style);
422 style->engine = engine;
423 gtk_widget_set_style(widget, new_style);
427 static void gtkut_widget_draw_cb(GtkWidget *widget, GdkRectangle *area,
428 gboolean *flag)
430 *flag = TRUE;
431 gtk_signal_disconnect_by_data(GTK_OBJECT(widget), flag);
434 void gtkut_widget_wait_for_draw(GtkWidget *widget)
436 gboolean flag = FALSE;
438 if (!GTK_WIDGET_VISIBLE(widget) || !GTK_WIDGET_MAPPED(widget)) return;
440 gtk_signal_connect(GTK_OBJECT(widget), "draw",
441 GTK_SIGNAL_FUNC(gtkut_widget_draw_cb), &flag);
442 while (!flag)
443 gtk_main_iteration();
446 static void gtkut_clist_bindings_add(GtkWidget *clist)
448 GtkBindingSet *binding_set;
450 binding_set = gtk_binding_set_by_class
451 (GTK_CLIST_CLASS(GTK_OBJECT(clist)->klass));
453 gtk_binding_entry_add_signal(binding_set, GDK_n, GDK_CONTROL_MASK,
454 "scroll_vertical", 2,
455 GTK_TYPE_ENUM, GTK_SCROLL_STEP_FORWARD,
456 GTK_TYPE_FLOAT, 0.0);
457 gtk_binding_entry_add_signal(binding_set, GDK_p, GDK_CONTROL_MASK,
458 "scroll_vertical", 2,
459 GTK_TYPE_ENUM, GTK_SCROLL_STEP_BACKWARD,
460 GTK_TYPE_FLOAT, 0.0);
463 void gtkut_widget_init(void)
465 GtkWidget *clist;
467 clist = gtk_clist_new(1);
468 gtkut_clist_bindings_add(clist);
469 gtk_widget_unref(clist);
471 clist = gtk_ctree_new(1, 0);
472 gtkut_clist_bindings_add(clist);
473 gtk_widget_unref(clist);
475 clist = gtk_sctree_new_with_titles(1, 0, NULL);
476 gtkut_clist_bindings_add(clist);
477 gtk_widget_unref(clist);
480 void gtkut_widget_set_app_icon(GtkWidget *widget)
482 #include "pixmaps/sylpheed.xpm"
483 static GdkPixmap *sylpheedxpm;
484 static GdkBitmap *sylpheedxpmmask;
486 g_return_if_fail(widget != NULL);
487 g_return_if_fail(widget->window != NULL);
488 if (!sylpheedxpm) {
489 PIXMAP_CREATE(widget, sylpheedxpm, sylpheedxpmmask, sylpheed_xpm);
491 gdk_window_set_icon(widget->window, NULL, sylpheedxpm, sylpheedxpmmask);
494 void gtkut_widget_set_composer_icon(GtkWidget *widget)
496 static GdkPixmap *xpm;
497 static GdkBitmap *bmp;
499 g_return_if_fail(widget != NULL);
500 g_return_if_fail(widget->window != NULL);
501 if (!xpm) {
502 stock_pixmap_gdk(widget, STOCK_PIXMAP_MAIL_COMPOSE, &xpm, &bmp);
504 gdk_window_set_icon(widget->window, NULL, xpm, bmp);
507 GtkWidget *gtkut_account_menu_new(GList *ac_list,
508 GtkSignalFunc callback,
509 gpointer data)
511 GList *cur_ac;
512 GtkWidget *menu;
514 g_return_val_if_fail(ac_list != NULL, NULL);
516 menu = gtk_menu_new();
518 for (cur_ac = ac_list; cur_ac != NULL; cur_ac = cur_ac->next) {
519 gchar *name;
520 GtkWidget *menuitem;
521 PrefsAccount *account;
523 account = (PrefsAccount *) cur_ac->data;
524 if (account->name)
525 name = g_strdup_printf("%s: %s <%s>",
526 account->account_name,
527 account->name,
528 account->address);
529 else
530 name = g_strdup_printf("%s: %s",
531 account->account_name,
532 account->address);
533 MENUITEM_ADD(menu, menuitem, name, account->account_id);
534 g_free(name);
535 if (callback != NULL)
536 gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
537 callback,
538 data);
540 return menu;