Fri, 20 Mar 2009 08:10:26 +0000
Fix audio levels.
| 8317 | 1 | /* |
|
10297
b36800725b7a
[gaim-migrate @ 11480]
Evan Schoenberg <evands@pidgin.im>
parents:
10138
diff
changeset
|
2 | * @file gtkimhtmltoolbar.c GTK+ IMHtml Toolbar |
|
16254
eeb2bba4dc94
Rename the Doxygen group from gtkui to pidgin.
Richard Laager <rlaager@pidgin.im>
parents:
15931
diff
changeset
|
3 | * @ingroup pidgin |
|
20330
650a7af9c238
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@pidgin.im>
parents:
20328
diff
changeset
|
4 | */ |
|
650a7af9c238
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@pidgin.im>
parents:
20328
diff
changeset
|
5 | |
|
650a7af9c238
remove gpl boilerplate from doxygen docs
Sean Egan <seanegan@pidgin.im>
parents:
20328
diff
changeset
|
6 | /* pidgin |
| 8317 | 7 | * |
|
15931
716b5fac1895
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
8 | * Pidgin is the legal property of its developers, whose names are too numerous |
| 8317 | 9 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 10 | * source distribution. | |
| 11 | * | |
| 12 | * This program is free software; you can redistribute it and/or modify | |
| 13 | * under the terms of the GNU General Public License as published by | |
| 14 | * the Free Software Foundation; either version 2 of the License, or | |
| 15 | * (at your option) any later version. | |
| 16 | * | |
| 17 | * This program is distributed in the hope that it will be useful, | |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 | * GNU General Public License for more details. | |
| 21 | * | |
| 22 | * You should have received a copy of the GNU General Public License | |
| 23 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
19761
diff
changeset
|
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 8317 | 25 | * |
| 26 | */ | |
| 9791 | 27 | #include "internal.h" |
| 15577 | 28 | #include "pidgin.h" |
| 8317 | 29 | |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
30 | #include "imgstore.h" |
| 8317 | 31 | #include "notify.h" |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
32 | #include "prefs.h" |
| 8317 | 33 | #include "request.h" |
|
15883
969b74a3e27a
According to etags, pidgin/ should be completely clean of references to 'gaim' as a client
Sean Egan <seanegan@pidgin.im>
parents:
15847
diff
changeset
|
34 | #include "pidginstock.h" |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
35 | #include "util.h" |
| 8317 | 36 | |
|
9730
e59812364b8b
[gaim-migrate @ 10591]
Mark Doliner <markdoliner@pidgin.im>
parents:
9709
diff
changeset
|
37 | #include "gtkdialogs.h" |
|
e59812364b8b
[gaim-migrate @ 10591]
Mark Doliner <markdoliner@pidgin.im>
parents:
9709
diff
changeset
|
38 | #include "gtkimhtmltoolbar.h" |
|
22443
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
39 | #include "gtksmiley.h" |
|
11525
1d06283bdcc9
[gaim-migrate @ 13773]
Francesco Fracassi <ffracassi@users.sourceforge.net>
parents:
11314
diff
changeset
|
40 | #include "gtkthemes.h" |
|
9730
e59812364b8b
[gaim-migrate @ 10591]
Mark Doliner <markdoliner@pidgin.im>
parents:
9709
diff
changeset
|
41 | #include "gtkutils.h" |
|
e59812364b8b
[gaim-migrate @ 10591]
Mark Doliner <markdoliner@pidgin.im>
parents:
9709
diff
changeset
|
42 | |
|
22648
e286d795c5f9
Patch from Marcus Lundblad ('mlundblad') to improve audio support in xmpp.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
43 | #include "debug.h" |
|
e286d795c5f9
Patch from Marcus Lundblad ('mlundblad') to improve audio support in xmpp.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
44 | |
|
17394
ebe5e0e583da
Close smiley dialog on GDK_Escape or button 1 press.
Gabriel Schulhof <nix@go-nix.ca>
parents:
17303
diff
changeset
|
45 | #include <gdk/gdkkeysyms.h> |
|
ebe5e0e583da
Close smiley dialog on GDK_Escape or button 1 press.
Gabriel Schulhof <nix@go-nix.ca>
parents:
17303
diff
changeset
|
46 | |
| 10080 | 47 | static GtkHBoxClass *parent_class = NULL; |
| 8317 | 48 | |
|
11275
cdcc651d7ecd
[gaim-migrate @ 13461]
Richard Laager <rlaager@pidgin.im>
parents:
11271
diff
changeset
|
49 | static void toggle_button_set_active_block(GtkToggleButton *button, |
|
cdcc651d7ecd
[gaim-migrate @ 13461]
Richard Laager <rlaager@pidgin.im>
parents:
11271
diff
changeset
|
50 | gboolean is_active, |
|
cdcc651d7ecd
[gaim-migrate @ 13461]
Richard Laager <rlaager@pidgin.im>
parents:
11271
diff
changeset
|
51 | GtkIMHtmlToolbar *toolbar); |
|
cdcc651d7ecd
[gaim-migrate @ 13461]
Richard Laager <rlaager@pidgin.im>
parents:
11271
diff
changeset
|
52 | |
|
cdcc651d7ecd
[gaim-migrate @ 13461]
Richard Laager <rlaager@pidgin.im>
parents:
11271
diff
changeset
|
53 | |
| 8317 | 54 | static void do_bold(GtkWidget *bold, GtkIMHtmlToolbar *toolbar) |
| 55 | { | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
56 | g_return_if_fail(toolbar != NULL); |
| 8317 | 57 | gtk_imhtml_toggle_bold(GTK_IMHTML(toolbar->imhtml)); |
| 58 | gtk_widget_grab_focus(toolbar->imhtml); | |
| 59 | } | |
| 60 | ||
| 61 | static void | |
| 62 | do_italic(GtkWidget *italic, GtkIMHtmlToolbar *toolbar) | |
| 63 | { | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
64 | g_return_if_fail(toolbar != NULL); |
| 8317 | 65 | gtk_imhtml_toggle_italic(GTK_IMHTML(toolbar->imhtml)); |
| 66 | gtk_widget_grab_focus(toolbar->imhtml); | |
| 67 | } | |
| 68 | ||
| 69 | static void | |
| 70 | do_underline(GtkWidget *underline, GtkIMHtmlToolbar *toolbar) | |
| 71 | { | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
72 | g_return_if_fail(toolbar != NULL); |
| 8317 | 73 | gtk_imhtml_toggle_underline(GTK_IMHTML(toolbar->imhtml)); |
| 74 | gtk_widget_grab_focus(toolbar->imhtml); | |
| 75 | } | |
| 76 | ||
| 77 | static void | |
|
19647
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
78 | do_strikethrough(GtkWidget *strikethrough, GtkIMHtmlToolbar *toolbar) |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
79 | { |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
80 | g_return_if_fail(toolbar != NULL); |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
81 | gtk_imhtml_toggle_strike(GTK_IMHTML(toolbar->imhtml)); |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
82 | gtk_widget_grab_focus(toolbar->imhtml); |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
83 | } |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
84 | |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
85 | static void |
| 8317 | 86 | do_small(GtkWidget *smalltb, GtkIMHtmlToolbar *toolbar) |
| 87 | { | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
88 | g_return_if_fail(toolbar != NULL); |
|
17403
b0e8707193b5
Only change the size when the imhtmltoolbar button has been activated,
Kevin Stange <kstange@pidgin.im>
parents:
17303
diff
changeset
|
89 | /* Only shrink the font on activation, not deactivation as well */ |
|
b0e8707193b5
Only change the size when the imhtmltoolbar button has been activated,
Kevin Stange <kstange@pidgin.im>
parents:
17303
diff
changeset
|
90 | if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(smalltb))) |
|
b0e8707193b5
Only change the size when the imhtmltoolbar button has been activated,
Kevin Stange <kstange@pidgin.im>
parents:
17303
diff
changeset
|
91 | gtk_imhtml_font_shrink(GTK_IMHTML(toolbar->imhtml)); |
| 8317 | 92 | gtk_widget_grab_focus(toolbar->imhtml); |
| 93 | } | |
| 94 | ||
| 95 | static void | |
| 96 | do_big(GtkWidget *large, GtkIMHtmlToolbar *toolbar) | |
| 97 | { | |
| 98 | g_return_if_fail(toolbar); | |
|
17403
b0e8707193b5
Only change the size when the imhtmltoolbar button has been activated,
Kevin Stange <kstange@pidgin.im>
parents:
17303
diff
changeset
|
99 | /* Only grow the font on activation, not deactivation as well */ |
|
b0e8707193b5
Only change the size when the imhtmltoolbar button has been activated,
Kevin Stange <kstange@pidgin.im>
parents:
17303
diff
changeset
|
100 | if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(large))) |
|
b0e8707193b5
Only change the size when the imhtmltoolbar button has been activated,
Kevin Stange <kstange@pidgin.im>
parents:
17303
diff
changeset
|
101 | gtk_imhtml_font_grow(GTK_IMHTML(toolbar->imhtml)); |
| 8317 | 102 | gtk_widget_grab_focus(toolbar->imhtml); |
| 103 | } | |
| 104 | ||
|
22032
8136dd5eeda3
Make some more event handlers return appropriate gboolean values. This turns
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21985
diff
changeset
|
105 | static gboolean |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
106 | destroy_toolbar_font(GtkWidget *widget, GdkEvent *event, |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
107 | GtkIMHtmlToolbar *toolbar) |
| 8317 | 108 | { |
|
10135
760803be53d2
[gaim-migrate @ 11202]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10134
diff
changeset
|
109 | if (widget != NULL) |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
110 | gtk_imhtml_toggle_fontface(GTK_IMHTML(toolbar->imhtml), ""); |
| 8317 | 111 | |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
112 | if (toolbar->font_dialog != NULL) |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
113 | { |
| 8317 | 114 | gtk_widget_destroy(toolbar->font_dialog); |
| 115 | toolbar->font_dialog = NULL; | |
| 116 | } | |
|
22032
8136dd5eeda3
Make some more event handlers return appropriate gboolean values. This turns
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21985
diff
changeset
|
117 | return FALSE; |
| 8317 | 118 | } |
| 119 | ||
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
120 | static void |
| 10125 | 121 | realize_toolbar_font(GtkWidget *widget, GtkIMHtmlToolbar *toolbar) |
| 122 | { | |
| 123 | GtkFontSelection *sel; | |
| 124 | ||
| 125 | sel = GTK_FONT_SELECTION(GTK_FONT_SELECTION_DIALOG(toolbar->font_dialog)->fontsel); | |
| 126 | gtk_widget_hide_all(gtk_widget_get_parent(sel->size_entry)); | |
| 127 | gtk_widget_show_all(sel->family_list); | |
| 128 | gtk_widget_show(gtk_widget_get_parent(sel->family_list)); | |
| 129 | gtk_widget_show(gtk_widget_get_parent(gtk_widget_get_parent(sel->family_list))); | |
| 130 | } | |
| 131 | ||
| 132 | static void | |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
133 | cancel_toolbar_font(GtkWidget *widget, GtkIMHtmlToolbar *toolbar) |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
134 | { |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
135 | destroy_toolbar_font(widget, NULL, toolbar); |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
136 | } |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
137 | |
| 8317 | 138 | static void apply_font(GtkWidget *widget, GtkFontSelection *fontsel) |
| 139 | { | |
| 140 | /* this could be expanded to include font size, weight, etc. | |
| 141 | but for now only works with font face */ | |
| 142 | char *fontname; | |
| 143 | char *space; | |
| 15884 | 144 | GtkIMHtmlToolbar *toolbar = g_object_get_data(G_OBJECT(fontsel), "purple_toolbar"); |
| 8317 | 145 | |
| 146 | fontname = gtk_font_selection_dialog_get_font_name(GTK_FONT_SELECTION_DIALOG(fontsel)); | |
| 147 | ||
| 148 | space = strrchr(fontname, ' '); | |
| 149 | if(space && isdigit(*(space+1))) | |
| 150 | *space = '\0'; | |
| 151 | ||
| 152 | gtk_imhtml_toggle_fontface(GTK_IMHTML(toolbar->imhtml), fontname); | |
| 153 | g_free(fontname); | |
| 154 | ||
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
155 | cancel_toolbar_font(NULL, toolbar); |
| 8317 | 156 | } |
| 157 | ||
| 158 | static void | |
| 159 | toggle_font(GtkWidget *font, GtkIMHtmlToolbar *toolbar) | |
| 160 | { | |
| 161 | g_return_if_fail(toolbar); | |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
162 | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
163 | if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(font))) { |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
164 | char *fontname = gtk_imhtml_get_current_fontface(GTK_IMHTML(toolbar->imhtml)); |
| 9025 | 165 | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
166 | if (!toolbar->font_dialog) { |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
167 | toolbar->font_dialog = gtk_font_selection_dialog_new(_("Select Font")); |
| 8317 | 168 | |
| 15884 | 169 | g_object_set_data(G_OBJECT(toolbar->font_dialog), "purple_toolbar", toolbar); |
|
10134
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
170 | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
171 | if(fontname) { |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
172 | char *fonttif = g_strdup_printf("%s 12", fontname); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
173 | g_free(fontname); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
174 | gtk_font_selection_dialog_set_font_name(GTK_FONT_SELECTION_DIALOG(toolbar->font_dialog), |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
175 | fonttif); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
176 | g_free(fonttif); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
177 | } else { |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
178 | gtk_font_selection_dialog_set_font_name(GTK_FONT_SELECTION_DIALOG(toolbar->font_dialog), |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
179 | DEFAULT_FONT_FACE); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
180 | } |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
181 | |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
182 | g_signal_connect(G_OBJECT(toolbar->font_dialog), "delete_event", |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
183 | G_CALLBACK(destroy_toolbar_font), toolbar); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
184 | g_signal_connect(G_OBJECT(GTK_FONT_SELECTION_DIALOG(toolbar->font_dialog)->ok_button), "clicked", |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
185 | G_CALLBACK(apply_font), toolbar->font_dialog); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
186 | g_signal_connect(G_OBJECT(GTK_FONT_SELECTION_DIALOG(toolbar->font_dialog)->cancel_button), "clicked", |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
187 | G_CALLBACK(cancel_toolbar_font), toolbar); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
188 | g_signal_connect_after(G_OBJECT(toolbar->font_dialog), "realize", |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
189 | G_CALLBACK(realize_toolbar_font), toolbar); |
| 9025 | 190 | } |
| 8317 | 191 | gtk_window_present(GTK_WINDOW(toolbar->font_dialog)); |
| 192 | } else { | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
193 | cancel_toolbar_font(font, toolbar); |
| 8317 | 194 | } |
| 195 | gtk_widget_grab_focus(toolbar->imhtml); | |
| 196 | } | |
| 197 | ||
|
22032
8136dd5eeda3
Make some more event handlers return appropriate gboolean values. This turns
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21985
diff
changeset
|
198 | static gboolean |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
199 | destroy_toolbar_fgcolor(GtkWidget *widget, GdkEvent *event, |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
200 | GtkIMHtmlToolbar *toolbar) |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
201 | { |
|
10135
760803be53d2
[gaim-migrate @ 11202]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10134
diff
changeset
|
202 | if (widget != NULL) |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
203 | gtk_imhtml_toggle_forecolor(GTK_IMHTML(toolbar->imhtml), ""); |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
204 | |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
205 | if (toolbar->fgcolor_dialog != NULL) |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
206 | { |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
207 | gtk_widget_destroy(toolbar->fgcolor_dialog); |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
208 | toolbar->fgcolor_dialog = NULL; |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
209 | } |
|
22032
8136dd5eeda3
Make some more event handlers return appropriate gboolean values. This turns
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21985
diff
changeset
|
210 | return FALSE; |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
211 | } |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
212 | |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
213 | static void cancel_toolbar_fgcolor(GtkWidget *widget, |
|
8321
477316d4d8a3
[gaim-migrate @ 9045]
Christian Hammond <chipx86@chipx86.com>
parents:
8320
diff
changeset
|
214 | GtkIMHtmlToolbar *toolbar) |
| 8317 | 215 | { |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
216 | destroy_toolbar_fgcolor(widget, NULL, toolbar); |
| 8317 | 217 | } |
| 218 | ||
| 219 | static void do_fgcolor(GtkWidget *widget, GtkColorSelection *colorsel) | |
| 220 | { | |
| 221 | GdkColor text_color; | |
| 15884 | 222 | GtkIMHtmlToolbar *toolbar = g_object_get_data(G_OBJECT(colorsel), "purple_toolbar"); |
| 8317 | 223 | char *open_tag; |
| 224 | ||
| 225 | open_tag = g_malloc(30); | |
| 226 | gtk_color_selection_get_current_color(colorsel, &text_color); | |
| 227 | g_snprintf(open_tag, 23, "#%02X%02X%02X", | |
| 228 | text_color.red / 256, | |
| 229 | text_color.green / 256, | |
| 230 | text_color.blue / 256); | |
| 231 | gtk_imhtml_toggle_forecolor(GTK_IMHTML(toolbar->imhtml), open_tag); | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
232 | g_free(open_tag); |
| 8317 | 233 | |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
234 | cancel_toolbar_fgcolor(NULL, toolbar); |
| 8317 | 235 | } |
| 236 | ||
| 237 | static void | |
| 238 | toggle_fg_color(GtkWidget *color, GtkIMHtmlToolbar *toolbar) | |
| 239 | { | |
| 240 | if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(color))) { | |
| 241 | GtkWidget *colorsel; | |
| 9025 | 242 | GdkColor fgcolor; |
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10297
diff
changeset
|
243 | char *color = gtk_imhtml_get_current_forecolor(GTK_IMHTML(toolbar->imhtml)); |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
244 | |
| 8317 | 245 | if (!toolbar->fgcolor_dialog) { |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
246 | |
| 8317 | 247 | toolbar->fgcolor_dialog = gtk_color_selection_dialog_new(_("Select Text Color")); |
| 248 | colorsel = GTK_COLOR_SELECTION_DIALOG(toolbar->fgcolor_dialog)->colorsel; | |
| 9025 | 249 | if (color) { |
| 250 | gdk_color_parse(color, &fgcolor); | |
| 251 | gtk_color_selection_set_current_color(GTK_COLOR_SELECTION(colorsel), &fgcolor); | |
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10297
diff
changeset
|
252 | g_free(color); |
| 9025 | 253 | } |
| 254 | ||
| 15884 | 255 | g_object_set_data(G_OBJECT(colorsel), "purple_toolbar", toolbar); |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
256 | |
| 8317 | 257 | g_signal_connect(G_OBJECT(toolbar->fgcolor_dialog), "delete_event", |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
258 | G_CALLBACK(destroy_toolbar_fgcolor), toolbar); |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
259 | g_signal_connect(G_OBJECT(GTK_COLOR_SELECTION_DIALOG(toolbar->fgcolor_dialog)->ok_button), "clicked", |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
260 | G_CALLBACK(do_fgcolor), colorsel); |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
261 | g_signal_connect(G_OBJECT (GTK_COLOR_SELECTION_DIALOG(toolbar->fgcolor_dialog)->cancel_button), "clicked", |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
262 | G_CALLBACK(cancel_toolbar_fgcolor), toolbar); |
| 8317 | 263 | } |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
264 | gtk_window_present(GTK_WINDOW(toolbar->fgcolor_dialog)); |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
265 | } else { |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
266 | cancel_toolbar_fgcolor(color, toolbar); |
| 8317 | 267 | } |
| 268 | gtk_widget_grab_focus(toolbar->imhtml); | |
| 269 | } | |
| 270 | ||
|
22032
8136dd5eeda3
Make some more event handlers return appropriate gboolean values. This turns
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21985
diff
changeset
|
271 | static gboolean |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
272 | destroy_toolbar_bgcolor(GtkWidget *widget, GdkEvent *event, |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
273 | GtkIMHtmlToolbar *toolbar) |
| 8317 | 274 | { |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
275 | if (widget != NULL) { |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
276 | if (gtk_text_buffer_get_selection_bounds(GTK_IMHTML(toolbar->imhtml)->text_buffer, NULL, NULL)) |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
277 | gtk_imhtml_toggle_backcolor(GTK_IMHTML(toolbar->imhtml), ""); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
278 | else |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
279 | gtk_imhtml_toggle_background(GTK_IMHTML(toolbar->imhtml), ""); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
280 | } |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
281 | |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
282 | if (toolbar->bgcolor_dialog != NULL) |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
283 | { |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
284 | gtk_widget_destroy(toolbar->bgcolor_dialog); |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
285 | toolbar->bgcolor_dialog = NULL; |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
286 | } |
|
22032
8136dd5eeda3
Make some more event handlers return appropriate gboolean values. This turns
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21985
diff
changeset
|
287 | return FALSE; |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
288 | } |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
289 | |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
290 | static void |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
291 | cancel_toolbar_bgcolor(GtkWidget *widget, GtkIMHtmlToolbar *toolbar) |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
292 | { |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
293 | destroy_toolbar_bgcolor(widget, NULL, toolbar); |
| 8317 | 294 | } |
| 295 | ||
| 296 | static void do_bgcolor(GtkWidget *widget, GtkColorSelection *colorsel) | |
| 297 | { | |
| 298 | GdkColor text_color; | |
| 15884 | 299 | GtkIMHtmlToolbar *toolbar = g_object_get_data(G_OBJECT(colorsel), "purple_toolbar"); |
| 8317 | 300 | char *open_tag; |
| 301 | ||
| 302 | open_tag = g_malloc(30); | |
| 303 | gtk_color_selection_get_current_color(colorsel, &text_color); | |
| 304 | g_snprintf(open_tag, 23, "#%02X%02X%02X", | |
| 305 | text_color.red / 256, | |
| 306 | text_color.green / 256, | |
| 307 | text_color.blue / 256); | |
| 10777 | 308 | if (gtk_text_buffer_get_selection_bounds(GTK_IMHTML(toolbar->imhtml)->text_buffer, NULL, NULL)) |
| 309 | gtk_imhtml_toggle_backcolor(GTK_IMHTML(toolbar->imhtml), open_tag); | |
| 310 | else | |
| 311 | gtk_imhtml_toggle_background(GTK_IMHTML(toolbar->imhtml), open_tag); | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
312 | g_free(open_tag); |
| 8317 | 313 | |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
314 | cancel_toolbar_bgcolor(NULL, toolbar); |
| 8317 | 315 | } |
| 316 | ||
| 317 | static void | |
| 318 | toggle_bg_color(GtkWidget *color, GtkIMHtmlToolbar *toolbar) | |
| 319 | { | |
| 320 | if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(color))) { | |
| 321 | GtkWidget *colorsel; | |
| 9025 | 322 | GdkColor bgcolor; |
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10297
diff
changeset
|
323 | char *color = gtk_imhtml_get_current_backcolor(GTK_IMHTML(toolbar->imhtml)); |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
324 | |
| 8317 | 325 | if (!toolbar->bgcolor_dialog) { |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
326 | |
|
8359
3c62ea91eba8
[gaim-migrate @ 9083]
Mark Doliner <markdoliner@pidgin.im>
parents:
8325
diff
changeset
|
327 | toolbar->bgcolor_dialog = gtk_color_selection_dialog_new(_("Select Background Color")); |
| 8317 | 328 | colorsel = GTK_COLOR_SELECTION_DIALOG(toolbar->bgcolor_dialog)->colorsel; |
| 9025 | 329 | if (color) { |
| 330 | gdk_color_parse(color, &bgcolor); | |
| 331 | gtk_color_selection_set_current_color(GTK_COLOR_SELECTION(colorsel), &bgcolor); | |
|
10504
eae130eefbfe
[gaim-migrate @ 11796]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10297
diff
changeset
|
332 | g_free(color); |
| 9025 | 333 | } |
| 334 | ||
| 15884 | 335 | g_object_set_data(G_OBJECT(colorsel), "purple_toolbar", toolbar); |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
336 | |
| 8317 | 337 | g_signal_connect(G_OBJECT(toolbar->bgcolor_dialog), "delete_event", |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
338 | G_CALLBACK(destroy_toolbar_bgcolor), toolbar); |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
339 | g_signal_connect(G_OBJECT(GTK_COLOR_SELECTION_DIALOG(toolbar->bgcolor_dialog)->ok_button), "clicked", |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
340 | G_CALLBACK(do_bgcolor), colorsel); |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
341 | g_signal_connect(G_OBJECT(GTK_COLOR_SELECTION_DIALOG(toolbar->bgcolor_dialog)->cancel_button), "clicked", |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
342 | G_CALLBACK(cancel_toolbar_bgcolor), toolbar); |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
343 | |
| 8317 | 344 | } |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
345 | gtk_window_present(GTK_WINDOW(toolbar->bgcolor_dialog)); |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
346 | } else { |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
347 | cancel_toolbar_bgcolor(color, toolbar); |
| 8317 | 348 | } |
| 349 | gtk_widget_grab_focus(toolbar->imhtml); | |
| 350 | } | |
| 351 | ||
| 352 | static void | |
|
11271
939be1fdbf7a
[gaim-migrate @ 13454]
Richard Laager <rlaager@pidgin.im>
parents:
11267
diff
changeset
|
353 | clear_formatting_cb(GtkWidget *clear, GtkIMHtmlToolbar *toolbar) |
|
939be1fdbf7a
[gaim-migrate @ 13454]
Richard Laager <rlaager@pidgin.im>
parents:
11267
diff
changeset
|
354 | { |
|
11275
cdcc651d7ecd
[gaim-migrate @ 13461]
Richard Laager <rlaager@pidgin.im>
parents:
11271
diff
changeset
|
355 | toggle_button_set_active_block(GTK_TOGGLE_BUTTON(toolbar->clear), FALSE, toolbar); |
|
11271
939be1fdbf7a
[gaim-migrate @ 13454]
Richard Laager <rlaager@pidgin.im>
parents:
11267
diff
changeset
|
356 | gtk_imhtml_clear_formatting(GTK_IMHTML(toolbar->imhtml)); |
|
939be1fdbf7a
[gaim-migrate @ 13454]
Richard Laager <rlaager@pidgin.im>
parents:
11267
diff
changeset
|
357 | } |
|
939be1fdbf7a
[gaim-migrate @ 13454]
Richard Laager <rlaager@pidgin.im>
parents:
11267
diff
changeset
|
358 | |
|
939be1fdbf7a
[gaim-migrate @ 13454]
Richard Laager <rlaager@pidgin.im>
parents:
11267
diff
changeset
|
359 | static void |
| 15884 | 360 | cancel_link_cb(GtkIMHtmlToolbar *toolbar, PurpleRequestFields *fields) |
| 8317 | 361 | { |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
362 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toolbar->link), FALSE); |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
363 | |
| 8317 | 364 | toolbar->link_dialog = NULL; |
| 365 | } | |
| 366 | ||
| 367 | static void | |
| 368 | close_link_dialog(GtkIMHtmlToolbar *toolbar) | |
| 369 | { | |
| 370 | if (toolbar->link_dialog != NULL) | |
| 371 | { | |
| 15884 | 372 | purple_request_close(PURPLE_REQUEST_FIELDS, toolbar->link_dialog); |
| 8317 | 373 | toolbar->link_dialog = NULL; |
| 374 | } | |
| 375 | } | |
| 376 | ||
| 377 | static void | |
| 15884 | 378 | do_insert_link_cb(GtkIMHtmlToolbar *toolbar, PurpleRequestFields *fields) |
| 8317 | 379 | { |
| 380 | const char *url, *description; | |
| 381 | ||
| 15884 | 382 | url = purple_request_fields_get_string(fields, "url"); |
| 9041 | 383 | if (GTK_IMHTML(toolbar->imhtml)->format_functions & GTK_IMHTML_LINKDESC) |
| 15884 | 384 | description = purple_request_fields_get_string(fields, "description"); |
| 9041 | 385 | else |
| 386 | description = NULL; | |
| 8317 | 387 | |
| 388 | if (description == NULL) | |
| 389 | description = url; | |
| 390 | ||
| 8677 | 391 | gtk_imhtml_insert_link(GTK_IMHTML(toolbar->imhtml), |
| 392 | gtk_text_buffer_get_insert(GTK_IMHTML(toolbar->imhtml)->text_buffer), | |
| 393 | url, description); | |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
394 | |
| 8317 | 395 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toolbar->link), FALSE); |
| 396 | ||
| 397 | toolbar->link_dialog = NULL; | |
| 398 | } | |
| 399 | ||
| 400 | static void | |
| 401 | insert_link_cb(GtkWidget *w, GtkIMHtmlToolbar *toolbar) | |
| 402 | { | |
| 403 | if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toolbar->link))) { | |
| 15884 | 404 | PurpleRequestFields *fields; |
| 405 | PurpleRequestFieldGroup *group; | |
| 406 | PurpleRequestField *field; | |
| 9599 | 407 | GtkTextIter start, end; |
| 9041 | 408 | char *msg; |
| 9599 | 409 | char *desc = NULL; |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
410 | |
| 15884 | 411 | fields = purple_request_fields_new(); |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
412 | |
| 15884 | 413 | group = purple_request_field_group_new(NULL); |
| 414 | purple_request_fields_add_group(fields, group); | |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
415 | |
| 15884 | 416 | field = purple_request_field_string_new("url", _("_URL"), NULL, FALSE); |
| 417 | purple_request_field_set_required(field, TRUE); | |
| 418 | purple_request_field_group_add_field(group, field); | |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
419 | |
| 9041 | 420 | if(GTK_IMHTML(toolbar->imhtml)->format_functions & GTK_IMHTML_LINKDESC) { |
| 9599 | 421 | if (gtk_text_buffer_get_selection_bounds(GTK_IMHTML(toolbar->imhtml)->text_buffer, &start, &end)) { |
| 422 | desc = gtk_imhtml_get_text(GTK_IMHTML(toolbar->imhtml), &start, &end); | |
| 423 | } | |
| 15884 | 424 | field = purple_request_field_string_new("description", _("_Description"), |
| 9599 | 425 | desc, FALSE); |
| 15884 | 426 | purple_request_field_group_add_field(group, field); |
| 9041 | 427 | msg = g_strdup(_("Please enter the URL and description of the " |
| 428 | "link that you want to insert. The description " | |
| 429 | "is optional.")); | |
| 430 | } else { | |
| 431 | msg = g_strdup(_("Please enter the URL of the " | |
| 432 | "link that you want to insert.")); | |
| 433 | } | |
|
8319
6c18762beceb
[gaim-migrate @ 9043]
Christian Hammond <chipx86@chipx86.com>
parents:
8317
diff
changeset
|
434 | |
| 8317 | 435 | toolbar->link_dialog = |
|
21653
621c47778132
merge of '73ae9aeda3c58fbf8437421da68d19d06f93e686'
Evan Schoenberg <evands@pidgin.im>
parents:
21233
diff
changeset
|
436 | purple_request_fields(toolbar, _("Insert Link"), |
| 8317 | 437 | NULL, |
|
21653
621c47778132
merge of '73ae9aeda3c58fbf8437421da68d19d06f93e686'
Evan Schoenberg <evands@pidgin.im>
parents:
21233
diff
changeset
|
438 | msg, |
| 8317 | 439 | fields, |
| 440 | _("_Insert"), G_CALLBACK(do_insert_link_cb), | |
| 441 | _("Cancel"), G_CALLBACK(cancel_link_cb), | |
|
21653
621c47778132
merge of '73ae9aeda3c58fbf8437421da68d19d06f93e686'
Evan Schoenberg <evands@pidgin.im>
parents:
21233
diff
changeset
|
442 | NULL, NULL, NULL, |
|
621c47778132
merge of '73ae9aeda3c58fbf8437421da68d19d06f93e686'
Evan Schoenberg <evands@pidgin.im>
parents:
21233
diff
changeset
|
443 | toolbar); |
| 9041 | 444 | g_free(msg); |
| 9599 | 445 | g_free(desc); |
|
8322
9bae68fd2612
[gaim-migrate @ 9046]
Christian Hammond <chipx86@chipx86.com>
parents:
8321
diff
changeset
|
446 | } else { |
| 8317 | 447 | close_link_dialog(toolbar); |
| 448 | } | |
| 449 | gtk_widget_grab_focus(toolbar->imhtml); | |
| 450 | } | |
| 451 | ||
|
19647
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
452 | static void insert_hr_cb(GtkWidget *widget, GtkIMHtmlToolbar *toolbar) |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
453 | { |
|
22648
e286d795c5f9
Patch from Marcus Lundblad ('mlundblad') to improve audio support in xmpp.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
454 | GtkTextIter iter; |
|
e286d795c5f9
Patch from Marcus Lundblad ('mlundblad') to improve audio support in xmpp.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
455 | GtkTextMark *ins; |
|
19647
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
456 | GtkIMHtmlScalable *hr; |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
457 | |
|
22648
e286d795c5f9
Patch from Marcus Lundblad ('mlundblad') to improve audio support in xmpp.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
458 | ins = gtk_text_buffer_get_insert(gtk_text_view_get_buffer(GTK_TEXT_VIEW(toolbar->imhtml))); |
|
e286d795c5f9
Patch from Marcus Lundblad ('mlundblad') to improve audio support in xmpp.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
459 | gtk_text_buffer_get_iter_at_mark(gtk_text_view_get_buffer(GTK_TEXT_VIEW(toolbar->imhtml)), &iter, ins); |
|
19647
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
460 | hr = gtk_imhtml_hr_new(); |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
461 | gtk_imhtml_hr_add_to(hr, GTK_IMHTML(toolbar->imhtml), &iter); |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
462 | } |
| 8317 | 463 | |
| 464 | static void | |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
465 | do_insert_image_cb(GtkWidget *widget, int response, GtkIMHtmlToolbar *toolbar) |
| 8317 | 466 | { |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
467 | gchar *filename, *name, *buf; |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
468 | char *filedata; |
| 8317 | 469 | size_t size; |
| 470 | GError *error = NULL; | |
| 471 | int id; | |
| 8962 | 472 | GtkTextIter iter; |
| 473 | GtkTextMark *ins; | |
| 8317 | 474 | |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
475 | #if GTK_CHECK_VERSION(2,4,0) /* FILECHOOSER */ |
|
21985
bf0e936998e4
Move some curly braces around so static analysis tools can properly detect
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
21954
diff
changeset
|
476 | if (response != GTK_RESPONSE_ACCEPT) |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
477 | #else /* FILECHOOSER */ |
|
21985
bf0e936998e4
Move some curly braces around so static analysis tools can properly detect
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
21954
diff
changeset
|
478 | if (response != GTK_RESPONSE_OK) |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
479 | #endif /* FILECHOOSER */ |
|
21985
bf0e936998e4
Move some curly braces around so static analysis tools can properly detect
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
21954
diff
changeset
|
480 | { |
| 8317 | 481 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toolbar->image), FALSE); |
| 482 | return; | |
| 483 | } | |
| 484 | ||
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
485 | #if GTK_CHECK_VERSION(2,4,0) /* FILECHOOSER */ |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
486 | filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget)); |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
487 | #else /* FILECHOOSER */ |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
488 | filename = g_strdup(gtk_file_selection_get_filename(GTK_FILE_SELECTION(widget))); |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
489 | #endif /* FILECHOOSER */ |
| 8317 | 490 | |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
491 | if (filename == NULL) { |
| 8317 | 492 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toolbar->image), FALSE); |
| 493 | return; | |
| 494 | } | |
| 495 | ||
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
496 | #if !GTK_CHECK_VERSION(2,4,0) /* FILECHOOSER */ |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15435
diff
changeset
|
497 | if (pidgin_check_if_dir(filename, GTK_FILE_SELECTION(widget))) { |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
498 | g_free(filename); |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
499 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toolbar->image), FALSE); |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
500 | return; |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
501 | } |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
502 | #endif /* FILECHOOSER */ |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
503 | |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
504 | /* The following triggers a callback that closes the widget */ |
| 8317 | 505 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toolbar->image), FALSE); |
| 506 | ||
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
507 | if (!g_file_get_contents(filename, &filedata, &size, &error)) { |
| 15884 | 508 | purple_notify_error(NULL, NULL, error->message, NULL); |
| 8317 | 509 | |
| 510 | g_error_free(error); | |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
511 | g_free(filename); |
| 8317 | 512 | |
| 513 | return; | |
| 514 | } | |
| 515 | ||
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
516 | name = strrchr(filename, G_DIR_SEPARATOR) + 1; |
| 8317 | 517 | |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
16263
diff
changeset
|
518 | id = purple_imgstore_add_with_id(filedata, size, name); |
| 8317 | 519 | |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
520 | if (id == 0) { |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
521 | buf = g_strdup_printf(_("Failed to store image: %s\n"), filename); |
| 15884 | 522 | purple_notify_error(NULL, NULL, buf, NULL); |
| 8317 | 523 | |
| 524 | g_free(buf); | |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
525 | g_free(filename); |
| 8317 | 526 | |
| 527 | return; | |
| 528 | } | |
| 529 | ||
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
530 | g_free(filename); |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
531 | |
| 8962 | 532 | ins = gtk_text_buffer_get_insert(gtk_text_view_get_buffer(GTK_TEXT_VIEW(toolbar->imhtml))); |
| 533 | gtk_text_buffer_get_iter_at_mark(gtk_text_view_get_buffer(GTK_TEXT_VIEW(toolbar->imhtml)), | |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
534 | &iter, ins); |
| 8962 | 535 | gtk_imhtml_insert_image_at_iter(GTK_IMHTML(toolbar->imhtml), id, &iter); |
|
16437
7ff7c3405ea2
Rework the buddy icon subsystem to use the imgstore subsystem, and modify the
Richard Laager <rlaager@pidgin.im>
parents:
16263
diff
changeset
|
536 | purple_imgstore_unref_by_id(id); |
| 8317 | 537 | } |
| 538 | ||
| 539 | ||
| 540 | static void | |
| 541 | insert_image_cb(GtkWidget *save, GtkIMHtmlToolbar *toolbar) | |
| 542 | { | |
| 543 | GtkWidget *window; | |
| 544 | ||
| 545 | if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toolbar->image))) { | |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
546 | #if GTK_CHECK_VERSION(2,4,0) /* FILECHOOSER */ |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
547 | window = gtk_file_chooser_dialog_new(_("Insert Image"), |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
548 | NULL, |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
549 | GTK_FILE_CHOOSER_ACTION_OPEN, |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
550 | GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
551 | GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
552 | NULL); |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
553 | gtk_dialog_set_default_response(GTK_DIALOG(window), GTK_RESPONSE_ACCEPT); |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
554 | g_signal_connect(G_OBJECT(GTK_FILE_CHOOSER(window)), |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
555 | "response", G_CALLBACK(do_insert_image_cb), toolbar); |
|
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
556 | #else /* FILECHOOSER */ |
| 8317 | 557 | window = gtk_file_selection_new(_("Insert Image")); |
| 558 | gtk_dialog_set_default_response(GTK_DIALOG(window), GTK_RESPONSE_OK); | |
| 559 | g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(window)), | |
| 560 | "response", G_CALLBACK(do_insert_image_cb), toolbar); | |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
561 | #endif /* FILECHOOSER */ |
| 8317 | 562 | |
| 563 | gtk_widget_show(window); | |
| 564 | toolbar->image_dialog = window; | |
| 565 | } else { | |
| 566 | gtk_widget_destroy(toolbar->image_dialog); | |
| 567 | toolbar->image_dialog = NULL; | |
| 568 | } | |
|
9522
e38381bd8c05
[gaim-migrate @ 10349]
Mark Doliner <markdoliner@pidgin.im>
parents:
9287
diff
changeset
|
569 | |
| 8317 | 570 | gtk_widget_grab_focus(toolbar->imhtml); |
| 571 | } | |
| 572 | ||
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
573 | |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
574 | static void |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
575 | destroy_smiley_dialog(GtkIMHtmlToolbar *toolbar) |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
576 | { |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
577 | if (toolbar->smiley_dialog != NULL) |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
578 | { |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
579 | gtk_widget_destroy(toolbar->smiley_dialog); |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
580 | toolbar->smiley_dialog = NULL; |
| 8317 | 581 | } |
| 582 | } | |
| 583 | ||
|
22032
8136dd5eeda3
Make some more event handlers return appropriate gboolean values. This turns
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21985
diff
changeset
|
584 | static gboolean |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
585 | close_smiley_dialog(GtkIMHtmlToolbar *toolbar) |
|
10134
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
586 | { |
|
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
587 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toolbar->smiley), FALSE); |
|
22032
8136dd5eeda3
Make some more event handlers return appropriate gboolean values. This turns
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21985
diff
changeset
|
588 | return FALSE; |
|
10134
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
589 | } |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
590 | |
| 8317 | 591 | |
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
592 | static void |
|
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
593 | insert_smiley_text(GtkWidget *widget, GtkIMHtmlToolbar *toolbar) |
| 8317 | 594 | { |
| 9027 | 595 | char *smiley_text, *escaped_smiley; |
| 596 | ||
| 597 | smiley_text = g_object_get_data(G_OBJECT(widget), "smiley_text"); | |
|
10732
5e314ab498bf
[gaim-migrate @ 12334]
Richard Laager <rlaager@pidgin.im>
parents:
10504
diff
changeset
|
598 | escaped_smiley = g_markup_escape_text(smiley_text, -1); |
| 8317 | 599 | |
| 8456 | 600 | gtk_imhtml_insert_smiley(GTK_IMHTML(toolbar->imhtml), |
| 601 | GTK_IMHTML(toolbar->imhtml)->protocol_name, | |
| 9027 | 602 | escaped_smiley); |
| 8317 | 603 | |
| 9027 | 604 | g_free(escaped_smiley); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
605 | |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
606 | close_smiley_dialog(toolbar); |
| 8317 | 607 | } |
| 608 | ||
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
609 | /* smiley buttons list */ |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
610 | struct smiley_button_list { |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
611 | int width, height; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
612 | GtkWidget *button; |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
613 | const GtkIMHtmlSmiley *smiley; |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
614 | struct smiley_button_list *next; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
615 | }; |
| 8317 | 616 | |
|
11862
5d4bc6d54688
[gaim-migrate @ 14153]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11849
diff
changeset
|
617 | static struct smiley_button_list * |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
618 | sort_smileys(struct smiley_button_list *ls, GtkIMHtmlToolbar *toolbar, |
|
23484
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
619 | int *width, const GtkIMHtmlSmiley *smiley) |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
620 | { |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
621 | GtkWidget *image; |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
622 | GtkWidget *button; |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
623 | GtkRequisition size; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
624 | struct smiley_button_list *cur; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
625 | struct smiley_button_list *it, *it_last; |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
626 | const gchar *filename = smiley->file; |
|
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
627 | gchar *face = smiley->smile; |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
628 | PurpleSmiley *psmiley = NULL; |
|
23484
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
629 | gboolean supports_custom = (gtk_imhtml_get_format_functions(GTK_IMHTML(toolbar->imhtml)) & GTK_IMHTML_CUSTOM_SMILEY); |
| 8317 | 630 | |
|
23003
aaab954eed6b
Plug a small memory leak in the smiley dialog, and use g_new0/g_free
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
631 | cur = g_new0(struct smiley_button_list, 1); |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
632 | it = ls; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
633 | it_last = ls; /* list iterators*/ |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
634 | image = gtk_image_new_from_file(filename); |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
635 | |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
636 | gtk_widget_size_request(image, &size); |
|
22443
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
637 | |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
638 | if (size.width > 24 && |
|
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
639 | smiley->flags & GTK_IMHTML_SMILEY_CUSTOM) { /* This is a custom smiley, let's scale it */ |
|
22443
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
640 | GdkPixbuf *pixbuf = NULL; |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
641 | GtkImageType type; |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
642 | |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
643 | type = gtk_image_get_storage_type(GTK_IMAGE(image)); |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
644 | |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
645 | if (type == GTK_IMAGE_PIXBUF) { |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
646 | pixbuf = gtk_image_get_pixbuf(GTK_IMAGE(image)); |
|
23009
0bac25fdc9aa
Unref some gdkpixbufs to plug some memory leaks. References #1187.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23008
diff
changeset
|
647 | } else if (type == GTK_IMAGE_ANIMATION) { |
|
22443
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
648 | GdkPixbufAnimation *animation; |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
649 | |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
650 | animation = gtk_image_get_animation(GTK_IMAGE(image)); |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
651 | |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
652 | pixbuf = gdk_pixbuf_animation_get_static_image(animation); |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
653 | } |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
654 | |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
655 | if (pixbuf != NULL) { |
|
23009
0bac25fdc9aa
Unref some gdkpixbufs to plug some memory leaks. References #1187.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23008
diff
changeset
|
656 | GdkPixbuf *resized; |
|
22443
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
657 | resized = gdk_pixbuf_scale_simple(pixbuf, 24, 24, |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
658 | GDK_INTERP_HYPER); |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
659 | |
|
23011
33ff8a373a92
A leak fix from malu. Thanks!
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23010
diff
changeset
|
660 | gtk_image_set_from_pixbuf(GTK_IMAGE(image), resized); /* This unrefs pixbuf */ |
|
22443
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
661 | gtk_widget_size_request(image, &size); |
|
23009
0bac25fdc9aa
Unref some gdkpixbufs to plug some memory leaks. References #1187.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23008
diff
changeset
|
662 | g_object_unref(G_OBJECT(resized)); |
|
22443
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
663 | } |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
664 | } |
|
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
665 | |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
666 | (*width) += size.width; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
667 | |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
668 | button = gtk_button_new(); |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
669 | gtk_container_add(GTK_CONTAINER(button), image); |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
670 | |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
671 | g_object_set_data(G_OBJECT(button), "smiley_text", face); |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
672 | g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(insert_smiley_text), toolbar); |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
673 | |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
674 | gtk_tooltips_set_tip(toolbar->tooltips, button, face, NULL); |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
675 | |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
676 | /* these look really weird with borders */ |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
677 | gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE); |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
678 | |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
679 | psmiley = purple_smileys_find_by_shortcut(smiley->smile); |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
680 | /* If this is a "non-custom" smiley, check to see if its shortcut is |
|
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
681 | "shadowed" by any custom smiley. This can only happen if the connection |
|
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
682 | is custom smiley-enabled */ |
|
23484
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
683 | if (supports_custom && psmiley && !(smiley->flags & GTK_IMHTML_SMILEY_CUSTOM)) { |
|
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
684 | gchar tip[128]; |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
24275
diff
changeset
|
685 | g_snprintf(tip, sizeof(tip), |
|
23484
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
686 | _("This smiley is disabled because a custom smiley exists for this shortcut:\n %s"), |
|
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
687 | face); |
|
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
688 | gtk_tooltips_set_tip(toolbar->tooltips, button, tip, NULL); |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
689 | gtk_widget_set_sensitive(button, FALSE); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
690 | } else if (psmiley) { |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
691 | /* Remove the button if the smiley is destroyed */ |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
692 | g_signal_connect_object(G_OBJECT(psmiley), "destroy", G_CALLBACK(gtk_widget_destroy), |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
693 | button, G_CONNECT_SWAPPED); |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
694 | } |
|
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
695 | |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
696 | /* set current element to add */ |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
697 | cur->height = size.height; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
698 | cur->width = size.width; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
699 | cur->button = button; |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
700 | cur->smiley = smiley; |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
701 | cur->next = ls; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
702 | |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
703 | /* check where to insert by height */ |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
704 | if (ls == NULL) |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
705 | return cur; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
706 | while (it != NULL) { |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
707 | it_last = it; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
708 | it = it->next; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
709 | } |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
710 | cur->next = it; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
711 | it_last->next = cur; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
712 | return ls; |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
713 | } |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
714 | |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
715 | static gboolean |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
716 | smiley_is_unique(GSList *list, GtkIMHtmlSmiley *smiley) |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
717 | { |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
718 | while (list) { |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
719 | GtkIMHtmlSmiley *cur = (GtkIMHtmlSmiley *) list->data; |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
720 | if (!strcmp(cur->file, smiley->file)) |
| 8317 | 721 | return FALSE; |
| 722 | list = list->next; | |
| 723 | } | |
| 724 | return TRUE; | |
| 725 | } | |
| 726 | ||
|
17394
ebe5e0e583da
Close smiley dialog on GDK_Escape or button 1 press.
Gabriel Schulhof <nix@go-nix.ca>
parents:
17303
diff
changeset
|
727 | static gboolean |
|
ebe5e0e583da
Close smiley dialog on GDK_Escape or button 1 press.
Gabriel Schulhof <nix@go-nix.ca>
parents:
17303
diff
changeset
|
728 | smiley_dialog_input_cb(GtkWidget *dialog, GdkEvent *event, GtkIMHtmlToolbar *toolbar) |
|
ebe5e0e583da
Close smiley dialog on GDK_Escape or button 1 press.
Gabriel Schulhof <nix@go-nix.ca>
parents:
17303
diff
changeset
|
729 | { |
|
18546
3515b5b454e9
Rework the logic to be (IMHO) easy to read.
Richard Laager <rlaager@pidgin.im>
parents:
18545
diff
changeset
|
730 | if ((event->type == GDK_KEY_PRESS && event->key.keyval == GDK_Escape) || |
|
3515b5b454e9
Rework the logic to be (IMHO) easy to read.
Richard Laager <rlaager@pidgin.im>
parents:
18545
diff
changeset
|
731 | (event->type == GDK_BUTTON_PRESS && event->button.button == 1)) |
|
3515b5b454e9
Rework the logic to be (IMHO) easy to read.
Richard Laager <rlaager@pidgin.im>
parents:
18545
diff
changeset
|
732 | { |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
733 | close_smiley_dialog(toolbar); |
|
18546
3515b5b454e9
Rework the logic to be (IMHO) easy to read.
Richard Laager <rlaager@pidgin.im>
parents:
18545
diff
changeset
|
734 | return TRUE; |
|
3515b5b454e9
Rework the logic to be (IMHO) easy to read.
Richard Laager <rlaager@pidgin.im>
parents:
18545
diff
changeset
|
735 | } |
|
17394
ebe5e0e583da
Close smiley dialog on GDK_Escape or button 1 press.
Gabriel Schulhof <nix@go-nix.ca>
parents:
17303
diff
changeset
|
736 | |
|
18546
3515b5b454e9
Rework the logic to be (IMHO) easy to read.
Richard Laager <rlaager@pidgin.im>
parents:
18545
diff
changeset
|
737 | return FALSE; |
|
17394
ebe5e0e583da
Close smiley dialog on GDK_Escape or button 1 press.
Gabriel Schulhof <nix@go-nix.ca>
parents:
17303
diff
changeset
|
738 | } |
| 8317 | 739 | |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
740 | static void |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
741 | add_smiley_list(GtkWidget *container, struct smiley_button_list *list, |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
742 | int max_width, gboolean custom) |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
743 | { |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
744 | GtkWidget *line; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
745 | int line_width = 0; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
746 | |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
747 | if (!list) |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
748 | return; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
749 | |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
750 | line = gtk_hbox_new(FALSE, 0); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
751 | gtk_box_pack_start(GTK_BOX(container), line, FALSE, FALSE, 0); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
752 | for (; list; list = list->next) { |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
753 | if (custom != !!(list->smiley->flags & GTK_IMHTML_SMILEY_CUSTOM)) |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
754 | continue; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
755 | gtk_box_pack_start(GTK_BOX(line), list->button, FALSE, FALSE, 0); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
756 | gtk_widget_show(list->button); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
757 | line_width += list->width; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
758 | if (line_width >= max_width) { |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
759 | if (list->next) { |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
760 | line = gtk_hbox_new(FALSE, 0); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
761 | gtk_box_pack_start(GTK_BOX(container), line, FALSE, FALSE, 0); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
762 | } |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
763 | line_width = 0; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
764 | } |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
765 | } |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
766 | } |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
767 | |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
768 | static void |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
769 | insert_smiley_cb(GtkWidget *smiley, GtkIMHtmlToolbar *toolbar) |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
770 | { |
|
23296
7f870792ce29
Put the 'manage' button outside the scrolling area.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23289
diff
changeset
|
771 | GtkWidget *dialog, *vbox; |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
772 | GtkWidget *smiley_table = NULL; |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
773 | GSList *smileys, *unique_smileys = NULL; |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
774 | const GSList *custom_smileys = NULL; |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
775 | gboolean supports_custom = FALSE; |
|
23019
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
776 | GtkRequisition req; |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
777 | GtkWidget *scrolled, *viewport; |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
778 | |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
779 | if (!gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(smiley))) { |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
780 | destroy_smiley_dialog(toolbar); |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
781 | gtk_widget_grab_focus(toolbar->imhtml); |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
782 | return; |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
783 | } |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
784 | |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
785 | if (toolbar->sml) |
|
16263
27e0ef0f38e6
Word on the street is that we don't want things named pidginfoo_bar(), but
Richard Laager <rlaager@pidgin.im>
parents:
16254
diff
changeset
|
786 | smileys = pidgin_themes_get_proto_smileys(toolbar->sml); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
787 | else |
|
16263
27e0ef0f38e6
Word on the street is that we don't want things named pidginfoo_bar(), but
Richard Laager <rlaager@pidgin.im>
parents:
16254
diff
changeset
|
788 | smileys = pidgin_themes_get_proto_smileys(NULL); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
789 | |
|
23484
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
790 | /* Note: prepend smileys to list to avoid O(n^2) overhead when there is |
|
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
791 | a large number of smileys... need to revers the list after for the dialog |
|
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
792 | work... */ |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
793 | while(smileys) { |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
794 | GtkIMHtmlSmiley *smiley = (GtkIMHtmlSmiley *) smileys->data; |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
795 | if(!smiley->hidden) { |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
796 | if(smiley_is_unique(unique_smileys, smiley)) { |
|
23484
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
797 | unique_smileys = g_slist_prepend(unique_smileys, smiley); |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
798 | } |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
799 | } |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
800 | smileys = smileys->next; |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
801 | } |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
802 | supports_custom = (gtk_imhtml_get_format_functions(GTK_IMHTML(toolbar->imhtml)) & GTK_IMHTML_CUSTOM_SMILEY); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
803 | if (toolbar->imhtml && supports_custom) { |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
804 | const GSList *iterator = NULL; |
|
23010
6230fac29cee
Show the custom smileys only on accounts that support it. References
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23009
diff
changeset
|
805 | custom_smileys = pidgin_smileys_get_all(); |
|
22443
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
806 | |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
807 | for (iterator = custom_smileys ; iterator ; |
|
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
808 | iterator = g_slist_next(iterator)) { |
|
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
809 | GtkIMHtmlSmiley *smiley = (GtkIMHtmlSmiley *) iterator->data; |
|
23484
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
810 | unique_smileys = g_slist_prepend(unique_smileys, smiley); |
|
23010
6230fac29cee
Show the custom smileys only on accounts that support it. References
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23009
diff
changeset
|
811 | } |
|
22443
7b8772af6bb7
Apply the custom smiley patches from #1187, from Jorge VillaseƱo (Masca) and
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
812 | } |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
24275
diff
changeset
|
813 | |
|
23484
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
814 | /* we need to reverse the list to get the smileys in the correct order */ |
|
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
815 | unique_smileys = g_slist_reverse(unique_smileys); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
816 | |
|
22099
8e70e3ba6096
Modified patch from Gabriel (Sylar?) Schulof to deprecate PIDGIN_DIALOG. Closes #4535. (PS: I am aware of --author).
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22032
diff
changeset
|
817 | dialog = pidgin_create_dialog(_("Smile!"), 0, "smiley_dialog", FALSE); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
818 | gtk_window_set_position(GTK_WINDOW(dialog), GTK_WIN_POS_MOUSE); |
|
23296
7f870792ce29
Put the 'manage' button outside the scrolling area.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23289
diff
changeset
|
819 | vbox = pidgin_dialog_get_vbox_with_properties(GTK_DIALOG(dialog), FALSE, 0); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
820 | |
|
15847
da522f9a7743
Don't use g_list_length() and g_slist_length() when all you want to
Mark Doliner <markdoliner@pidgin.im>
parents:
15623
diff
changeset
|
821 | if (unique_smileys != NULL) { |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
822 | struct smiley_button_list *ls; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
823 | int max_line_width, num_lines, button_width = 0; |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
824 | |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
825 | /* We use hboxes packed in a vbox */ |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
826 | ls = NULL; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
827 | max_line_width = 0; |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
828 | num_lines = floor(sqrt(g_slist_length(unique_smileys))); |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
829 | smiley_table = gtk_vbox_new(FALSE, 0); |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
830 | |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
831 | if (supports_custom) { |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
832 | GtkWidget *manage = gtk_button_new_with_mnemonic(_("_Manage custom smileys")); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
833 | GtkRequisition req; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
834 | g_signal_connect(G_OBJECT(manage), "clicked", |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
835 | G_CALLBACK(pidgin_smiley_manager_show), NULL); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
836 | g_signal_connect_swapped(G_OBJECT(manage), "clicked", |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
837 | G_CALLBACK(gtk_widget_destroy), dialog); |
|
23296
7f870792ce29
Put the 'manage' button outside the scrolling area.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23289
diff
changeset
|
838 | gtk_box_pack_end(GTK_BOX(vbox), manage, FALSE, TRUE, 0); |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
839 | gtk_widget_size_request(manage, &req); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
840 | button_width = req.width; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
841 | } |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
842 | |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
843 | /* create list of smileys sorted by height */ |
|
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
844 | while (unique_smileys) { |
|
23014
d406337e359a
Patch from malu (mlundblad) to disable a regular smiley in the smiley
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23011
diff
changeset
|
845 | GtkIMHtmlSmiley *smiley = (GtkIMHtmlSmiley *) unique_smileys->data; |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
846 | if (!smiley->hidden) { |
|
23484
8ee3e86bfdca
Do not disable default smileys with dupliate shortcuts if custom smileys
Marcus Lundblad <malu@pidgin.im>
parents:
23368
diff
changeset
|
847 | ls = sort_smileys(ls, toolbar, &max_line_width, smiley); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
848 | } |
|
23003
aaab954eed6b
Plug a small memory leak in the smiley dialog, and use g_new0/g_free
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22218
diff
changeset
|
849 | unique_smileys = g_slist_delete_link(unique_smileys, unique_smileys); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
850 | } |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
851 | /* The window will be at least as wide as the 'Manage ..' button */ |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
852 | max_line_width = MAX(button_width, max_line_width / num_lines); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
853 | |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
854 | /* pack buttons of the list */ |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
855 | add_smiley_list(smiley_table, ls, max_line_width, FALSE); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
856 | if (supports_custom) { |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
857 | gtk_box_pack_start(GTK_BOX(smiley_table), gtk_hseparator_new(), TRUE, FALSE, 0); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
858 | add_smiley_list(smiley_table, ls, max_line_width, TRUE); |
|
10894
b75b237a1212
[gaim-migrate @ 12608]
Benjamin Canou <bookeldor@gmail.com>
parents:
10814
diff
changeset
|
859 | } |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
860 | while (ls) { |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
861 | struct smiley_button_list *tmp = ls->next; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
862 | g_free(ls); |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
863 | ls = tmp; |
|
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
864 | } |
|
18547
cb6e8c0a08ca
Rework the smiley dialog close logic: Escape will always close the window.
Richard Laager <rlaager@pidgin.im>
parents:
18546
diff
changeset
|
865 | |
|
cb6e8c0a08ca
Rework the smiley dialog close logic: Escape will always close the window.
Richard Laager <rlaager@pidgin.im>
parents:
18546
diff
changeset
|
866 | gtk_widget_add_events(dialog, GDK_KEY_PRESS_MASK); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
867 | } |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
868 | else { |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
869 | smiley_table = gtk_label_new(_("This theme has no available smileys.")); |
|
18547
cb6e8c0a08ca
Rework the smiley dialog close logic: Escape will always close the window.
Richard Laager <rlaager@pidgin.im>
parents:
18546
diff
changeset
|
870 | gtk_widget_add_events(dialog, GDK_KEY_PRESS_MASK | GDK_BUTTON_PRESS_MASK); |
|
cb6e8c0a08ca
Rework the smiley dialog close logic: Escape will always close the window.
Richard Laager <rlaager@pidgin.im>
parents:
18546
diff
changeset
|
871 | g_signal_connect(G_OBJECT(dialog), "button-press-event", (GCallback)smiley_dialog_input_cb, toolbar); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
872 | } |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
873 | |
|
23019
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
874 | scrolled = gtk_scrolled_window_new (NULL, NULL); |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
875 | gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW (scrolled), GTK_SHADOW_NONE); |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
876 | gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW (scrolled), |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
877 | GTK_POLICY_NEVER, GTK_POLICY_NEVER); |
|
23296
7f870792ce29
Put the 'manage' button outside the scrolling area.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23289
diff
changeset
|
878 | gtk_box_pack_start(GTK_BOX(vbox), scrolled, TRUE, TRUE, 0); |
|
23019
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
879 | gtk_widget_show(scrolled); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
880 | |
|
23019
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
881 | gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled), smiley_table); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
882 | gtk_widget_show(smiley_table); |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
883 | |
|
23019
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
884 | viewport = gtk_widget_get_parent(smiley_table); |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
885 | gtk_viewport_set_shadow_type(GTK_VIEWPORT(viewport), GTK_SHADOW_NONE); |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
886 | |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
887 | /* connect signals */ |
|
23016
6cdca784716b
Separate the custom smileys from the regular smileys, and add a 'Manage'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23015
diff
changeset
|
888 | g_signal_connect_swapped(G_OBJECT(dialog), "destroy", G_CALLBACK(close_smiley_dialog), toolbar); |
|
23019
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
889 | g_signal_connect(G_OBJECT(dialog), "key-press-event", G_CALLBACK(smiley_dialog_input_cb), toolbar); |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
890 | |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
891 | gtk_window_set_transient_for(GTK_WINDOW(dialog), |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
892 | GTK_WINDOW(gtk_widget_get_toplevel(GTK_WIDGET(toolbar)))); |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
893 | |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
894 | /* show everything */ |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
895 | gtk_widget_show_all(dialog); |
|
23019
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
896 | |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
897 | gtk_widget_size_request(viewport, &req); |
|
23296
7f870792ce29
Put the 'manage' button outside the scrolling area.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23289
diff
changeset
|
898 | gtk_widget_set_size_request(scrolled, MIN(300, req.width), MIN(290, req.height)); |
|
23019
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
899 | |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
900 | /* The window has to be made resizable, and the scrollbars in the scrolled window |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
901 | * enabled only after setting the desired size of the window. If we do either of |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
902 | * these tasks before now, GTK+ miscalculates the required size, and erronously |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
903 | * makes one or both scrollbars visible (sometimes). |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
904 | * I too think this hack is gross. But I couldn't find a better way -- sadrul */ |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
905 | gtk_window_set_resizable(GTK_WINDOW(dialog), TRUE); |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
906 | gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW (scrolled), |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
907 | GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); |
|
427ce09896f8
Patch from Giulio 'Twain28' Pascali to make the smiley window scrollable.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
23016
diff
changeset
|
908 | |
|
20719
ce876ae5fb7d
Prevent the smiley window appearing outside of the working area on win32. Fixes #3261.
Daniel Atallah <datallah@pidgin.im>
parents:
20387
diff
changeset
|
909 | #ifdef _WIN32 |
|
ce876ae5fb7d
Prevent the smiley window appearing outside of the working area on win32. Fixes #3261.
Daniel Atallah <datallah@pidgin.im>
parents:
20387
diff
changeset
|
910 | winpidgin_ensure_onscreen(dialog); |
|
ce876ae5fb7d
Prevent the smiley window appearing outside of the working area on win32. Fixes #3261.
Daniel Atallah <datallah@pidgin.im>
parents:
20387
diff
changeset
|
911 | #endif |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
912 | |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
913 | toolbar->smiley_dialog = dialog; |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
914 | |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
915 | gtk_widget_grab_focus(toolbar->imhtml); |
|
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
916 | } |
| 8317 | 917 | |
| 8420 | 918 | static void update_buttons_cb(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons, GtkIMHtmlToolbar *toolbar) |
| 919 | { | |
| 920 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->bold), buttons & GTK_IMHTML_BOLD); | |
| 921 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->italic), buttons & GTK_IMHTML_ITALIC); | |
| 922 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->underline), buttons & GTK_IMHTML_UNDERLINE); | |
|
19719
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
923 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->strikethrough), buttons & GTK_IMHTML_STRIKE); |
| 8420 | 924 | |
| 925 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->larger_size), buttons & GTK_IMHTML_GROW); | |
| 926 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->smaller_size), buttons & GTK_IMHTML_SHRINK); | |
| 927 | ||
| 928 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->font), buttons & GTK_IMHTML_FACE); | |
| 929 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->fgcolor), buttons & GTK_IMHTML_FORECOLOR); | |
| 930 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->bgcolor), buttons & GTK_IMHTML_BACKCOLOR); | |
| 931 | ||
|
11314
50888518c108
[gaim-migrate @ 13516]
Luke Schierer <lschiere@pidgin.im>
parents:
11313
diff
changeset
|
932 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->clear), |
|
50888518c108
[gaim-migrate @ 13516]
Luke Schierer <lschiere@pidgin.im>
parents:
11313
diff
changeset
|
933 | (buttons & GTK_IMHTML_BOLD || |
|
50888518c108
[gaim-migrate @ 13516]
Luke Schierer <lschiere@pidgin.im>
parents:
11313
diff
changeset
|
934 | buttons & GTK_IMHTML_ITALIC || |
|
50888518c108
[gaim-migrate @ 13516]
Luke Schierer <lschiere@pidgin.im>
parents:
11313
diff
changeset
|
935 | buttons & GTK_IMHTML_UNDERLINE || |
|
19719
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
936 | buttons & GTK_IMHTML_STRIKE || |
|
11314
50888518c108
[gaim-migrate @ 13516]
Luke Schierer <lschiere@pidgin.im>
parents:
11313
diff
changeset
|
937 | buttons & GTK_IMHTML_GROW || |
|
50888518c108
[gaim-migrate @ 13516]
Luke Schierer <lschiere@pidgin.im>
parents:
11313
diff
changeset
|
938 | buttons & GTK_IMHTML_SHRINK || |
|
50888518c108
[gaim-migrate @ 13516]
Luke Schierer <lschiere@pidgin.im>
parents:
11313
diff
changeset
|
939 | buttons & GTK_IMHTML_FACE || |
|
50888518c108
[gaim-migrate @ 13516]
Luke Schierer <lschiere@pidgin.im>
parents:
11313
diff
changeset
|
940 | buttons & GTK_IMHTML_FORECOLOR || |
|
50888518c108
[gaim-migrate @ 13516]
Luke Schierer <lschiere@pidgin.im>
parents:
11313
diff
changeset
|
941 | buttons & GTK_IMHTML_BACKCOLOR)); |
|
50888518c108
[gaim-migrate @ 13516]
Luke Schierer <lschiere@pidgin.im>
parents:
11313
diff
changeset
|
942 | |
| 8420 | 943 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->image), buttons & GTK_IMHTML_IMAGE); |
| 944 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->link), buttons & GTK_IMHTML_LINK); | |
| 945 | gtk_widget_set_sensitive(GTK_WIDGET(toolbar->smiley), buttons & GTK_IMHTML_SMILEY); | |
| 8481 | 946 | } |
| 8420 | 947 | |
| 8481 | 948 | /* we call this when we want to _set_active the toggle button, it'll |
| 949 | * block the callback thats connected to the button so we don't have to | |
| 950 | * do the double toggling hack | |
| 951 | */ | |
| 952 | static void toggle_button_set_active_block(GtkToggleButton *button, | |
| 953 | gboolean is_active, | |
| 954 | GtkIMHtmlToolbar *toolbar) | |
| 955 | { | |
| 956 | GObject *object; | |
| 957 | g_return_if_fail(toolbar); | |
| 958 | ||
| 959 | object = g_object_ref(button); | |
| 960 | g_signal_handlers_block_matched(object, G_SIGNAL_MATCH_DATA, | |
| 961 | 0, 0, NULL, NULL, toolbar); | |
| 962 | gtk_toggle_button_set_active(button, is_active); | |
| 963 | g_signal_handlers_unblock_matched(object, G_SIGNAL_MATCH_DATA, | |
| 964 | 0, 0, NULL, NULL, toolbar); | |
| 965 | g_object_unref(object); | |
| 8420 | 966 | } |
| 967 | ||
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
968 | static void update_buttons(GtkIMHtmlToolbar *toolbar) |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
969 | { |
|
19719
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
970 | gboolean bold, italic, underline, strike; |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
971 | char *tmp; |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
972 | char *tmp2; |
|
19068
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
973 | GtkLabel *label = g_object_get_data(G_OBJECT(toolbar), "font_label"); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
974 | |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
975 | gtk_label_set_label(label, _("_Font")); |
|
10134
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
976 | |
| 8516 | 977 | gtk_imhtml_get_current_format(GTK_IMHTML(toolbar->imhtml), |
| 978 | &bold, &italic, &underline); | |
|
19719
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
979 | strike = GTK_IMHTML(toolbar->imhtml)->edit.strike; |
| 8506 | 980 | |
| 981 | if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toolbar->bold)) != bold) | |
| 982 | toggle_button_set_active_block(GTK_TOGGLE_BUTTON(toolbar->bold), bold, | |
| 983 | toolbar); | |
| 984 | if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toolbar->italic)) != italic) | |
| 985 | toggle_button_set_active_block(GTK_TOGGLE_BUTTON(toolbar->italic), italic, | |
| 986 | toolbar); | |
| 987 | if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toolbar->underline)) != underline) | |
| 988 | toggle_button_set_active_block(GTK_TOGGLE_BUTTON(toolbar->underline), | |
| 8677 | 989 | underline, toolbar); |
|
19719
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
990 | if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toolbar->strikethrough)) != strike) |
|
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
991 | toggle_button_set_active_block(GTK_TOGGLE_BUTTON(toolbar->strikethrough), |
|
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
992 | strike, toolbar); |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
993 | |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
994 | /* These buttons aren't ever "active". */ |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
995 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toolbar->smaller_size), FALSE); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
996 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toolbar->larger_size), FALSE); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
997 | |
|
19068
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
998 | if (bold) { |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
999 | gchar *markup = g_strdup_printf("<b>%s</b>", |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1000 | gtk_label_get_label(label)); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1001 | gtk_label_set_markup_with_mnemonic(label, markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1002 | g_free(markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1003 | } |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1004 | if (italic) { |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1005 | gchar *markup = g_strdup_printf("<i>%s</i>", |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1006 | gtk_label_get_label(label)); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1007 | gtk_label_set_markup_with_mnemonic(label, markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1008 | g_free(markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1009 | } |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1010 | if (underline) { |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1011 | gchar *markup = g_strdup_printf("<u>%s</u>", |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1012 | gtk_label_get_label(label)); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1013 | gtk_label_set_markup_with_mnemonic(label, markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1014 | g_free(markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1015 | } |
|
19719
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
1016 | if (strike) { |
|
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
1017 | gchar *markup = g_strdup_printf("<s>%s</s>", |
|
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
1018 | gtk_label_get_label(label)); |
|
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
1019 | gtk_label_set_markup_with_mnemonic(label, markup); |
|
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
1020 | g_free(markup); |
|
446e97aca498
Update the strikethrough state and the buttons as appropriate. Fixes #2884.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19647
diff
changeset
|
1021 | } |
|
19068
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1022 | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1023 | tmp = gtk_imhtml_get_current_fontface(GTK_IMHTML(toolbar->imhtml)); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1024 | toggle_button_set_active_block(GTK_TOGGLE_BUTTON(toolbar->font), |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1025 | (tmp != NULL), toolbar); |
|
19068
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1026 | if (tmp != NULL) { |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1027 | gchar *markup = g_strdup_printf("<span font_desc=\"%s\">%s</span>", |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1028 | tmp, gtk_label_get_label(label)); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1029 | gtk_label_set_markup_with_mnemonic(label, markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1030 | g_free(markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1031 | } |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1032 | g_free(tmp); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1033 | |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1034 | tmp = gtk_imhtml_get_current_forecolor(GTK_IMHTML(toolbar->imhtml)); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1035 | toggle_button_set_active_block(GTK_TOGGLE_BUTTON(toolbar->fgcolor), |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1036 | (tmp != NULL), toolbar); |
|
19068
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1037 | if (tmp != NULL) { |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1038 | gchar *markup = g_strdup_printf("<span foreground=\"%s\">%s</span>", |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1039 | tmp, gtk_label_get_label(label)); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1040 | gtk_label_set_markup_with_mnemonic(label, markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1041 | g_free(markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1042 | } |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1043 | g_free(tmp); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1044 | |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1045 | tmp = gtk_imhtml_get_current_backcolor(GTK_IMHTML(toolbar->imhtml)); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1046 | tmp2 = gtk_imhtml_get_current_background(GTK_IMHTML(toolbar->imhtml)); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1047 | toggle_button_set_active_block(GTK_TOGGLE_BUTTON(toolbar->bgcolor), |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1048 | (tmp != NULL || tmp2 != NULL), toolbar); |
|
19068
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1049 | if (tmp != NULL) { |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1050 | gchar *markup = g_strdup_printf("<span background=\"%s\">%s</span>", |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1051 | tmp, gtk_label_get_label(label)); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1052 | gtk_label_set_markup_with_mnemonic(label, markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1053 | g_free(markup); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1054 | } |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1055 | g_free(tmp); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1056 | g_free(tmp2); |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1057 | } |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1058 | |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1059 | static void toggle_button_cb(GtkIMHtml *imhtml, GtkIMHtmlButtons buttons, GtkIMHtmlToolbar *toolbar) |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1060 | { |
|
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1061 | update_buttons(toolbar); |
| 8506 | 1062 | } |
| 8481 | 1063 | |
| 8516 | 1064 | static void update_format_cb(GtkIMHtml *imhtml, GtkIMHtmlToolbar *toolbar) { |
| 1065 | update_buttons(toolbar); | |
| 1066 | } | |
| 8481 | 1067 | |
| 8516 | 1068 | static void mark_set_cb(GtkTextBuffer *buffer, GtkTextIter *location, |
| 1069 | GtkTextMark *mark, GtkIMHtmlToolbar *toolbar) | |
| 1070 | { | |
| 1071 | if(mark != gtk_text_buffer_get_insert(buffer)) | |
| 1072 | return; | |
| 1073 | ||
| 1074 | update_buttons(toolbar); | |
| 8427 | 1075 | } |
| 1076 | ||
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1077 | |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1078 | /* This comes from gtkmenutoolbutton.c from gtk+ |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1079 | * Copyright (C) 2003 Ricardo Fernandez Pascual |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1080 | * Copyright (C) 2004 Paolo Borelli |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1081 | */ |
|
17523
d26a1a21ea72
Fix a compile error and kill a bucket full of compile warnings
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17498
diff
changeset
|
1082 | static void |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1083 | menu_position_func (GtkMenu *menu, |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1084 | int *x, |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1085 | int *y, |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1086 | gboolean *push_in, |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1087 | gpointer data) |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1088 | { |
|
18238
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1089 | GtkWidget *widget = GTK_WIDGET(data); |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1090 | GtkRequisition menu_req; |
|
18238
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1091 | gint ythickness = widget->style->ythickness; |
|
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1092 | int savy; |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1093 | |
|
18238
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1094 | gtk_widget_size_request(GTK_WIDGET (menu), &menu_req); |
|
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1095 | gdk_window_get_origin(widget->window, x, y); |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1096 | *x += widget->allocation.x; |
|
18238
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1097 | *y += widget->allocation.y + widget->allocation.height; |
|
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1098 | savy = *y; |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1099 | |
|
18238
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1100 | pidgin_menu_position_func_helper(menu, x, y, push_in, data); |
|
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1101 | |
|
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1102 | if (savy > *y + ythickness + 1) |
|
b38c33d2d71e
Reduce code duplication and keep gtk 2.0 compatibility by making
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18185
diff
changeset
|
1103 | *y -= widget->allocation.height; |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1104 | } |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1105 | |
|
19213
e273393f4b75
The hotkeys should popup the menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19199
diff
changeset
|
1106 | static void pidgin_menu_clicked(GtkWidget *button, GtkMenu *menu) |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1107 | { |
|
19104
35cd69038e67
show toolbar menu on button press, rather than button release. Fixes #2352
Sean Egan <seanegan@pidgin.im>
parents:
19089
diff
changeset
|
1108 | gtk_widget_show_all(GTK_WIDGET(menu)); |
|
35cd69038e67
show toolbar menu on button press, rather than button release. Fixes #2352
Sean Egan <seanegan@pidgin.im>
parents:
19089
diff
changeset
|
1109 | gtk_menu_popup(menu, NULL, NULL, menu_position_func, button, 0, gtk_get_current_event_time()); |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1110 | } |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1111 | |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1112 | static void pidgin_menu_deactivate(GtkWidget *menu, GtkToggleButton *button) |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1113 | { |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1114 | gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), FALSE); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1115 | } |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1116 | |
| 8317 | 1117 | enum { |
| 1118 | LAST_SIGNAL | |
| 1119 | }; | |
|
9863
323e4fe28791
[gaim-migrate @ 10742]
Mark Doliner <markdoliner@pidgin.im>
parents:
9791
diff
changeset
|
1120 | /* static guint signals [LAST_SIGNAL] = { 0 }; */ |
| 8317 | 1121 | |
| 1122 | static void | |
| 1123 | gtk_imhtmltoolbar_finalize (GObject *object) | |
| 1124 | { | |
|
8391
ed3b9c27d002
[gaim-migrate @ 9120]
Mark Doliner <markdoliner@pidgin.im>
parents:
8380
diff
changeset
|
1125 | GtkIMHtmlToolbar *toolbar = GTK_IMHTMLTOOLBAR(object); |
|
19073
e2da82ea455b
Clean up the font and insert menus when the imhtmltoolbar is disposed of. This fixes a leak (and the crash in #2385). Fixes #2385.
Daniel Atallah <datallah@pidgin.im>
parents:
19068
diff
changeset
|
1126 | GtkWidget *menu; |
| 8317 | 1127 | |
| 8685 | 1128 | if (toolbar->image_dialog != NULL) |
| 1129 | { | |
| 1130 | gtk_widget_destroy(toolbar->image_dialog); | |
| 1131 | toolbar->image_dialog = NULL; | |
| 1132 | } | |
| 1133 | ||
|
10134
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
1134 | destroy_toolbar_font(NULL, NULL, toolbar); |
|
23368
76fd0254bae3
Prevent a crash when the imhtmltoolbar is disposed and the smiley dialog is open.
Daniel Atallah <datallah@pidgin.im>
parents:
23296
diff
changeset
|
1135 | if (toolbar->smiley_dialog != NULL) { |
|
76fd0254bae3
Prevent a crash when the imhtmltoolbar is disposed and the smiley dialog is open.
Daniel Atallah <datallah@pidgin.im>
parents:
23296
diff
changeset
|
1136 | g_signal_handlers_disconnect_by_func(G_OBJECT(toolbar->smiley_dialog), close_smiley_dialog, toolbar); |
|
76fd0254bae3
Prevent a crash when the imhtmltoolbar is disposed and the smiley dialog is open.
Daniel Atallah <datallah@pidgin.im>
parents:
23296
diff
changeset
|
1137 | destroy_smiley_dialog(toolbar); |
|
76fd0254bae3
Prevent a crash when the imhtmltoolbar is disposed and the smiley dialog is open.
Daniel Atallah <datallah@pidgin.im>
parents:
23296
diff
changeset
|
1138 | } |
|
10134
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
1139 | destroy_toolbar_bgcolor(NULL, NULL, toolbar); |
|
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
1140 | destroy_toolbar_fgcolor(NULL, NULL, toolbar); |
|
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
1141 | close_link_dialog(toolbar); |
|
12904
f01835b6bcac
[gaim-migrate @ 15257]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12900
diff
changeset
|
1142 | if (toolbar->imhtml) { |
|
f01835b6bcac
[gaim-migrate @ 15257]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12900
diff
changeset
|
1143 | g_signal_handlers_disconnect_matched(toolbar->imhtml, |
|
f01835b6bcac
[gaim-migrate @ 15257]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12900
diff
changeset
|
1144 | G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, |
|
f01835b6bcac
[gaim-migrate @ 15257]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12900
diff
changeset
|
1145 | toolbar); |
|
f01835b6bcac
[gaim-migrate @ 15257]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12900
diff
changeset
|
1146 | g_signal_handlers_disconnect_matched(GTK_IMHTML(toolbar->imhtml)->text_buffer, |
|
f01835b6bcac
[gaim-migrate @ 15257]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12900
diff
changeset
|
1147 | G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, |
|
f01835b6bcac
[gaim-migrate @ 15257]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12900
diff
changeset
|
1148 | toolbar); |
|
f01835b6bcac
[gaim-migrate @ 15257]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12900
diff
changeset
|
1149 | } |
| 8784 | 1150 | |
|
24275
37fca4e63b69
Use the correct free() function.
Daniel Atallah <datallah@pidgin.im>
parents:
23532
diff
changeset
|
1151 | g_free(toolbar->sml); |
|
8391
ed3b9c27d002
[gaim-migrate @ 9120]
Mark Doliner <markdoliner@pidgin.im>
parents:
8380
diff
changeset
|
1152 | gtk_object_sink(GTK_OBJECT(toolbar->tooltips)); |
| 8317 | 1153 | |
|
19073
e2da82ea455b
Clean up the font and insert menus when the imhtmltoolbar is disposed of. This fixes a leak (and the crash in #2385). Fixes #2385.
Daniel Atallah <datallah@pidgin.im>
parents:
19068
diff
changeset
|
1154 | menu = g_object_get_data(object, "font_menu"); |
|
e2da82ea455b
Clean up the font and insert menus when the imhtmltoolbar is disposed of. This fixes a leak (and the crash in #2385). Fixes #2385.
Daniel Atallah <datallah@pidgin.im>
parents:
19068
diff
changeset
|
1155 | if (menu) |
|
e2da82ea455b
Clean up the font and insert menus when the imhtmltoolbar is disposed of. This fixes a leak (and the crash in #2385). Fixes #2385.
Daniel Atallah <datallah@pidgin.im>
parents:
19068
diff
changeset
|
1156 | gtk_widget_destroy(menu); |
|
e2da82ea455b
Clean up the font and insert menus when the imhtmltoolbar is disposed of. This fixes a leak (and the crash in #2385). Fixes #2385.
Daniel Atallah <datallah@pidgin.im>
parents:
19068
diff
changeset
|
1157 | menu = g_object_get_data(object, "insert_menu"); |
|
e2da82ea455b
Clean up the font and insert menus when the imhtmltoolbar is disposed of. This fixes a leak (and the crash in #2385). Fixes #2385.
Daniel Atallah <datallah@pidgin.im>
parents:
19068
diff
changeset
|
1158 | if (menu) |
|
e2da82ea455b
Clean up the font and insert menus when the imhtmltoolbar is disposed of. This fixes a leak (and the crash in #2385). Fixes #2385.
Daniel Atallah <datallah@pidgin.im>
parents:
19068
diff
changeset
|
1159 | gtk_widget_destroy(menu); |
|
e2da82ea455b
Clean up the font and insert menus when the imhtmltoolbar is disposed of. This fixes a leak (and the crash in #2385). Fixes #2385.
Daniel Atallah <datallah@pidgin.im>
parents:
19068
diff
changeset
|
1160 | |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1161 | purple_prefs_disconnect_by_handle(object); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1162 | |
|
8391
ed3b9c27d002
[gaim-migrate @ 9120]
Mark Doliner <markdoliner@pidgin.im>
parents:
8380
diff
changeset
|
1163 | G_OBJECT_CLASS(parent_class)->finalize (object); |
| 8317 | 1164 | } |
| 1165 | ||
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1166 | static void |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1167 | switch_toolbar_view(GtkWidget *item, GtkIMHtmlToolbar *toolbar) |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1168 | { |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1169 | purple_prefs_set_bool(PIDGIN_PREFS_ROOT "/conversations/toolbar/wide", |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1170 | !purple_prefs_get_bool(PIDGIN_PREFS_ROOT "/conversations/toolbar/wide")); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1171 | } |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1172 | |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1173 | static gboolean |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1174 | gtk_imhtmltoolbar_popup_menu(GtkWidget *widget, GdkEventButton *event, GtkIMHtmlToolbar *toolbar) |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1175 | { |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1176 | GtkWidget *menu; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1177 | GtkWidget *item; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1178 | gboolean wide; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1179 | |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1180 | if (event->button != 3) |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1181 | return FALSE; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1182 | |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1183 | wide = GTK_WIDGET_VISIBLE(toolbar->bold); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1184 | |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1185 | menu = gtk_menu_new(); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1186 | item = gtk_menu_item_new_with_mnemonic(wide ? _("Group Items") : _("Ungroup Items")); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1187 | g_signal_connect(G_OBJECT(item), "activate", G_CALLBACK(switch_toolbar_view), toolbar); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1188 | gtk_menu_shell_append(GTK_MENU_SHELL(menu), item); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1189 | gtk_widget_show(item); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1190 | |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1191 | gtk_menu_popup(GTK_MENU(menu), NULL, NULL, pidgin_menu_position_func_helper, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1192 | widget, event->button, event->time); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1193 | return TRUE; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1194 | } |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1195 | |
|
10814
7e17cb56b019
[gaim-migrate @ 12468]
Luke Schierer <lschiere@pidgin.im>
parents:
10777
diff
changeset
|
1196 | /* Boring GTK+ stuff */ |
| 8317 | 1197 | static void gtk_imhtmltoolbar_class_init (GtkIMHtmlToolbarClass *class) |
| 1198 | { | |
| 1199 | GtkObjectClass *object_class; | |
| 1200 | GObjectClass *gobject_class; | |
| 1201 | object_class = (GtkObjectClass*) class; | |
| 1202 | gobject_class = (GObjectClass*) class; | |
| 10080 | 1203 | parent_class = gtk_type_class(GTK_TYPE_HBOX); |
| 8317 | 1204 | gobject_class->finalize = gtk_imhtmltoolbar_finalize; |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1205 | |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1206 | purple_prefs_add_none(PIDGIN_PREFS_ROOT "/conversations/toolbar"); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1207 | purple_prefs_add_bool(PIDGIN_PREFS_ROOT "/conversations/toolbar/wide", FALSE); |
| 8317 | 1208 | } |
| 1209 | ||
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1210 | static void gtk_imhtmltoolbar_create_old_buttons(GtkIMHtmlToolbar *toolbar) |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1211 | { |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1212 | GtkWidget *hbox; |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1213 | GtkWidget *button; |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1214 | struct { |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1215 | char *stock; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1216 | gpointer callback; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1217 | GtkWidget **button; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1218 | const char *tooltip; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1219 | } buttons[] = { |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1220 | {GTK_STOCK_BOLD, G_CALLBACK(do_bold), &toolbar->bold, _("Bold")}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1221 | {GTK_STOCK_ITALIC, do_italic, &toolbar->italic, _("Italic")}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1222 | {GTK_STOCK_UNDERLINE, do_underline, &toolbar->underline, _("Underline")}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1223 | {GTK_STOCK_STRIKETHROUGH, do_strikethrough, &toolbar->strikethrough, _("Strikethrough")}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1224 | {"", NULL, NULL, NULL}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1225 | {PIDGIN_STOCK_TOOLBAR_TEXT_LARGER, do_big, &toolbar->larger_size, _("Increase Font Size")}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1226 | {PIDGIN_STOCK_TOOLBAR_TEXT_SMALLER, do_small, &toolbar->smaller_size, _("Decrease Font Size")}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1227 | {"", NULL, NULL, NULL}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1228 | {PIDGIN_STOCK_TOOLBAR_FONT_FACE, toggle_font, &toolbar->font, _("Font Face")}, |
|
21954
ffb38ad2e4d6
Patch from DHowett to fix the transposition of background and forebround colors
Sean Egan <seanegan@pidgin.im>
parents:
21888
diff
changeset
|
1229 | {PIDGIN_STOCK_TOOLBAR_BGCOLOR, toggle_bg_color, &toolbar->bgcolor, _("Background Color")}, |
|
ffb38ad2e4d6
Patch from DHowett to fix the transposition of background and forebround colors
Sean Egan <seanegan@pidgin.im>
parents:
21888
diff
changeset
|
1230 | {PIDGIN_STOCK_TOOLBAR_FGCOLOR, toggle_fg_color, &toolbar->fgcolor, _("Foreground Color")}, |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1231 | {"", NULL, NULL, NULL}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1232 | {PIDGIN_STOCK_CLEAR, clear_formatting_cb, &toolbar->clear, _("Reset Formatting")}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1233 | {"", NULL, NULL, NULL}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1234 | {PIDGIN_STOCK_TOOLBAR_INSERT_LINK, insert_link_cb, &toolbar->link, _("Insert Link")}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1235 | {PIDGIN_STOCK_TOOLBAR_INSERT_IMAGE, insert_image_cb, &toolbar->image, _("Insert IM Image")}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1236 | {PIDGIN_STOCK_TOOLBAR_SMILEY, insert_smiley_cb, &toolbar->smiley, _("Insert Smiley")}, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1237 | {NULL, NULL, NULL, NULL} |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1238 | }; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1239 | int iter; |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1240 | |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1241 | hbox = gtk_hbox_new(FALSE, 0); |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1242 | |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1243 | for (iter = 0; buttons[iter].stock; iter++) { |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1244 | if (buttons[iter].stock[0]) { |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1245 | button = pidgin_pixbuf_toolbar_button_from_stock(buttons[iter].stock); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1246 | g_signal_connect(G_OBJECT(button), "clicked", |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1247 | G_CALLBACK(buttons[iter].callback), toolbar); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1248 | *(buttons[iter].button) = button; |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1249 | gtk_tooltips_set_tip(toolbar->tooltips, button, buttons[iter].tooltip, NULL); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1250 | } else |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1251 | button = gtk_vseparator_new(); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1252 | gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1253 | } |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1254 | |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1255 | gtk_box_pack_start(GTK_BOX(toolbar), hbox, FALSE, FALSE, 0); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1256 | g_object_set_data(G_OBJECT(toolbar), "wide-view", hbox); |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1257 | } |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1258 | |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1259 | static void |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1260 | button_sensitiveness_changed(GtkWidget *button, gpointer dontcare, GtkWidget *item) |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1261 | { |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1262 | gtk_widget_set_sensitive(item, GTK_WIDGET_IS_SENSITIVE(button)); |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1263 | } |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1264 | |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1265 | static void |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1266 | update_menuitem(GtkToggleButton *button, GtkCheckMenuItem *item) |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1267 | { |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1268 | g_signal_handlers_block_by_func(G_OBJECT(item), G_CALLBACK(gtk_button_clicked), button); |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1269 | gtk_check_menu_item_set_active(item, gtk_toggle_button_get_active(button)); |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1270 | g_signal_handlers_unblock_by_func(G_OBJECT(item), G_CALLBACK(gtk_button_clicked), button); |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1271 | } |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1272 | |
|
19199
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1273 | static void |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1274 | enable_markup(GtkWidget *widget, gpointer null) |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1275 | { |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1276 | if (GTK_IS_LABEL(widget)) |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1277 | g_object_set(G_OBJECT(widget), "use-markup", TRUE, NULL); |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1278 | } |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1279 | |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1280 | static void |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1281 | imhtmltoolbar_view_pref_changed(const char *name, PurplePrefType type, |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1282 | gconstpointer value, gpointer toolbar) |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1283 | { |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1284 | if (value) { |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1285 | gtk_widget_hide_all(g_object_get_data(G_OBJECT(toolbar), "lean-view")); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1286 | gtk_widget_show_all(g_object_get_data(G_OBJECT(toolbar), "wide-view")); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1287 | } else { |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1288 | gtk_widget_hide_all(g_object_get_data(G_OBJECT(toolbar), "wide-view")); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1289 | gtk_widget_show_all(g_object_get_data(G_OBJECT(toolbar), "lean-view")); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1290 | } |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1291 | } |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1292 | |
| 8317 | 1293 | static void gtk_imhtmltoolbar_init (GtkIMHtmlToolbar *toolbar) |
| 1294 | { | |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1295 | GtkWidget *hbox = GTK_WIDGET(toolbar), *event = gtk_event_box_new(); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1296 | GtkWidget *bbox, *box = gtk_hbox_new(FALSE, 0); |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1297 | GtkWidget *image; |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1298 | GtkWidget *label; |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1299 | GtkWidget *insert_button; |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1300 | GtkWidget *font_button; |
|
20328
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1301 | GtkWidget *smiley_button; |
|
23713
57b33187be1b
Remove the "Call" button from the formatting toolbar.
Michael Ruprecht <maiku@pidgin.im>
parents:
23712
diff
changeset
|
1302 | |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1303 | GtkWidget *font_menu; |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1304 | GtkWidget *insert_menu; |
|
18240
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1305 | GtkWidget *menuitem; |
| 8317 | 1306 | GtkWidget *sep; |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1307 | int i; |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1308 | struct { |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1309 | const char *label; |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1310 | GtkWidget **button; |
|
19076
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1311 | gboolean check; |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1312 | } buttons[] = { |
|
19199
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1313 | {_("<b>_Bold</b>"), &toolbar->bold, TRUE}, |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1314 | {_("<i>_Italic</i>"), &toolbar->italic, TRUE}, |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1315 | {_("<u>_Underline</u>"), &toolbar->underline, TRUE}, |
|
19647
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
1316 | {_("<span strikethrough='true'>Strikethrough</span>"), &toolbar->strikethrough, TRUE}, |
|
19199
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1317 | {_("<span size='larger'>_Larger</span>"), &toolbar->larger_size, TRUE}, |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1318 | #if 0 |
|
19076
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1319 | {_("_Normal"), &toolbar->normal_size, TRUE}, |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1320 | #endif |
|
19199
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1321 | {_("<span size='smaller'>_Smaller</span>"), &toolbar->smaller_size, TRUE}, |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1322 | /* If we want to show the formatting for the following items, we would |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1323 | * need to update them when formatting changes. The above items don't need |
|
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1324 | * no updating nor nothin' */ |
|
19076
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1325 | {_("_Font face"), &toolbar->font, TRUE}, |
|
19083
14edbc247c42
I thought I fixed this already...
Kevin Stange <kstange@pidgin.im>
parents:
19076
diff
changeset
|
1326 | {_("Foreground _color"), &toolbar->fgcolor, TRUE}, |
|
19084
15f91e441bfb
Another mnemonic conflict
Kevin Stange <kstange@pidgin.im>
parents:
19083
diff
changeset
|
1327 | {_("Bac_kground color"), &toolbar->bgcolor, TRUE}, |
|
19076
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1328 | {_("_Reset formatting"), &toolbar->clear, FALSE}, |
|
19088
8eb73fcef3ad
Get rid of two minor compile warnings:
Mark Doliner <markdoliner@pidgin.im>
parents:
19076
diff
changeset
|
1329 | {NULL, NULL, FALSE} |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1330 | }; |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1331 | |
| 8317 | 1332 | toolbar->imhtml = NULL; |
| 1333 | toolbar->font_dialog = NULL; | |
| 1334 | toolbar->fgcolor_dialog = NULL; | |
| 1335 | toolbar->bgcolor_dialog = NULL; | |
| 1336 | toolbar->link_dialog = NULL; | |
|
10138
b72c5fdc98b3
[gaim-migrate @ 11208]
Mark Doliner <markdoliner@pidgin.im>
parents:
10135
diff
changeset
|
1337 | toolbar->smiley_dialog = NULL; |
| 8317 | 1338 | toolbar->image_dialog = NULL; |
| 1339 | ||
| 1340 | toolbar->tooltips = gtk_tooltips_new(); | |
|
10134
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
1341 | |
|
17303
138cbb17e5cd
disapproval of revision '6e8f285962e77199bf88dfc8d2a08386beb02634'
Sean Egan <seanegan@pidgin.im>
parents:
17300
diff
changeset
|
1342 | gtk_box_set_spacing(GTK_BOX(toolbar), 3); |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1343 | |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1344 | gtk_imhtmltoolbar_create_old_buttons(toolbar); |
| 8317 | 1345 | |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1346 | /* Fonts */ |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1347 | font_button = gtk_toggle_button_new(); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1348 | gtk_button_set_relief(GTK_BUTTON(font_button), GTK_RELIEF_NONE); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1349 | bbox = gtk_hbox_new(FALSE, 3); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1350 | gtk_container_add(GTK_CONTAINER(font_button), bbox); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1351 | image = gtk_image_new_from_stock(GTK_STOCK_BOLD, gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_EXTRA_SMALL)); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1352 | gtk_box_pack_start(GTK_BOX(bbox), image, FALSE, FALSE, 0); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1353 | label = gtk_label_new_with_mnemonic(_("_Font")); |
|
19068
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1354 | gtk_label_set_use_markup(GTK_LABEL(label), TRUE); |
|
4effc374e407
Show current outgoing conversation formatting on the font label on
Ka-Hing Cheung <khc@pidgin.im>
parents:
19061
diff
changeset
|
1355 | g_object_set_data(G_OBJECT(hbox), "font_label", label); |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1356 | gtk_box_pack_start(GTK_BOX(bbox), label, FALSE, FALSE, 0); |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1357 | gtk_box_pack_start(GTK_BOX(box), font_button, FALSE, FALSE, 0); |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1358 | gtk_widget_show_all(font_button); |
| 8317 | 1359 | |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1360 | font_menu = gtk_menu_new(); |
|
19073
e2da82ea455b
Clean up the font and insert menus when the imhtmltoolbar is disposed of. This fixes a leak (and the crash in #2385). Fixes #2385.
Daniel Atallah <datallah@pidgin.im>
parents:
19068
diff
changeset
|
1361 | g_object_set_data(G_OBJECT(toolbar), "font_menu", font_menu); |
|
17879
3e3f85138f1a
merge of '87854ccfae544467c988edbac854c1ae2018eed4'
Sadrul Habib Chowdhury <sadrul@pidgin.im>
diff
changeset
|
1362 | |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1363 | for (i = 0; buttons[i].label; i++) { |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1364 | GtkWidget *old = *buttons[i].button; |
|
19076
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1365 | if (buttons[i].check) { |
|
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1366 | menuitem = gtk_check_menu_item_new_with_mnemonic(buttons[i].label); |
|
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1367 | g_signal_connect_after(G_OBJECT(old), "toggled", |
|
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1368 | G_CALLBACK(update_menuitem), menuitem); |
|
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1369 | } else { |
|
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1370 | menuitem = gtk_menu_item_new_with_mnemonic(buttons[i].label); |
|
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1371 | } |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1372 | g_signal_connect_swapped(G_OBJECT(menuitem), "activate", |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1373 | G_CALLBACK(gtk_button_clicked), old); |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1374 | gtk_menu_shell_append(GTK_MENU_SHELL(font_menu), menuitem); |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1375 | g_signal_connect(G_OBJECT(old), "notify::sensitive", |
|
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1376 | G_CALLBACK(button_sensitiveness_changed), menuitem); |
|
19199
f06d090eedab
Show formatting in the font dropdown menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19104
diff
changeset
|
1377 | gtk_container_foreach(GTK_CONTAINER(menuitem), (GtkCallback)enable_markup, NULL); |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1378 | } |
|
19076
84216ea8ddbf
Move 'Reset formatting' to Font dropdown
Sean Egan <seanegan@pidgin.im>
parents:
19073
diff
changeset
|
1379 | |
|
19213
e273393f4b75
The hotkeys should popup the menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19199
diff
changeset
|
1380 | g_signal_connect_swapped(G_OBJECT(font_button), "button-press-event", G_CALLBACK(gtk_widget_activate), font_button); |
|
e273393f4b75
The hotkeys should popup the menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19199
diff
changeset
|
1381 | g_signal_connect(G_OBJECT(font_button), "activate", G_CALLBACK(pidgin_menu_clicked), font_menu); |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1382 | g_signal_connect(G_OBJECT(font_menu), "deactivate", G_CALLBACK(pidgin_menu_deactivate), font_button); |
| 8317 | 1383 | |
| 1384 | /* Sep */ | |
| 1385 | sep = gtk_vseparator_new(); | |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1386 | gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 0); |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1387 | gtk_widget_show_all(sep); |
| 8317 | 1388 | |
|
17594
837c8e6dbef7
Fix some stuff of bugs in the new toolbar.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
17523
diff
changeset
|
1389 | /* Insert */ |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1390 | insert_button = gtk_toggle_button_new(); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1391 | gtk_button_set_relief(GTK_BUTTON(insert_button), GTK_RELIEF_NONE); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1392 | bbox = gtk_hbox_new(FALSE, 3); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1393 | gtk_container_add(GTK_CONTAINER(insert_button), bbox); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1394 | image = gtk_image_new_from_stock(PIDGIN_STOCK_TOOLBAR_INSERT, gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_EXTRA_SMALL)); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1395 | gtk_box_pack_start(GTK_BOX(bbox), image, FALSE, FALSE, 0); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1396 | label = gtk_label_new_with_mnemonic(_("_Insert")); |
|
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1397 | gtk_box_pack_start(GTK_BOX(bbox), label, FALSE, FALSE, 0); |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1398 | gtk_box_pack_start(GTK_BOX(box), insert_button, FALSE, FALSE, 0); |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1399 | gtk_widget_show_all(insert_button); |
| 8317 | 1400 | |
|
17498
9e21b4e8a98d
Re-did the toolbar layout to take up less room. This is what we generally agreed to on devel@. I managed to do this, amazingly, not only without breaking Pidgin plugin API compatibility, but it doesn't even add any API. This is still totally raw; I'm comitting it mostly so I can continue it easily from hmoe
Sean Egan <seanegan@pidgin.im>
parents:
17403
diff
changeset
|
1401 | insert_menu = gtk_menu_new(); |
|
19073
e2da82ea455b
Clean up the font and insert menus when the imhtmltoolbar is disposed of. This fixes a leak (and the crash in #2385). Fixes #2385.
Daniel Atallah <datallah@pidgin.im>
parents:
19068
diff
changeset
|
1402 | g_object_set_data(G_OBJECT(toolbar), "insert_menu", insert_menu); |
| 8317 | 1403 | |
|
18240
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1404 | menuitem = gtk_menu_item_new_with_mnemonic(_("_Image")); |
|
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1405 | g_signal_connect_swapped(G_OBJECT(menuitem), "activate", G_CALLBACK(gtk_button_clicked), toolbar->image); |
|
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1406 | gtk_menu_shell_append(GTK_MENU_SHELL(insert_menu), menuitem); |
|
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1407 | g_signal_connect(G_OBJECT(toolbar->image), "notify::sensitive", |
|
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1408 | G_CALLBACK(button_sensitiveness_changed), menuitem); |
| 8317 | 1409 | |
|
18240
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1410 | menuitem = gtk_menu_item_new_with_mnemonic(_("_Link")); |
|
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1411 | g_signal_connect_swapped(G_OBJECT(menuitem), "activate", G_CALLBACK(gtk_button_clicked), toolbar->link); |
|
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1412 | gtk_menu_shell_append(GTK_MENU_SHELL(insert_menu), menuitem); |
|
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1413 | g_signal_connect(G_OBJECT(toolbar->link), "notify::sensitive", |
|
0a7d2fde749b
Fix setting the sensitivity of the toolbar items in a number of places
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
18238
diff
changeset
|
1414 | G_CALLBACK(button_sensitiveness_changed), menuitem); |
|
17499
246d166626f3
disapproval of revision '9e21b4e8a98d7acd373a16a8b5d9c42ccc0f4a3d'
Sean Egan <seanegan@pidgin.im>
parents:
17498
diff
changeset
|
1415 | |
|
19647
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
1416 | menuitem = gtk_menu_item_new_with_mnemonic(_("_Horizontal rule")); |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
1417 | g_signal_connect(G_OBJECT(menuitem), "activate" , G_CALLBACK(insert_hr_cb), toolbar); |
|
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
1418 | gtk_menu_shell_append(GTK_MENU_SHELL(insert_menu), menuitem); |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
24275
diff
changeset
|
1419 | toolbar->insert_hr = menuitem; |
|
19647
5d8cf24e5ce9
Add horizontal rules and strikethroughs to the toolbar
Sean Egan <seanegan@pidgin.im>
parents:
19213
diff
changeset
|
1420 | |
|
19213
e273393f4b75
The hotkeys should popup the menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19199
diff
changeset
|
1421 | g_signal_connect_swapped(G_OBJECT(insert_button), "button-press-event", G_CALLBACK(gtk_widget_activate), insert_button); |
|
e273393f4b75
The hotkeys should popup the menu.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19199
diff
changeset
|
1422 | g_signal_connect(G_OBJECT(insert_button), "activate", G_CALLBACK(pidgin_menu_clicked), insert_menu); |
|
17523
d26a1a21ea72
Fix a compile error and kill a bucket full of compile warnings
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
17498
diff
changeset
|
1423 | g_signal_connect(G_OBJECT(insert_menu), "deactivate", G_CALLBACK(pidgin_menu_deactivate), insert_button); |
| 8427 | 1424 | toolbar->sml = NULL; |
|
25888
d0fdd378a635
Remove trailing whitespace
Mark Doliner <markdoliner@pidgin.im>
parents:
24275
diff
changeset
|
1425 | |
|
20328
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1426 | /* Sep */ |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1427 | sep = gtk_vseparator_new(); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1428 | gtk_box_pack_start(GTK_BOX(box), sep, FALSE, FALSE, 0); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1429 | gtk_widget_show_all(sep); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1430 | |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1431 | /* Smiley */ |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1432 | smiley_button = gtk_button_new(); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1433 | gtk_button_set_relief(GTK_BUTTON(smiley_button), GTK_RELIEF_NONE); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1434 | bbox = gtk_hbox_new(FALSE, 3); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1435 | gtk_container_add(GTK_CONTAINER(smiley_button), bbox); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1436 | image = gtk_image_new_from_stock(PIDGIN_STOCK_TOOLBAR_SMILEY, gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_EXTRA_SMALL)); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1437 | gtk_box_pack_start(GTK_BOX(bbox), image, FALSE, FALSE, 0); |
| 20387 | 1438 | label = gtk_label_new_with_mnemonic(_("_Smile!")); |
|
20328
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1439 | gtk_box_pack_start(GTK_BOX(bbox), label, FALSE, FALSE, 0); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1440 | gtk_box_pack_start(GTK_BOX(box), smiley_button, FALSE, FALSE, 0); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1441 | g_signal_connect_swapped(G_OBJECT(smiley_button), "clicked", G_CALLBACK(gtk_button_clicked), toolbar->smiley); |
|
ebb754aae698
special case smileys in the toolbar. Fixes #2668 I'll need a new icon from Hylke
Sean Egan <seanegan@pidgin.im>
parents:
20075
diff
changeset
|
1442 | gtk_widget_show_all(smiley_button); |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1443 | |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1444 | gtk_box_pack_start(GTK_BOX(hbox), box, FALSE, FALSE, 0); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1445 | g_object_set_data(G_OBJECT(hbox), "lean-view", box); |
|
22218
32ffd628be85
Show the grouped items initially. This fixes the issues with the size of the entry box in the conversation windows.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
22099
diff
changeset
|
1446 | gtk_widget_show(box); |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1447 | |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1448 | purple_prefs_connect_callback(toolbar, PIDGIN_PREFS_ROOT "/conversations/toolbar/wide", |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1449 | imhtmltoolbar_view_pref_changed, toolbar); |
|
21888
c59f2fb04c7c
Show either the grouped xor the ungrouped items.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21764
diff
changeset
|
1450 | g_signal_connect_data(G_OBJECT(toolbar), "realize", |
|
c59f2fb04c7c
Show either the grouped xor the ungrouped items.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21764
diff
changeset
|
1451 | G_CALLBACK(purple_prefs_trigger_callback), PIDGIN_PREFS_ROOT "/conversations/toolbar/wide", |
|
c59f2fb04c7c
Show either the grouped xor the ungrouped items.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21764
diff
changeset
|
1452 | NULL, G_CONNECT_AFTER | G_CONNECT_SWAPPED); |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1453 | |
|
19978
3761c1b17eb9
Fix from fmoo so that the imhtml toolbar appears right on the MS-Windows theme (and probably other themes too).
Daniel Atallah <datallah@pidgin.im>
parents:
19859
diff
changeset
|
1454 | #if GTK_CHECK_VERSION(2,4,0) |
|
3761c1b17eb9
Fix from fmoo so that the imhtml toolbar appears right on the MS-Windows theme (and probably other themes too).
Daniel Atallah <datallah@pidgin.im>
parents:
19859
diff
changeset
|
1455 | gtk_event_box_set_visible_window(GTK_EVENT_BOX(event), FALSE); |
|
3761c1b17eb9
Fix from fmoo so that the imhtml toolbar appears right on the MS-Windows theme (and probably other themes too).
Daniel Atallah <datallah@pidgin.im>
parents:
19859
diff
changeset
|
1456 | #endif |
|
3761c1b17eb9
Fix from fmoo so that the imhtml toolbar appears right on the MS-Windows theme (and probably other themes too).
Daniel Atallah <datallah@pidgin.im>
parents:
19859
diff
changeset
|
1457 | |
|
19761
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1458 | gtk_widget_add_events(event, GDK_BUTTON_PRESS_MASK); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1459 | gtk_box_pack_start(GTK_BOX(hbox), event, TRUE, TRUE, 0); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1460 | g_signal_connect(G_OBJECT(event), "button-press-event", G_CALLBACK(gtk_imhtmltoolbar_popup_menu), toolbar); |
|
a9f07315cf37
Add a 'Group Items'/'Ungroup Items' context menu for the toolbar in the
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
19719
diff
changeset
|
1461 | gtk_widget_show(event); |
| 8317 | 1462 | } |
| 1463 | ||
| 1464 | GtkWidget *gtk_imhtmltoolbar_new() | |
| 1465 | { | |
| 1466 | return GTK_WIDGET(g_object_new(gtk_imhtmltoolbar_get_type(), NULL)); | |
| 1467 | } | |
| 1468 | ||
| 1469 | GType gtk_imhtmltoolbar_get_type() | |
| 1470 | { | |
| 1471 | static GType imhtmltoolbar_type = 0; | |
| 1472 | ||
| 1473 | if (!imhtmltoolbar_type) { | |
| 1474 | static const GTypeInfo imhtmltoolbar_info = { | |
| 1475 | sizeof(GtkIMHtmlToolbarClass), | |
| 1476 | NULL, | |
| 1477 | NULL, | |
| 1478 | (GClassInitFunc) gtk_imhtmltoolbar_class_init, | |
| 1479 | NULL, | |
| 1480 | NULL, | |
| 1481 | sizeof (GtkIMHtmlToolbar), | |
| 1482 | 0, | |
|
12600
7ecd4441fdc7
[gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents:
11862
diff
changeset
|
1483 | (GInstanceInitFunc) gtk_imhtmltoolbar_init, |
|
7ecd4441fdc7
[gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents:
11862
diff
changeset
|
1484 | NULL |
| 8317 | 1485 | }; |
| 1486 | ||
| 10080 | 1487 | imhtmltoolbar_type = g_type_register_static(GTK_TYPE_HBOX, |
| 8317 | 1488 | "GtkIMHtmlToolbar", &imhtmltoolbar_info, 0); |
| 1489 | } | |
| 1490 | ||
| 1491 | return imhtmltoolbar_type; | |
| 1492 | } | |
| 1493 | ||
| 1494 | ||
|
8324
3bb4ba19837d
[gaim-migrate @ 9048]
Christian Hammond <chipx86@chipx86.com>
parents:
8322
diff
changeset
|
1495 | void gtk_imhtmltoolbar_attach(GtkIMHtmlToolbar *toolbar, GtkWidget *imhtml) |
| 8317 | 1496 | { |
|
8788
a13634443a38
[gaim-migrate @ 9550]
Mark Doliner <markdoliner@pidgin.im>
parents:
8785
diff
changeset
|
1497 | GtkIMHtmlButtons buttons; |
| 8481 | 1498 | gboolean bold, italic, underline; |
| 1499 | ||
|
8325
bb6ed75fcec2
[gaim-migrate @ 9049]
Christian Hammond <chipx86@chipx86.com>
parents:
8324
diff
changeset
|
1500 | g_return_if_fail(toolbar != NULL); |
|
bb6ed75fcec2
[gaim-migrate @ 9049]
Christian Hammond <chipx86@chipx86.com>
parents:
8324
diff
changeset
|
1501 | g_return_if_fail(GTK_IS_IMHTMLTOOLBAR(toolbar)); |
|
bb6ed75fcec2
[gaim-migrate @ 9049]
Christian Hammond <chipx86@chipx86.com>
parents:
8324
diff
changeset
|
1502 | g_return_if_fail(imhtml != NULL); |
|
bb6ed75fcec2
[gaim-migrate @ 9049]
Christian Hammond <chipx86@chipx86.com>
parents:
8324
diff
changeset
|
1503 | g_return_if_fail(GTK_IS_IMHTML(imhtml)); |
|
bb6ed75fcec2
[gaim-migrate @ 9049]
Christian Hammond <chipx86@chipx86.com>
parents:
8324
diff
changeset
|
1504 | |
| 8317 | 1505 | toolbar->imhtml = imhtml; |
| 8506 | 1506 | g_signal_connect(G_OBJECT(imhtml), "format_buttons_update", G_CALLBACK(update_buttons_cb), toolbar); |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1507 | g_signal_connect_after(G_OBJECT(imhtml), "format_function_toggle", G_CALLBACK(toggle_button_cb), toolbar); |
|
11275
cdcc651d7ecd
[gaim-migrate @ 13461]
Richard Laager <rlaager@pidgin.im>
parents:
11271
diff
changeset
|
1508 | g_signal_connect_after(G_OBJECT(imhtml), "format_function_clear", G_CALLBACK(update_format_cb), toolbar); |
| 8506 | 1509 | g_signal_connect(G_OBJECT(imhtml), "format_function_update", G_CALLBACK(update_format_cb), toolbar); |
| 8516 | 1510 | g_signal_connect_after(G_OBJECT(GTK_IMHTML(imhtml)->text_buffer), "mark-set", G_CALLBACK(mark_set_cb), toolbar); |
| 8481 | 1511 | |
|
8788
a13634443a38
[gaim-migrate @ 9550]
Mark Doliner <markdoliner@pidgin.im>
parents:
8785
diff
changeset
|
1512 | buttons = gtk_imhtml_get_format_functions(GTK_IMHTML(imhtml)); |
| 8807 | 1513 | update_buttons_cb(GTK_IMHTML(imhtml), buttons, toolbar); |
|
8788
a13634443a38
[gaim-migrate @ 9550]
Mark Doliner <markdoliner@pidgin.im>
parents:
8785
diff
changeset
|
1514 | |
| 8516 | 1515 | gtk_imhtml_get_current_format(GTK_IMHTML(imhtml), &bold, &italic, &underline); |
|
10134
ecbf96117857
[gaim-migrate @ 11198]
Nathan Fredrickson <nathan@silverorange.com>
parents:
10125
diff
changeset
|
1516 | |
|
11267
78f1eb5b3d6e
[gaim-migrate @ 13449]
Richard Laager <rlaager@pidgin.im>
parents:
11243
diff
changeset
|
1517 | update_buttons(toolbar); |
| 8317 | 1518 | } |
| 8427 | 1519 | |
| 1520 | void gtk_imhtmltoolbar_associate_smileys(GtkIMHtmlToolbar *toolbar, const char *proto_id) | |
| 1521 | { | |
|
14097
0c340861ab79
[gaim-migrate @ 16638]
Mark Doliner <markdoliner@pidgin.im>
parents:
13539
diff
changeset
|
1522 | g_free(toolbar->sml); |
| 8427 | 1523 | toolbar->sml = g_strdup(proto_id); |
| 1524 | } |