Mercurial > pidgin.yaz
annotate src/stock.c @ 8506:887c0259b47b
[gaim-migrate @ 9242]
" 6: Using CTRL+Up to get back a previous line breaks the
formatting on any new text entered on that line. Text,
while being entered appears extremely small, and when
it's sent, the formatting is slightly smaller and may
lose other elements of formatting.
the problem was that in the key_press_cb in gtkconv.c
was using
gtk_text_buffer_get_text(gtkconv->entry_buffer, ...);
this was not giving us the html tags. So I changed it
to gtk_imthml_get_markup(GTK_IMHTML(gtkconv->entry));
Then I added a signal so that the toolbar gets update
when gtk_imhtml_append_text_with_images is called so
that the toolbar can be updated as well.
I also rename the format_functions_update to
format_buttons_update since it, to me atleast, makes
more sense and because I couldn't think of a better
name than format_function_update, which would have been
very confusing.
theres one issue that I was not able to fix in this.
I'm planning on looking into it later, but after
ctrl-up/down the closing tag gets added and ends at the
last character from the buffer. Which means formatting
returns to normal (ie plain text) if you type after
you've used ctrl-up/down." --Gary Kramlich
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Fri, 26 Mar 2004 14:14:16 +0000 |
parents | 6d1c5321c55e |
children | d549d27388b2 |
rev | line source |
---|---|
4359 | 1 /** |
2 * @file stock.c GTK+ Stock resources | |
3 * | |
4 * gaim | |
5 * | |
8046 | 6 * Gaim is the legal property of its developers, whose names are too numerous |
7 * to list here. Please refer to the COPYRIGHT file distributed with this | |
8 * source distribution. | |
8302
462ead6fc1a0
[gaim-migrate @ 9026]
Christian Hammond <chipx86@chipx86.com>
parents:
8300
diff
changeset
|
9 * |
4359 | 10 * This program is free software; you can redistribute it and/or modify |
11 * it under the terms of the GNU General Public License as published by | |
12 * the Free Software Foundation; either version 2 of the License, or | |
13 * (at your option) any later version. | |
14 * | |
15 * This program is distributed in the hope that it will be useful, | |
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 * GNU General Public License for more details. | |
19 * | |
20 * You should have received a copy of the GNU General Public License | |
21 * along with this program; if not, write to the Free Software | |
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
23 * | |
24 */ | |
6371
8f94cce8faa5
[gaim-migrate @ 6876]
Christian Hammond <chipx86@chipx86.com>
parents:
6155
diff
changeset
|
25 #include "gtkinternal.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5822
diff
changeset
|
26 |
4359 | 27 #include "stock.h" |
4363
65d98b565fbe
[gaim-migrate @ 4629]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
28 |
4359 | 29 static struct StockIcon |
30 { | |
31 const char *name; | |
32 const char *dir; | |
33 const char *filename; | |
34 | |
35 } const stock_icons[] = | |
36 { | |
5024 | 37 { GAIM_STOCK_ABOUT, "buttons", "about_menu.png" }, |
38 { GAIM_STOCK_ACCOUNTS, "buttons", "accounts.png" }, | |
8302
462ead6fc1a0
[gaim-migrate @ 9026]
Christian Hammond <chipx86@chipx86.com>
parents:
8300
diff
changeset
|
39 { GAIM_STOCK_ALIAS, "buttons", "edit.png" }, |
5024 | 40 { GAIM_STOCK_BGCOLOR, "buttons", "change-bgcolor-small.png" }, |
41 { GAIM_STOCK_BLOCK, NULL, GTK_STOCK_STOP }, | |
42 { GAIM_STOCK_CHAT, NULL, GTK_STOCK_JUMP_TO }, | |
43 { GAIM_STOCK_DOWNLOAD, NULL, GTK_STOCK_GO_DOWN }, | |
44 { GAIM_STOCK_DIALOG_AUTH, "dialogs", "gaim_auth.png" }, | |
45 { GAIM_STOCK_DIALOG_COOL, "dialogs", "gaim_cool.png" }, | |
46 { GAIM_STOCK_DIALOG_ERROR, "dialogs", "gaim_error.png" }, | |
47 { GAIM_STOCK_DIALOG_INFO, "dialogs", "gaim_info.png" }, | |
48 { GAIM_STOCK_DIALOG_QUESTION, "dialogs", "gaim_question.png" }, | |
49 { GAIM_STOCK_DIALOG_WARNING, "dialogs", "gaim_warning.png" }, | |
50 { GAIM_STOCK_FGCOLOR, "buttons", "change-fgcolor-small.png" }, | |
51 { GAIM_STOCK_EDIT, "buttons", "edit.png" }, | |
52 { GAIM_STOCK_FILE_CANCELED, NULL, GTK_STOCK_CANCEL }, | |
53 { GAIM_STOCK_FILE_DONE, NULL, GTK_STOCK_APPLY }, | |
54 { GAIM_STOCK_FILE_TRANSFER, NULL, GTK_STOCK_REVERT_TO_SAVED }, | |
55 { GAIM_STOCK_ICON_AWAY, "icons", "away.png" }, | |
56 { GAIM_STOCK_ICON_AWAY_MSG, "icons", "msgpend.png" }, | |
57 { GAIM_STOCK_ICON_CONNECT, "icons", "connect.png" }, | |
58 { GAIM_STOCK_ICON_OFFLINE, "icons", "offline.png" }, | |
59 { GAIM_STOCK_ICON_ONLINE, "icons", "online.png" }, | |
60 { GAIM_STOCK_ICON_ONLINE_MSG, "icons", "msgunread.png" }, | |
61 { GAIM_STOCK_IGNORE, NULL, GTK_STOCK_DIALOG_ERROR }, | |
8472
6d1c5321c55e
[gaim-migrate @ 9205]
Christian Hammond <chipx86@chipx86.com>
parents:
8346
diff
changeset
|
62 { GAIM_STOCK_IM, "buttons", "send-im.png" }, |
5024 | 63 { GAIM_STOCK_IMAGE, "buttons", "insert-image-small.png" }, |
8472
6d1c5321c55e
[gaim-migrate @ 9205]
Christian Hammond <chipx86@chipx86.com>
parents:
8346
diff
changeset
|
64 { GAIM_STOCK_INFO, "icons", "info.png", }, |
5024 | 65 { GAIM_STOCK_INVITE, NULL, GTK_STOCK_JUMP_TO }, |
66 { GAIM_STOCK_LINK, "buttons", "insert-link-small.png" }, | |
67 { GAIM_STOCK_LOGO, "gaim", "logo.png" }, | |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5523
diff
changeset
|
68 { GAIM_STOCK_MODIFY, NULL, GTK_STOCK_PREFERENCES }, |
6009
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
69 { GAIM_STOCK_PAUSE, "buttons", "pause.png" }, |
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
70 { GAIM_STOCK_OPEN_MAIL, NULL, GTK_STOCK_JUMP_TO }, |
5822 | 71 { GAIM_STOCK_SEND, "buttons", "send-im.png" }, |
5024 | 72 { GAIM_STOCK_SIGN_ON, NULL, GTK_STOCK_EXECUTE }, |
73 { GAIM_STOCK_SIGN_OFF, NULL, GTK_STOCK_CLOSE }, | |
74 { GAIM_STOCK_SMILEY, "buttons", "insert-smiley-small.png" }, | |
75 { GAIM_STOCK_TEXT_BIGGER, "buttons", "text_bigger.png" }, | |
76 { GAIM_STOCK_TEXT_NORMAL, "buttons", "text_normal.png" }, | |
77 { GAIM_STOCK_TEXT_SMALLER, "buttons", "text_smaller.png" }, | |
78 { GAIM_STOCK_TYPED, "gaim", "typed.png" }, | |
6155 | 79 { GAIM_STOCK_TYPING, "gaim", "typing.png" }, |
5024 | 80 { GAIM_STOCK_UPLOAD, NULL, GTK_STOCK_GO_UP }, |
81 { GAIM_STOCK_WARN, NULL, GTK_STOCK_DIALOG_WARNING } | |
4359 | 82 }; |
83 | |
5523
fe76565d93c4
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
84 const GtkStockItem stock_items[] = |
fe76565d93c4
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
85 { |
8302
462ead6fc1a0
[gaim-migrate @ 9026]
Christian Hammond <chipx86@chipx86.com>
parents:
8300
diff
changeset
|
86 { GAIM_STOCK_ALIAS, N_("_Alias"), 0, 0, NULL }, |
8308 | 87 { GAIM_STOCK_CHAT, N_("_Join"), 0, 0, NULL }, |
5563
9eb5b13fd412
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5523
diff
changeset
|
88 { GAIM_STOCK_MODIFY, N_("_Modify"), 0, 0, NULL }, |
6009
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
89 { GAIM_STOCK_OPEN_MAIL, N_("_Open Mail"), 0, 0, NULL }, |
8300
0f5cb0d93b11
[gaim-migrate @ 9024]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
90 { GAIM_STOCK_PAUSE, N_("_Pause"), 0, 0, NULL }, |
0f5cb0d93b11
[gaim-migrate @ 9024]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
91 { GAIM_STOCK_WARN, N_("_Warn"), 0, 0, NULL } |
5523
fe76565d93c4
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
92 }; |
fe76565d93c4
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
93 |
4359 | 94 static gint stock_icon_count = sizeof(stock_icons) / sizeof(*stock_icons); |
5523
fe76565d93c4
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
95 static gint stock_item_count = sizeof(stock_items) / sizeof(*stock_items); |
4359 | 96 |
6009
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
97 static gboolean stock_inited = FALSE; |
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
98 |
4359 | 99 static gchar * |
100 find_file(const char *dir, const char *base) | |
101 { | |
102 char *filename; | |
103 | |
104 if (base == NULL) | |
105 return NULL; | |
106 | |
107 if (!strcmp(dir, "gaim")) | |
108 filename = g_build_filename(DATADIR, "pixmaps", "gaim", base, NULL); | |
109 else | |
5523
fe76565d93c4
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
110 filename = g_build_filename(DATADIR, "pixmaps", "gaim", dir, base, NULL); |
4359 | 111 |
112 if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { | |
4866
703e02e52262
[gaim-migrate @ 5196]
Christian Hammond <chipx86@chipx86.com>
parents:
4736
diff
changeset
|
113 g_critical("Unable to load stock pixmap %s\n", base); |
4359 | 114 |
115 g_free(filename); | |
116 | |
117 return NULL; | |
118 } | |
119 | |
120 return filename; | |
121 } | |
122 | |
123 void | |
6009
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
124 gaim_gtk_stock_init(void) |
4359 | 125 { |
126 GtkIconFactory *icon_factory; | |
127 int i; | |
4670
ada933d434cb
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
128 GtkWidget *win; |
4359 | 129 |
6009
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
130 if (stock_inited) |
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
131 return; |
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
132 |
4359 | 133 /* Setup the icon factory. */ |
134 icon_factory = gtk_icon_factory_new(); | |
135 | |
136 gtk_icon_factory_add_default(icon_factory); | |
137 | |
4670
ada933d434cb
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
138 /* Er, yeah, a hack, but it works. :) */ |
ada933d434cb
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
139 win = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
ada933d434cb
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
140 gtk_widget_realize(win); |
ada933d434cb
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
141 |
4359 | 142 for (i = 0; i < stock_icon_count; i++) { |
143 GdkPixbuf *pixbuf; | |
144 GtkIconSet *iconset; | |
145 gchar *filename; | |
146 | |
147 if (stock_icons[i].dir == NULL) { | |
4670
ada933d434cb
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
148 |
4359 | 149 /* GTK+ Stock icon */ |
4670
ada933d434cb
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
150 iconset = gtk_style_lookup_icon_set(gtk_widget_get_style(win), |
ada933d434cb
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
151 stock_icons[i].filename); |
4359 | 152 } |
153 else { | |
154 filename = find_file(stock_icons[i].dir, stock_icons[i].filename); | |
155 | |
156 if (filename == NULL) | |
157 continue; | |
158 | |
159 pixbuf = gdk_pixbuf_new_from_file(filename, NULL); | |
160 | |
161 g_free(filename); | |
162 | |
163 iconset = gtk_icon_set_new_from_pixbuf(pixbuf); | |
8346 | 164 |
165 g_object_unref(G_OBJECT(pixbuf)); | |
4359 | 166 } |
167 | |
168 gtk_icon_factory_add(icon_factory, stock_icons[i].name, iconset); | |
169 | |
170 gtk_icon_set_unref(iconset); | |
171 } | |
172 | |
4670
ada933d434cb
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
173 gtk_widget_destroy(win); |
ada933d434cb
[gaim-migrate @ 4981]
Christian Hammond <chipx86@chipx86.com>
parents:
4514
diff
changeset
|
174 |
5024 | 175 /* register logo icon size */ |
176 gtk_icon_size_register(GAIM_ICON_SIZE_LOGO, 210, 150); | |
177 | |
4359 | 178 g_object_unref(G_OBJECT(icon_factory)); |
5523
fe76565d93c4
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
179 |
fe76565d93c4
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
180 /* Register the stock items. */ |
fe76565d93c4
[gaim-migrate @ 5923]
Christian Hammond <chipx86@chipx86.com>
parents:
5115
diff
changeset
|
181 gtk_stock_add_static(stock_items, stock_item_count); |
6009
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
182 |
5cd7a10c6ade
[gaim-migrate @ 6457]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
183 stock_inited = TRUE; |
4359 | 184 } |