File: imap_misc.c

package info (click to toggle)
gimp 2.2.13-1etch4
  • links: PTS
  • area: main
  • in suites: etch
  • size: 94,832 kB
  • ctags: 47,113
  • sloc: ansic: 524,858; xml: 36,798; lisp: 9,870; sh: 9,409; makefile: 7,923; python: 2,674; perl: 2,589; yacc: 520; lex: 334
file content (177 lines) | stat: -rw-r--r-- 5,034 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
 * This is a plug-in for the GIMP.
 *
 * Generates clickable image maps.
 *
 * Copyright (C) 1998-2004 Maurits Rijk  m.rijk@chello.nl
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 */

#include "config.h"

#include <gtk/gtk.h>

#include "imap_main.h"
#include "imap_misc.h"

static GtkWidget*
make_toolbar_icon (GtkWidget *toolbar, GtkToolItem *item,
		   const char *identifier, const char *tooltip,
		   void (*callback)(GtkWidget*, gpointer), gpointer udata)
{
  static GtkTooltips *tips;
  if (!tips)
    {
      tips = gtk_tooltips_new ();
    }
  gtk_tool_item_set_tooltip (item, tips, tooltip, identifier);
  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
  gtk_widget_show (GTK_WIDGET (item));
  return GTK_WIDGET (item);
}

void
toolbar_add_space (GtkWidget *toolbar)
{
  GtkToolItem *item = gtk_separator_tool_item_new ();
  gtk_separator_tool_item_set_draw (GTK_SEPARATOR_TOOL_ITEM (item), FALSE);
  gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
  gtk_widget_show (GTK_WIDGET (item));
}

GtkWidget*
make_toolbar_stock_icon(GtkWidget *toolbar, const gchar *stock_id,
			const char *identifier, const char *tooltip,
			void (*callback)(GtkWidget*, gpointer), gpointer udata)
{
   GtkToolItem *item = gtk_tool_button_new_from_stock (stock_id);
   g_signal_connect (item, "clicked", G_CALLBACK (callback), udata);
   return make_toolbar_icon (toolbar, item, identifier, tooltip,
			     callback, udata);
}

GtkWidget*
make_toolbar_radio_icon(GtkWidget *toolbar, const gchar *stock_id,
			 GtkWidget *prev, const char *identifier,
			const char *tooltip,
			 void (*callback)(GtkWidget*, gpointer),
			 gpointer udata)
{
  GtkToolItem *item;

  if (prev)
    item = gtk_radio_tool_button_new_with_stock_from_widget
      (GTK_RADIO_TOOL_BUTTON (prev), stock_id);
  else
    item = gtk_radio_tool_button_new_from_stock (NULL, stock_id);

  g_signal_connect (item, "toggled", G_CALLBACK (callback), udata);
  return make_toolbar_icon (toolbar, item, identifier, tooltip,
                            callback, udata);
}

GtkWidget*
make_toolbar_toggle_icon(GtkWidget *toolbar, const gchar *stock_id,
			 const char *identifier, const char *tooltip,
			 void (*callback)(GtkWidget*, gpointer),
			 gpointer udata)
{
   GtkToolItem *item = gtk_toggle_tool_button_new_from_stock (stock_id);
   g_signal_connect (item, "toggled", G_CALLBACK (callback), udata);
   return make_toolbar_icon (toolbar, item, identifier, tooltip,
			     callback, udata);
}

static Alert_t*
create_base_alert(const gchar *stock_id)
{
   Alert_t *alert = g_new(Alert_t, 1);
   DefaultDialog_t *dialog;
   GtkWidget *hbox;
   GtkWidget *image;

   alert->dialog = dialog = make_default_dialog("");
   default_dialog_hide_apply_button(dialog);

   hbox = gtk_hbox_new (FALSE, 12);
   gtk_box_pack_start(GTK_BOX(dialog->vbox), hbox, FALSE, FALSE, 0);
   gtk_widget_show(hbox);

   image = gtk_image_new_from_stock(stock_id, GTK_ICON_SIZE_DIALOG);
   gtk_container_add(GTK_CONTAINER(hbox), image);
   gtk_widget_show(image);

   alert->label = gtk_label_new("");
   gtk_misc_set_alignment(GTK_MISC(alert->label), 0.0, 0.0);
   gtk_container_add(GTK_CONTAINER(hbox), alert->label);
   gtk_widget_show(alert->label);

   return alert;
}

Alert_t*
create_alert(const gchar *stock_id)
{
   Alert_t *alert = create_base_alert(stock_id);
   default_dialog_hide_cancel_button(alert->dialog);

   return alert;
}

Alert_t*
create_confirm_alert(const gchar *stock_id)
{
   return create_base_alert(stock_id);
}

void
alert_set_text(Alert_t *alert, const char *primary_text,
	       const char *secondary_text)
{
   gchar *text;

   text =
      g_strdup_printf("<span weight=\"bold\" size=\"larger\">%s</span>\n\n%s",
		      primary_text, secondary_text);
   gtk_label_set_markup (GTK_LABEL(alert->label), text);

   g_free(text);
}

#define SASH_SIZE 8

static gint _sash_size = SASH_SIZE;

void
set_sash_size(gboolean double_size)
{
   _sash_size = (double_size) ? 2 * SASH_SIZE : SASH_SIZE;
}

void
draw_sash(GdkWindow *window, GdkGC *gc, gint x, gint y)
{
   draw_rectangle(window, gc, TRUE, x - _sash_size / 2, y - _sash_size / 2,
		  _sash_size, _sash_size);
}

gboolean
near_sash(gint sash_x, gint sash_y, gint x, gint y)
{
   return x >= sash_x - _sash_size / 2 && x <= sash_x + _sash_size / 2 &&
      y >= sash_y - _sash_size / 2 && y <= sash_y + _sash_size / 2;
}