Tue, 25 Aug 2009 15:40:06 +0000
Read AllowTextColors key properly.
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
1 | /* |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
2 | * Adium Message Styles |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
3 | * Copyright (C) 2009 Arnold Noronha <arnstein87@gmail.com> |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
4 | * |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
5 | * This program is free software; you can redistribute it and/or |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
6 | * modify it under the terms of the GNU General Public License as |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
7 | * published by the Free Software Foundation; either version 2 of the |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
8 | * License, or (at your option) any later version. |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
9 | * |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
10 | * This program is distributed in the hope that it will be useful, but |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
11 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
13 | * General Public License for more details. |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
14 | * |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
15 | * You should have received a copy of the GNU General Public License |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
16 | * along with this program; if not, write to the Free Software |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
17 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
18 | * 02111-1307, USA. |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
19 | */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
20 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
21 | #include "message-style.h" |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
22 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
23 | #include <string.h> |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
24 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
25 | #include <glib.h> |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
26 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
27 | #include <debug.h> |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
28 | #include <util.h> |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
29 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
30 | static void |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
31 | glist_free_all_string (GList *list) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
32 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
33 | GList *first = list; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
34 | for (; list; list = g_list_next (list)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
35 | g_free (list->data); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
36 | g_list_free (first); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
37 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
38 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
39 | static |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
40 | PidginMessageStyle* pidgin_message_style_new (const char* styledir) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
41 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
42 | PidginMessageStyle* ret = g_new0 (PidginMessageStyle, 1); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
43 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
44 | ret->ref_counter = 1; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
45 | ret->style_dir = g_strdup (styledir); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
46 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
47 | return ret; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
48 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
49 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
50 | /** |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
51 | * deallocate any memory used for info.plist options |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
52 | */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
53 | static void |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
54 | pidgin_message_style_unset_info_plist (PidginMessageStyle *style) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
55 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
56 | style->message_view_version = 0; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
57 | g_free (style->cf_bundle_name); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
58 | style->cf_bundle_name = NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
59 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
60 | g_free (style->cf_bundle_identifier); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
61 | style->cf_bundle_identifier = NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
62 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
63 | g_free (style->cf_bundle_get_info_string); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
64 | style->cf_bundle_get_info_string = NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
65 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
66 | g_free (style->default_font_family); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
67 | style->default_font_family = NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
68 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
69 | style->default_font_size = 0; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
70 | style->shows_user_icons = TRUE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
71 | style->disable_combine_consecutive = FALSE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
72 | style->default_background_is_transparent = FALSE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
73 | style->disable_custom_background = FALSE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
74 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
75 | g_free (style->default_background_color); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
76 | style->default_background_color = NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
77 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
78 | style->allow_text_colors = TRUE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
79 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
80 | g_free (style->image_mask); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
81 | style->image_mask = NULL; |
|
32486
c44fe7ecb3dd
load the default variant. Bring back basestyle.css.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32485
diff
changeset
|
82 | g_free (style->default_variant); |
|
c44fe7ecb3dd
load the default variant. Bring back basestyle.css.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32485
diff
changeset
|
83 | style->default_variant = NULL; |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
84 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
85 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
86 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
87 | void pidgin_message_style_unref (PidginMessageStyle *style) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
88 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
89 | if (!style) return; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
90 | g_assert (style->ref_counter > 0); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
91 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
92 | style->ref_counter--; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
93 | if (style->ref_counter) return; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
94 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
95 | g_free (style->style_dir); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
96 | g_free (style->template_path); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
97 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
98 | g_free (style->template_html); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
99 | g_free (style->incoming_content_html); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
100 | g_free (style->outgoing_content_html); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
101 | g_free (style->outgoing_next_content_html); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
102 | g_free (style->status_html); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
103 | g_free (style->basestyle_css); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
104 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
105 | g_free (style); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
106 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
107 | pidgin_message_style_unset_info_plist (style); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
108 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
109 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
110 | void |
|
32488
17153501cae6
Fixing back variants.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32487
diff
changeset
|
111 | pidgin_message_style_save_state (const PidginMessageStyle *style) |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
112 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
113 | char *prefname = g_strdup_printf ("/plugins/gtk/adiumthemes/%s", style->cf_bundle_identifier); |
|
32488
17153501cae6
Fixing back variants.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32487
diff
changeset
|
114 | char *variant = g_strdup_printf ("%s/variant", prefname); |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
115 | |
|
32488
17153501cae6
Fixing back variants.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32487
diff
changeset
|
116 | purple_debug_info ("webkit", "saving state with variant %s\n", style->variant); |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
117 | purple_prefs_add_none (prefname); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
118 | purple_prefs_add_string (variant, ""); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
119 | purple_prefs_set_string (variant, style->variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
120 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
121 | g_free (prefname); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
122 | g_free (variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
123 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
124 | |
|
32491
c917d2ba4a38
Read AllowTextColors key properly.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32488
diff
changeset
|
125 | static void |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
126 | pidgin_message_style_load_state (PidginMessageStyle *style) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
127 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
128 | char *prefname = g_strdup_printf ("/plugins/gtk/adiumthemes/%s", style->cf_bundle_identifier); |
|
32488
17153501cae6
Fixing back variants.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32487
diff
changeset
|
129 | char *variant = g_strdup_printf ("%s/variant", prefname); |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
130 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
131 | const char* value = purple_prefs_get_string (variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
132 | gboolean changed = !style->variant || !g_str_equal (style->variant, value); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
133 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
134 | g_free (style->variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
135 | style->variant = g_strdup (value); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
136 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
137 | if (changed) pidgin_message_style_read_info_plist (style, style->variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
138 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
139 | g_free (prefname); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
140 | g_free(variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
141 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
142 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
143 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
144 | static gboolean |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
145 | parse_info_plist_key_value (xmlnode* key, gpointer destination, const char* expected) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
146 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
147 | xmlnode *val = key->next; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
148 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
149 | for (; val && val->type != XMLNODE_TYPE_TAG; val = val->next); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
150 | if (!val) return FALSE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
151 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
152 | if (expected == NULL || g_str_equal (expected, "string")) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
153 | char** dest = (char**) destination; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
154 | if (!g_str_equal (val->name, "string")) return FALSE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
155 | if (*dest) g_free (*dest); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
156 | *dest = xmlnode_get_data_unescaped (val); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
157 | } else if (g_str_equal (expected, "integer")) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
158 | int* dest = (int*) destination; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
159 | char* value = xmlnode_get_data_unescaped (val); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
160 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
161 | if (!g_str_equal (val->name, "integer")) return FALSE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
162 | *dest = atoi (value); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
163 | g_free (value); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
164 | } else if (g_str_equal (expected, "boolean")) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
165 | gboolean *dest = (gboolean*) destination; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
166 | if (g_str_equal (val->name, "true")) *dest = TRUE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
167 | else if (g_str_equal (val->name, "false")) *dest = FALSE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
168 | else return FALSE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
169 | } else return FALSE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
170 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
171 | return TRUE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
172 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
173 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
174 | static |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
175 | gboolean str_for_key (const char *key, const char *found, const char *variant){ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
176 | if (g_str_equal (key, found)) return TRUE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
177 | if (!variant) return FALSE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
178 | return (g_str_has_prefix (found, key) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
179 | && g_str_has_suffix (found, variant) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
180 | && strlen (found) == strlen (key) + strlen (variant) + 1); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
181 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
182 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
183 | /** |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
184 | * Info.plist should be re-read every time the variant changes, this is because |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
185 | * the keys that take precedence depend on the value of the current variant. |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
186 | */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
187 | void |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
188 | pidgin_message_style_read_info_plist (PidginMessageStyle *style, const char* variant) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
189 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
190 | /* note that if a variant is used the option:VARIANTNAME takes precedence */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
191 | char *contents = g_build_filename (style->style_dir, "Contents", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
192 | xmlnode *plist = xmlnode_from_file (contents, "Info.plist", "Info.plist", "webkit"), *iter; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
193 | xmlnode *dict = xmlnode_get_child (plist, "dict"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
194 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
195 | g_assert (dict); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
196 | for (iter = xmlnode_get_child (dict, "key"); iter; iter = xmlnode_get_next_twin (iter)) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
197 | char* key = xmlnode_get_data_unescaped (iter); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
198 | gboolean pr = TRUE; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
199 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
200 | if (g_str_equal ("MessageViewVersion", key)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
201 | pr = parse_info_plist_key_value (iter, &style->message_view_version, "integer"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
202 | else if (g_str_equal ("CFBundleName", key)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
203 | pr = parse_info_plist_key_value (iter, &style->cf_bundle_name, "string"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
204 | else if (g_str_equal ("CFBundleIdentifier", key)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
205 | pr = parse_info_plist_key_value (iter, &style->cf_bundle_identifier, "string"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
206 | else if (g_str_equal ("CFBundleGetInfoString", key)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
207 | pr = parse_info_plist_key_value (iter, &style->cf_bundle_get_info_string, "string"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
208 | else if (str_for_key ("DefaultFontFamily", key, variant)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
209 | pr = parse_info_plist_key_value (iter, &style->default_font_family, "string"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
210 | else if (str_for_key ("DefaultFontSize", key, variant)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
211 | pr = parse_info_plist_key_value (iter, &style->default_font_size, "integer"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
212 | else if (str_for_key ("ShowsUserIcons", key, variant)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
213 | pr = parse_info_plist_key_value (iter, &style->shows_user_icons, "boolean"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
214 | else if (str_for_key ("DisableCombineConsecutive", key, variant)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
215 | pr = parse_info_plist_key_value (iter, &style->disable_combine_consecutive, "boolean"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
216 | else if (str_for_key ("DefaultBackgroundIsTransparent", key, variant)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
217 | pr = parse_info_plist_key_value (iter, &style->default_background_is_transparent, "boolean"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
218 | else if (str_for_key ("DisableCustomBackground", key, variant)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
219 | pr = parse_info_plist_key_value (iter, &style->disable_custom_background, "boolean"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
220 | else if (str_for_key ("DefaultBackgroundColor", key, variant)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
221 | pr = parse_info_plist_key_value (iter, &style->default_background_color, "string"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
222 | else if (str_for_key ("AllowTextColors", key, variant)) |
|
32491
c917d2ba4a38
Read AllowTextColors key properly.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32488
diff
changeset
|
223 | pr = parse_info_plist_key_value (iter, &style->allow_text_colors, "integer"); |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
224 | else if (str_for_key ("ImageMask", key, variant)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
225 | pr = parse_info_plist_key_value (iter, &style->image_mask, "string"); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
226 | |
|
32491
c917d2ba4a38
Read AllowTextColors key properly.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32488
diff
changeset
|
227 | if (!pr) |
|
c917d2ba4a38
Read AllowTextColors key properly.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32488
diff
changeset
|
228 | purple_debug_warning ("webkit", "Failed to parse key %s\n", key); |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
229 | g_free (key); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
230 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
231 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
232 | xmlnode_free (plist); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
233 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
234 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
235 | PidginMessageStyle* |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
236 | pidgin_message_style_load (const char* styledir) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
237 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
238 | /* |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
239 | * the loading process described: |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
240 | * |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
241 | * First we load all the style .html files, etc. |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
242 | * The we load any config options that have been stored for |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
243 | * this variant. |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
244 | * Then we load the Info.plist, for the currently decided variant. |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
245 | * At this point, if we find that variants exist, yet |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
246 | * we don't have a variant selected, we choose DefaultVariant |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
247 | * and if that does not exist, we choose the first one in the |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
248 | * directory. |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
249 | */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
250 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
251 | /* is this style already loaded? */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
252 | char *file; /* temporary variable */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
253 | PidginMessageStyle *style = NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
254 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
255 | /* else we need to load it */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
256 | style = pidgin_message_style_new (styledir); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
257 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
258 | /* load all other files */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
259 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
260 | /* The template path can either come from the theme, or can |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
261 | * be stock Template.html that comes with the plugin */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
262 | style->template_path = g_build_filename(styledir, "Contents", "Resources", "Template.html", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
263 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
264 | if (!g_file_test(style->template_path, G_FILE_TEST_EXISTS)) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
265 | g_free (style->template_path); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
266 | style->template_path = g_build_filename(DATADIR, "pidgin", "webkit", "Template.html", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
267 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
268 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
269 | if (!g_file_get_contents(style->template_path, &style->template_html, NULL, NULL)) { |
|
32487
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
270 | purple_debug_error ("webkit", "Could not locate a Template.html (%s)\n", style->template_path); |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
271 | pidgin_message_style_unref (style); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
272 | return NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
273 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
274 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
275 | file = g_build_filename(styledir, "Contents", "Resources", "Status.html", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
276 | if (!g_file_get_contents(file, &style->status_html, NULL, NULL)) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
277 | purple_debug_info ("webkit", "%s could not find Resources/Status.html", styledir); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
278 | pidgin_message_style_unref (style); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
279 | g_free (file); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
280 | return NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
281 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
282 | g_free (file); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
283 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
284 | file = g_build_filename(styledir, "Contents", "Resources", "main.css", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
285 | if (!g_file_get_contents(file, &style->basestyle_css, NULL, NULL)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
286 | style->basestyle_css = g_strdup (""); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
287 | g_free (file); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
288 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
289 | file = g_build_filename(styledir, "Contents", "Resources", "Header.html", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
290 | if (!g_file_get_contents(file, &style->header_html, NULL, NULL)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
291 | style->header_html = g_strdup (""); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
292 | g_free (file); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
293 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
294 | file = g_build_filename(styledir, "Contents", "Resources", "Footer.html", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
295 | if (!g_file_get_contents(file, &style->footer_html, NULL, NULL)) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
296 | style->footer_html = g_strdup (""); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
297 | g_free (file); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
298 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
299 | file = g_build_filename(styledir, "Contents", "Resources", "Incoming", "Content.html", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
300 | if (!g_file_get_contents(file, &style->incoming_content_html, NULL, NULL)) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
301 | purple_debug_info ("webkit", "%s did not have a Incoming/Content.html\n", styledir); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
302 | pidgin_message_style_unref (style); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
303 | g_free (file); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
304 | return NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
305 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
306 | g_free (file); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
307 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
308 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
309 | /* according to the spec, the following are optional files */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
310 | file = g_build_filename(styledir, "Contents", "Resources", "Incoming", "NextContent.html", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
311 | if (!g_file_get_contents(file, &style->incoming_next_content_html, NULL, NULL)) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
312 | style->incoming_next_content_html = g_strdup (style->incoming_content_html); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
313 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
314 | g_free (file); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
315 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
316 | file = g_build_filename(styledir, "Contents", "Resources", "Outgoing", "Content.html", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
317 | if (!g_file_get_contents(file, &style->outgoing_content_html, NULL, NULL)) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
318 | style->outgoing_content_html = g_strdup(style->incoming_content_html); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
319 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
320 | g_free (file); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
321 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
322 | file = g_build_filename(styledir, "Contents", "Resources", "Outgoing", "NextContent.html", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
323 | if (!g_file_get_contents(file, &style->outgoing_next_content_html, NULL, NULL)) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
324 | style->outgoing_next_content_html = g_strdup (style->outgoing_content_html); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
325 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
326 | |
|
32488
17153501cae6
Fixing back variants.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32487
diff
changeset
|
327 | pidgin_message_style_read_info_plist (style, NULL); |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
328 | pidgin_message_style_load_state (style); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
329 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
330 | /* non variant dependent Info.plist checks */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
331 | if (style->message_view_version < 3) { |
|
32491
c917d2ba4a38
Read AllowTextColors key properly.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32488
diff
changeset
|
332 | purple_debug_info ("webkit", "%s is a legacy style (version %d) and will not be loaded\n", style->cf_bundle_name, style->message_view_version); |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
333 | pidgin_message_style_unref (style); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
334 | return NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
335 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
336 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
337 | if (!style->variant) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
338 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
339 | GList *variants = pidgin_message_style_get_variants (style); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
340 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
341 | if (variants) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
342 | pidgin_message_style_set_variant (style, variants->data); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
343 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
344 | glist_free_all_string (variants); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
345 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
346 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
347 | return style; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
348 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
349 | |
|
32487
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
350 | PidginMessageStyle* |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
351 | pidgin_message_style_copy (const PidginMessageStyle *style) |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
352 | { |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
353 | /* it's at times like this that I miss C++ */ |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
354 | PidginMessageStyle *ret = pidgin_message_style_new (style->style_dir); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
355 | |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
356 | ret->variant = g_strdup (style->variant); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
357 | ret->message_view_version = style->message_view_version; |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
358 | ret->cf_bundle_name = g_strdup (style->cf_bundle_name); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
359 | ret->cf_bundle_identifier = g_strdup (style->cf_bundle_identifier); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
360 | ret->cf_bundle_get_info_string = g_strdup (style->cf_bundle_get_info_string); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
361 | ret->default_font_family = g_strdup (style->default_font_family); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
362 | ret->default_font_size = style->default_font_size; |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
363 | ret->shows_user_icons = style->shows_user_icons; |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
364 | ret->disable_combine_consecutive = style->disable_combine_consecutive; |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
365 | ret->default_background_is_transparent = style->default_background_is_transparent; |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
366 | ret->disable_custom_background = style->disable_custom_background; |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
367 | ret->default_background_color = g_strdup (style->default_background_color); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
368 | ret->allow_text_colors = style->allow_text_colors; |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
369 | ret->image_mask = g_strdup (style->image_mask); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
370 | ret->default_variant = g_strdup (style->default_variant); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
371 | |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
372 | ret->template_path = g_strdup (style->template_path); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
373 | ret->template_html = g_strdup (style->template_html); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
374 | ret->header_html = g_strdup (style->header_html); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
375 | ret->footer_html = g_strdup (style->footer_html); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
376 | ret->incoming_content_html = g_strdup (style->incoming_content_html); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
377 | ret->outgoing_content_html = g_strdup (style->outgoing_content_html); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
378 | ret->incoming_next_content_html = g_strdup (style->incoming_next_content_html); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
379 | ret->outgoing_next_content_html = g_strdup (style->outgoing_next_content_html); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
380 | ret->status_html = g_strdup (style->status_html); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
381 | ret->basestyle_css = g_strdup (style->basestyle_css); |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
382 | return ret; |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
383 | } |
|
13f307997f1a
Instead of using references, use copy's. Sigh, I know this is a memory inefficient
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
32486
diff
changeset
|
384 | |
|
32485
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
385 | void |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
386 | pidgin_message_style_set_variant (PidginMessageStyle *style, const char *variant) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
387 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
388 | /* I'm not going to test whether this variant is valid! */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
389 | g_free (style->variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
390 | style->variant = g_strdup (variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
391 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
392 | pidgin_message_style_read_info_plist (style, variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
393 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
394 | /* todo, the style has "changed". Ideally, I would like to use signals at this point. */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
395 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
396 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
397 | char* pidgin_message_style_get_variant (PidginMessageStyle *style) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
398 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
399 | return g_strdup (style->variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
400 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
401 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
402 | /** |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
403 | * Get a list of variants supported by the style. |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
404 | */ |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
405 | GList* |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
406 | pidgin_message_style_get_variants (PidginMessageStyle *style) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
407 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
408 | GList *ret = NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
409 | GDir *variants; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
410 | const char *css_file; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
411 | char *css; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
412 | char *variant_dir; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
413 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
414 | g_assert (style->style_dir); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
415 | variant_dir = g_build_filename(style->style_dir, "Contents", "Resources", "Variants", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
416 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
417 | variants = g_dir_open(variant_dir, 0, NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
418 | if (!variants) return NULL; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
419 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
420 | while ((css_file = g_dir_read_name(variants)) != NULL) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
421 | if (!g_str_has_suffix (css_file, ".css")) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
422 | continue; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
423 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
424 | css = g_strndup (css_file, strlen (css_file) - 4); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
425 | ret = g_list_append(ret, css); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
426 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
427 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
428 | g_dir_close(variants); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
429 | g_free(variant_dir); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
430 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
431 | ret = g_list_sort (ret, (GCompareFunc)g_strcmp0); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
432 | return ret; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
433 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
434 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
435 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
436 | char* pidgin_message_style_get_css (PidginMessageStyle *style) |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
437 | { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
438 | if (!style->variant) { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
439 | return g_build_filename (style->style_dir, "Contents", "Resources", "main.css", NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
440 | } else { |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
441 | char *file = g_strdup_printf ("%s.css", style->variant); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
442 | char *ret = g_build_filename (style->style_dir, "Contents", "Resources", "Variants", file, NULL); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
443 | g_free (file); |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
444 | return ret; |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
445 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
446 | } |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
447 | |
|
b932922007bc
Separated the MessageStyle loading code from the actual rendering code.
Arnold Noronha <tdrhq@soc.pidgin.im>
parents:
diff
changeset
|
448 |