Wed, 05 Oct 2016 16:19:47 -0500
Remove Facebook (XMPP) account option and support code
This patch removes the Facebook (XMPP) account option and any remaining
supporting code. According to https://developers.facebook.com/docs/chat
the Facebook XMPP Chat API service was ended April 30th, 2015. This code
has already been removed in Pidgin 3, and replaced with a new in-tree
version which uses a different mechanism. There is a backported version
which can be found at https://github.com/dequis/purple-facebook/wiki
This patch intentionally leaves the protocol icon, so that the
backported version mentioned above doesn't need to ship its own.
| 7432 | 1 | /** |
| 2 | * @file gtklog.c GTK+ Log viewer | |
|
16254
eeb2bba4dc94
Rename the Doxygen group from gtkui to pidgin.
Richard Laager <rlaager@pidgin.im>
parents:
15931
diff
changeset
|
3 | * @ingroup pidgin |
|
20147
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
4 | */ |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
5 | |
|
66f05a854eee
applied changes from 8a731bbd0197fbcc91a705c2d8f528154216defa
Richard Laager <rlaager@pidgin.im>
parents:
19859
diff
changeset
|
6 | /* pidgin |
| 7432 | 7 | * |
|
15931
716b5fac1895
Re-sed the copyright notices so they don't all talk about Purple.
Richard Laager <rlaager@pidgin.im>
parents:
15884
diff
changeset
|
8 | * Pidgin is the legal property of its developers, whose names are too numerous |
| 8046 | 9 | * to list here. Please refer to the COPYRIGHT file distributed with this |
| 10 | * source distribution. | |
|
7537
4c3be2f554b1
[gaim-migrate @ 8150]
Christian Hammond <chipx86@chipx86.com>
parents:
7535
diff
changeset
|
11 | * |
| 7432 | 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License as published by | |
| 14 | * the Free Software Foundation; either version 2 of the License, or | |
| 15 | * (at your option) any later version. | |
| 16 | * | |
| 17 | * This program is distributed in the hope that it will be useful, | |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 20 | * GNU General Public License for more details. | |
| 21 | * | |
| 22 | * You should have received a copy of the GNU General Public License | |
| 23 | * along with this program; if not, write to the Free Software | |
|
19859
71d37b57eff2
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
18743
diff
changeset
|
24 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
| 7432 | 25 | */ |
| 9791 | 26 | #include "internal.h" |
| 15577 | 27 | #include "pidgin.h" |
| 7432 | 28 | |
| 29 | #include "account.h" | |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
30 | #include "debug.h" |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
31 | #include "log.h" |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
32 | #include "notify.h" |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
33 | #include "request.h" |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
34 | #include "util.h" |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
35 | |
|
15883
969b74a3e27a
According to etags, pidgin/ should be completely clean of references to 'gaim' as a client
Sean Egan <seanegan@pidgin.im>
parents:
15882
diff
changeset
|
36 | #include "pidginstock.h" |
| 7432 | 37 | #include "gtkblist.h" |
| 38 | #include "gtkimhtml.h" | |
| 39 | #include "gtklog.h" | |
| 40 | #include "gtkutils.h" | |
| 41 | ||
| 42 | static GHashTable *log_viewers = NULL; | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
43 | static void populate_log_tree(PidginLogViewer *lv); |
|
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
44 | static PidginLogViewer *syslog_viewer = NULL; |
| 7432 | 45 | |
| 46 | struct log_viewer_hash_t { | |
| 15884 | 47 | PurpleLogType type; |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
48 | char *buddyname; |
| 15884 | 49 | PurpleAccount *account; |
| 50 | PurpleContact *contact; | |
| 7432 | 51 | }; |
| 52 | ||
| 7440 | 53 | static guint log_viewer_hash(gconstpointer data) |
| 7432 | 54 | { |
| 7440 | 55 | const struct log_viewer_hash_t *viewer = data; |
| 56 | ||
| 10663 | 57 | if (viewer->contact != NULL) |
| 58 | return g_direct_hash(viewer->contact); | |
| 59 | ||
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
60 | return g_str_hash(viewer->buddyname) + |
| 15884 | 61 | g_str_hash(purple_account_get_username(viewer->account)); |
| 7432 | 62 | } |
| 63 | ||
| 10663 | 64 | static gboolean log_viewer_equal(gconstpointer y, gconstpointer z) |
| 7432 | 65 | { |
| 7440 | 66 | const struct log_viewer_hash_t *a, *b; |
| 7432 | 67 | int ret; |
| 7440 | 68 | char *normal; |
| 69 | ||
| 70 | a = y; | |
| 71 | b = z; | |
| 72 | ||
| 10663 | 73 | if (a->contact != NULL) { |
| 74 | if (b->contact != NULL) | |
| 75 | return (a->contact == b->contact); | |
| 76 | else | |
| 77 | return FALSE; | |
| 78 | } else { | |
| 79 | if (b->contact != NULL) | |
| 80 | return FALSE; | |
| 81 | } | |
| 82 | ||
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
83 | normal = g_strdup(purple_normalize(a->account, a->buddyname)); |
| 7440 | 84 | ret = (a->account == b->account) && |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
85 | !strcmp(normal, purple_normalize(b->account, b->buddyname)); |
| 7432 | 86 | g_free(normal); |
| 10663 | 87 | |
| 7432 | 88 | return ret; |
| 89 | } | |
| 90 | ||
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
91 | static void select_first_log(PidginLogViewer *lv) |
|
13569
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
92 | { |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
93 | GtkTreeModel *model; |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
94 | GtkTreeIter iter, it; |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
95 | GtkTreePath *path; |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
96 | |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
97 | model = GTK_TREE_MODEL(lv->treestore); |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
98 | |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
99 | if (!gtk_tree_model_get_iter_first(model, &iter)) |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
100 | return; |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
101 | |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
102 | path = gtk_tree_model_get_path(model, &iter); |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
103 | if (gtk_tree_model_iter_children(model, &it, &iter)) |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
104 | { |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
105 | gtk_tree_view_expand_row(GTK_TREE_VIEW(lv->treeview), path, TRUE); |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
106 | path = gtk_tree_model_get_path(model, &it); |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
107 | } |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
108 | |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
109 | gtk_tree_selection_select_path(gtk_tree_view_get_selection(GTK_TREE_VIEW(lv->treeview)), path); |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
110 | |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
111 | gtk_tree_path_free(path); |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
112 | } |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
113 | |
| 15884 | 114 | static const char *log_get_date(PurpleLog *log) |
|
15060
a5d9fafd2b8c
[gaim-migrate @ 17777]
Richard Laager <rlaager@pidgin.im>
parents:
14861
diff
changeset
|
115 | { |
|
a5d9fafd2b8c
[gaim-migrate @ 17777]
Richard Laager <rlaager@pidgin.im>
parents:
14861
diff
changeset
|
116 | if (log->tm) |
| 15884 | 117 | return purple_date_format_full(log->tm); |
|
15060
a5d9fafd2b8c
[gaim-migrate @ 17777]
Richard Laager <rlaager@pidgin.im>
parents:
14861
diff
changeset
|
118 | else |
| 15884 | 119 | return purple_date_format_full(localtime(&log->time)); |
|
15060
a5d9fafd2b8c
[gaim-migrate @ 17777]
Richard Laager <rlaager@pidgin.im>
parents:
14861
diff
changeset
|
120 | } |
|
a5d9fafd2b8c
[gaim-migrate @ 17777]
Richard Laager <rlaager@pidgin.im>
parents:
14861
diff
changeset
|
121 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
122 | static void search_cb(GtkWidget *button, PidginLogViewer *lv) |
| 7535 | 123 | { |
| 124 | const char *search_term = gtk_entry_get_text(GTK_ENTRY(lv->entry)); | |
| 125 | GList *logs; | |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
126 | |
|
12232
857f087ec86b
[gaim-migrate @ 14534]
Richard Laager <rlaager@pidgin.im>
parents:
11869
diff
changeset
|
127 | if (!(*search_term)) { |
|
857f087ec86b
[gaim-migrate @ 14534]
Richard Laager <rlaager@pidgin.im>
parents:
11869
diff
changeset
|
128 | /* reset the tree */ |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
129 | gtk_tree_store_clear(lv->treestore); |
| 7535 | 130 | populate_log_tree(lv); |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
131 | g_free(lv->search); |
| 7535 | 132 | lv->search = NULL; |
|
7537
4c3be2f554b1
[gaim-migrate @ 8150]
Christian Hammond <chipx86@chipx86.com>
parents:
7535
diff
changeset
|
133 | gtk_imhtml_search_clear(GTK_IMHTML(lv->imhtml)); |
|
13569
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
134 | select_first_log(lv); |
| 7535 | 135 | return; |
| 136 | } | |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
137 | |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
138 | if (lv->search != NULL && !strcmp(lv->search, search_term)) |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
139 | { |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
140 | /* Searching for the same term acts as "Find Next" */ |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
141 | gtk_imhtml_search_find(GTK_IMHTML(lv->imhtml), lv->search); |
|
22237
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
142 | return; |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
143 | } |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
144 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
145 | pidgin_set_cursor(lv->window, GDK_WATCH); |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
146 | |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
147 | g_free(lv->search); |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
148 | lv->search = g_strdup(search_term); |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
149 | |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
150 | gtk_tree_store_clear(lv->treestore); |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
151 | gtk_imhtml_clear(GTK_IMHTML(lv->imhtml)); |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
152 | |
| 7535 | 153 | for (logs = lv->logs; logs != NULL; logs = logs->next) { |
| 15884 | 154 | char *read = purple_log_read((PurpleLog*)logs->data, NULL); |
| 155 | if (read && *read && purple_strcasestr(read, search_term)) { | |
| 7535 | 156 | GtkTreeIter iter; |
| 15884 | 157 | PurpleLog *log = logs->data; |
|
12232
857f087ec86b
[gaim-migrate @ 14534]
Richard Laager <rlaager@pidgin.im>
parents:
11869
diff
changeset
|
158 | |
| 7535 | 159 | gtk_tree_store_append (lv->treestore, &iter, NULL); |
| 160 | gtk_tree_store_set(lv->treestore, &iter, | |
|
15060
a5d9fafd2b8c
[gaim-migrate @ 17777]
Richard Laager <rlaager@pidgin.im>
parents:
14861
diff
changeset
|
161 | 0, log_get_date(log), |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
162 | 1, log, -1); |
| 7535 | 163 | } |
|
10574
5abb2931b6ff
[gaim-migrate @ 11966]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10181
diff
changeset
|
164 | g_free(read); |
| 7535 | 165 | } |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
166 | |
|
13569
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
167 | select_first_log(lv); |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
168 | pidgin_clear_cursor(lv->window); |
| 7535 | 169 | } |
| 170 | ||
|
15298
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
171 | static void destroy_cb(GtkWidget *w, gint resp, struct log_viewer_hash_t *ht) { |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
172 | PidginLogViewer *lv = syslog_viewer; |
|
7454
c99a2070471e
[gaim-migrate @ 8067]
Mark Doliner <markdoliner@pidgin.im>
parents:
7440
diff
changeset
|
173 | |
|
15298
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
174 | #ifdef _WIN32 |
|
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
175 | if (resp == GTK_RESPONSE_HELP) { |
|
18743
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
176 | GtkTreeSelection *sel; |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
177 | GtkTreeIter iter; |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
178 | GtkTreeModel *model; |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
179 | PurpleLog *log = NULL; |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
180 | char *logdir; |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
181 | |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
182 | if (ht != NULL) |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
183 | lv = g_hash_table_lookup(log_viewers, ht); |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
184 | model = GTK_TREE_MODEL(lv->treestore); |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
185 | |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
186 | sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(lv->treeview)); |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
187 | if (gtk_tree_selection_get_selected(sel, &model, &iter)) { |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
188 | GValue val; |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
189 | |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
190 | val.g_type = 0; |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
191 | gtk_tree_model_get_value (model, &iter, 1, &val); |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
192 | log = g_value_get_pointer(&val); |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
193 | g_value_unset(&val); |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
194 | } |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
195 | |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
196 | |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
197 | if (log == NULL) |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
198 | logdir = g_build_filename(purple_user_dir(), "logs", NULL); |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
199 | else |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
200 | logdir = purple_log_get_log_dir(log->type, log->name, log->account); |
|
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
201 | |
|
15574
18d9d1c05994
Win32 de-gaimification of pidgin
Daniel Atallah <datallah@pidgin.im>
parents:
15568
diff
changeset
|
202 | winpidgin_shell_execute(logdir, "explore", NULL); |
|
15298
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
203 | g_free(logdir); |
|
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
204 | return; |
|
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
205 | } |
|
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
206 | #endif |
|
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
207 | |
| 10663 | 208 | if (ht != NULL) { |
| 8573 | 209 | lv = g_hash_table_lookup(log_viewers, ht); |
| 210 | g_hash_table_remove(log_viewers, ht); | |
| 10663 | 211 | |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
212 | g_free(ht->buddyname); |
| 8573 | 213 | g_free(ht); |
| 214 | } else | |
| 215 | syslog_viewer = NULL; | |
| 216 | ||
| 15884 | 217 | purple_request_close_with_handle(lv); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
218 | |
| 15884 | 219 | g_list_foreach(lv->logs, (GFunc)purple_log_free, NULL); |
|
13569
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
220 | g_list_free(lv->logs); |
| 10663 | 221 | |
|
14097
0c340861ab79
[gaim-migrate @ 16638]
Mark Doliner <markdoliner@pidgin.im>
parents:
13569
diff
changeset
|
222 | g_free(lv->search); |
|
0c340861ab79
[gaim-migrate @ 16638]
Mark Doliner <markdoliner@pidgin.im>
parents:
13569
diff
changeset
|
223 | g_free(lv); |
| 10663 | 224 | |
|
7454
c99a2070471e
[gaim-migrate @ 8067]
Mark Doliner <markdoliner@pidgin.im>
parents:
7440
diff
changeset
|
225 | gtk_widget_destroy(w); |
|
c99a2070471e
[gaim-migrate @ 8067]
Mark Doliner <markdoliner@pidgin.im>
parents:
7440
diff
changeset
|
226 | } |
|
c99a2070471e
[gaim-migrate @ 8067]
Mark Doliner <markdoliner@pidgin.im>
parents:
7440
diff
changeset
|
227 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
228 | static void log_row_activated_cb(GtkTreeView *tv, GtkTreePath *path, GtkTreeViewColumn *col, PidginLogViewer *viewer) { |
| 10663 | 229 | if (gtk_tree_view_row_expanded(tv, path)) |
| 230 | gtk_tree_view_collapse_row(tv, path); | |
| 231 | else | |
| 232 | gtk_tree_view_expand_row(tv, path, FALSE); | |
| 8573 | 233 | } |
| 10663 | 234 | |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
235 | static void delete_log_cleanup_cb(gpointer *data) |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
236 | { |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
237 | g_free(data[1]); /* iter */ |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
238 | g_free(data); |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
239 | } |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
240 | |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
241 | static void delete_log_cb(gpointer *data) |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
242 | { |
| 15884 | 243 | if (!purple_log_delete((PurpleLog *)data[2])) |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
244 | { |
|
22384
0a2c39b4a6b1
Mark some strings for translation
Mark Doliner <markdoliner@pidgin.im>
parents:
22237
diff
changeset
|
245 | purple_notify_error(NULL, NULL, _("Log Deletion Failed"), |
|
0a2c39b4a6b1
Mark some strings for translation
Mark Doliner <markdoliner@pidgin.im>
parents:
22237
diff
changeset
|
246 | _("Check permissions and try again.")); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
247 | } |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
248 | else |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
249 | { |
|
15613
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
250 | GtkTreeStore *treestore = data[0]; |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
251 | GtkTreeIter *iter = (GtkTreeIter *)data[1]; |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
252 | GtkTreePath *path = gtk_tree_model_get_path(GTK_TREE_MODEL(treestore), iter); |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
253 | gboolean first = !gtk_tree_path_prev(path); |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
254 | |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
255 | if (!gtk_tree_store_remove(treestore, iter) && first) |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
256 | { |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
257 | /* iter was the last child at its level */ |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
258 | |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
259 | if (gtk_tree_path_up(path)) |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
260 | { |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
261 | gtk_tree_model_get_iter(GTK_TREE_MODEL(treestore), iter, path); |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
262 | gtk_tree_store_remove(treestore, iter); |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
263 | } |
|
9a6ec23fe078
If you delete the last log for a month, delete the month header as well.
Richard Laager <rlaager@pidgin.im>
parents:
15612
diff
changeset
|
264 | } |
|
29500
1e0464dad92b
This should pretty much finish off the GTK_CHECK_VERSION calls in Pidgin.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
25889
diff
changeset
|
265 | |
| 16293 | 266 | gtk_tree_path_free(path); |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
267 | } |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
268 | |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
269 | delete_log_cleanup_cb(data); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
270 | } |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
271 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
272 | static void log_delete_log_cb(GtkWidget *menuitem, gpointer *data) |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
273 | { |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
274 | PidginLogViewer *lv = data[0]; |
| 15884 | 275 | PurpleLog *log = data[1]; |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
276 | const char *time = log_get_date(log); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
277 | const char *name; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
278 | char *tmp; |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
279 | gpointer *data2; |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
280 | |
| 15884 | 281 | if (log->type == PURPLE_LOG_IM) |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
282 | { |
| 15884 | 283 | PurpleBuddy *buddy = purple_find_buddy(log->account, log->name); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
284 | if (buddy != NULL) |
| 15884 | 285 | name = purple_buddy_get_contact_alias(buddy); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
286 | else |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
287 | name = log->name; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
288 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
289 | tmp = g_strdup_printf(_("Are you sure you want to permanently delete the log of the " |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
290 | "conversation with %s which started at %s?"), name, time); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
291 | } |
| 15884 | 292 | else if (log->type == PURPLE_LOG_CHAT) |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
293 | { |
| 15884 | 294 | PurpleChat *chat = purple_blist_find_chat(log->account, log->name); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
295 | if (chat != NULL) |
| 15884 | 296 | name = purple_chat_get_name(chat); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
297 | else |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
298 | name = log->name; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
299 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
300 | tmp = g_strdup_printf(_("Are you sure you want to permanently delete the log of the " |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
301 | "conversation in %s which started at %s?"), name, time); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
302 | } |
| 15884 | 303 | else if (log->type == PURPLE_LOG_SYSTEM) |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
304 | { |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
305 | tmp = g_strdup_printf(_("Are you sure you want to permanently delete the system log " |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
306 | "which started at %s?"), time); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
307 | } |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
308 | else |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
309 | g_return_if_reached(); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
310 | |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
311 | /* The only way to free data in all cases is to tie it to the menuitem with |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
312 | * g_object_set_data_full(). But, since we need to get some data down to |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
313 | * delete_log_cb() to delete the log from the log viewer after the file is |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
314 | * deleted, we have to allocate a new data array and make sure it gets freed |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
315 | * either way. */ |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
316 | data2 = g_new(gpointer, 3); |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
317 | data2[0] = lv->treestore; |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
318 | data2[1] = data[3]; /* iter */ |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
319 | data2[2] = log; |
|
22384
0a2c39b4a6b1
Mark some strings for translation
Mark Doliner <markdoliner@pidgin.im>
parents:
22237
diff
changeset
|
320 | purple_request_action(lv, NULL, _("Delete Log?"), tmp, 0, |
|
16490
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
16478
diff
changeset
|
321 | NULL, NULL, NULL, |
|
21175
c6d76b49c206
disapproval of revision '8ba833993a115415727bb1b70362e0bd1603c169'
Richard Laager <rlaager@pidgin.im>
parents:
21174
diff
changeset
|
322 | data2, 2, |
|
16490
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
16478
diff
changeset
|
323 | _("Delete"), delete_log_cb, |
|
68c22924d66b
Added account, who, and conversation parameters to the request API calls, and updated all code to match. I can't compile the Perl module, so I'd appreciate it if someone who knows it would verify that this doesn't break Perl.
Evan Schoenberg <evands@pidgin.im>
parents:
16478
diff
changeset
|
324 | _("Cancel"), delete_log_cleanup_cb); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
325 | g_free(tmp); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
326 | } |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
327 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
328 | static void log_show_popup_menu(GtkWidget *treeview, GdkEventButton *event, gpointer *data) |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
329 | { |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
330 | GtkWidget *menu = gtk_menu_new(); |
|
22384
0a2c39b4a6b1
Mark some strings for translation
Mark Doliner <markdoliner@pidgin.im>
parents:
22237
diff
changeset
|
331 | GtkWidget *menuitem = gtk_menu_item_new_with_label(_("Delete Log...")); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
332 | |
| 15884 | 333 | if (!purple_log_is_deletable((PurpleLog *)data[1])) |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
334 | gtk_widget_set_sensitive(menuitem, FALSE); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
335 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
336 | g_signal_connect(menuitem, "activate", G_CALLBACK(log_delete_log_cb), data); |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
337 | g_object_set_data_full(G_OBJECT(menuitem), "log-viewer-data", data, g_free); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
338 | gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
339 | gtk_widget_show_all(menu); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
340 | |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
341 | gtk_menu_popup(GTK_MENU(menu), NULL, NULL, (GtkMenuPositionFunc)data[2], NULL, |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
342 | (event != NULL) ? event->button : 0, |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
343 | gdk_event_get_time((GdkEvent *)event)); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
344 | } |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
345 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
346 | static gboolean log_button_press_cb(GtkWidget *treeview, GdkEventButton *event, PidginLogViewer *lv) |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
347 | { |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
348 | if (event->type == GDK_BUTTON_PRESS && event->button == 3) |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
349 | { |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
350 | GtkTreePath *path; |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
351 | GtkTreeIter *iter; |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
352 | GValue val; |
| 15884 | 353 | PurpleLog *log; |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
354 | gpointer *data; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
355 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
356 | if (!gtk_tree_view_get_path_at_pos(GTK_TREE_VIEW(treeview), event->x, event->y, &path, NULL, NULL, NULL)) |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
357 | return FALSE; |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
358 | iter = g_new(GtkTreeIter, 1); |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
359 | gtk_tree_model_get_iter(GTK_TREE_MODEL(lv->treestore), iter, path); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
360 | val.g_type = 0; |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
361 | gtk_tree_model_get_value(GTK_TREE_MODEL(lv->treestore), iter, 1, &val); |
|
22455
1e4f21a50bc6
Plug some leaks caused by GtkTreePaths not being freed.
Daniel Atallah <datallah@pidgin.im>
parents:
22384
diff
changeset
|
362 | gtk_tree_path_free(path); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
363 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
364 | log = g_value_get_pointer(&val); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
365 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
366 | if (log == NULL) |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
367 | { |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
368 | g_free(iter); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
369 | return FALSE; |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
370 | } |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
371 | |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
372 | data = g_new(gpointer, 4); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
373 | data[0] = lv; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
374 | data[1] = log; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
375 | data[2] = NULL; |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
376 | data[3] = iter; |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
377 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
378 | log_show_popup_menu(treeview, event, data); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
379 | return TRUE; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
380 | } |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
381 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
382 | return FALSE; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
383 | } |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
384 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
385 | static gboolean log_popup_menu_cb(GtkWidget *treeview, PidginLogViewer *lv) |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
386 | { |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
387 | GtkTreeSelection *sel; |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
388 | GtkTreeIter *iter; |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
389 | GValue val; |
| 15884 | 390 | PurpleLog *log; |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
391 | gpointer *data; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
392 | |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
393 | iter = g_new(GtkTreeIter, 1); |
|
18743
58a367fa661a
Make the "Browse Logs Folder" button open the folder containing the log
Richard Laager <rlaager@pidgin.im>
parents:
16490
diff
changeset
|
394 | sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(lv->treeview)); |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
395 | if (!gtk_tree_selection_get_selected(sel, NULL, iter)) |
|
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
396 | { |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
397 | return FALSE; |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
398 | } |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
399 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
400 | val.g_type = 0; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
401 | gtk_tree_model_get_value(GTK_TREE_MODEL(lv->treestore), |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
402 | iter, NODE_COLUMN, &val); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
403 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
404 | log = g_value_get_pointer(&val); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
405 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
406 | if (log == NULL) |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
407 | return FALSE; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
408 | |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
409 | data = g_new(gpointer, 4); |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
410 | data[0] = lv; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
411 | data[1] = log; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
412 | data[2] = pidgin_treeview_popup_menu_position_func; |
|
15612
5de26d19e4e5
After the log is deleted, remove the entry from the log viewer.
Richard Laager <rlaager@pidgin.im>
parents:
15586
diff
changeset
|
413 | data[3] = iter; |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
414 | |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
415 | log_show_popup_menu(treeview, NULL, data); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
416 | return TRUE; |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
417 | } |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
418 | |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
419 | static gboolean search_find_cb(gpointer data) |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
420 | { |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
421 | PidginLogViewer *viewer = data; |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
422 | gtk_imhtml_search_find(GTK_IMHTML(viewer->imhtml), viewer->search); |
|
29045
bbafcef9ffbb
*** Plucked rev b0c392df480480c0a511e96fc7b2eb7f827e6efb (bcc0147bab874ca52c55ad4900545e17528bf8fd):
Daniel Atallah <datallah@pidgin.im>
parents:
25889
diff
changeset
|
423 | g_object_steal_data(G_OBJECT(viewer->entry), "search-find-cb"); |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
424 | return FALSE; |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
425 | } |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
426 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
427 | static void log_select_cb(GtkTreeSelection *sel, PidginLogViewer *viewer) { |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
428 | GtkTreeIter iter; |
|
12600
7ecd4441fdc7
[gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents:
12232
diff
changeset
|
429 | GValue val; |
| 7432 | 430 | GtkTreeModel *model = GTK_TREE_MODEL(viewer->treestore); |
| 15884 | 431 | PurpleLog *log = NULL; |
| 432 | PurpleLogReadFlags flags; | |
| 7432 | 433 | char *read = NULL; |
| 434 | ||
| 10663 | 435 | if (!gtk_tree_selection_get_selected(sel, &model, &iter)) |
| 7432 | 436 | return; |
|
12600
7ecd4441fdc7
[gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents:
12232
diff
changeset
|
437 | |
|
7ecd4441fdc7
[gaim-migrate @ 14934]
Richard Laager <rlaager@pidgin.im>
parents:
12232
diff
changeset
|
438 | val.g_type = 0; |
| 7432 | 439 | gtk_tree_model_get_value (model, &iter, 1, &val); |
| 440 | log = g_value_get_pointer(&val); | |
| 441 | g_value_unset(&val); | |
| 442 | ||
| 10663 | 443 | if (log == NULL) |
| 7432 | 444 | return; |
| 445 | ||
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
446 | pidgin_set_cursor(viewer->window, GDK_WATCH); |
|
12232
857f087ec86b
[gaim-migrate @ 14534]
Richard Laager <rlaager@pidgin.im>
parents:
11869
diff
changeset
|
447 | |
| 15884 | 448 | if (log->type != PURPLE_LOG_SYSTEM) { |
| 10663 | 449 | char *title; |
| 15884 | 450 | if (log->type == PURPLE_LOG_CHAT) |
|
13105
8f9c66e4af87
[gaim-migrate @ 15466]
Richard Laager <rlaager@pidgin.im>
parents:
13091
diff
changeset
|
451 | title = g_strdup_printf(_("<span size='larger' weight='bold'>Conversation in %s on %s</span>"), |
|
15060
a5d9fafd2b8c
[gaim-migrate @ 17777]
Richard Laager <rlaager@pidgin.im>
parents:
14861
diff
changeset
|
452 | log->name, log_get_date(log)); |
| 10663 | 453 | else |
|
13105
8f9c66e4af87
[gaim-migrate @ 15466]
Richard Laager <rlaager@pidgin.im>
parents:
13091
diff
changeset
|
454 | title = g_strdup_printf(_("<span size='larger' weight='bold'>Conversation with %s on %s</span>"), |
|
15060
a5d9fafd2b8c
[gaim-migrate @ 17777]
Richard Laager <rlaager@pidgin.im>
parents:
14861
diff
changeset
|
455 | log->name, log_get_date(log)); |
| 10663 | 456 | |
| 457 | gtk_label_set_markup(GTK_LABEL(viewer->label), title); | |
| 458 | g_free(title); | |
| 459 | } | |
| 460 | ||
| 15884 | 461 | read = purple_log_read(log, &flags); |
| 7432 | 462 | viewer->flags = flags; |
| 10663 | 463 | |
| 7432 | 464 | gtk_imhtml_clear(GTK_IMHTML(viewer->imhtml)); |
|
10645
f00e65bebc8b
[gaim-migrate @ 12157]
Richard Laager <rlaager@pidgin.im>
parents:
10636
diff
changeset
|
465 | gtk_imhtml_set_protocol_name(GTK_IMHTML(viewer->imhtml), |
| 15884 | 466 | purple_account_get_protocol_name(log->account)); |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
467 | |
| 15884 | 468 | purple_signal_emit(pidgin_log_get_handle(), "log-displaying", viewer, log); |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
469 | |
|
10574
5abb2931b6ff
[gaim-migrate @ 11966]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10181
diff
changeset
|
470 | gtk_imhtml_append_text(GTK_IMHTML(viewer->imhtml), read, |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
471 | GTK_IMHTML_NO_COMMENTS | GTK_IMHTML_NO_TITLE | GTK_IMHTML_NO_SCROLL | |
| 15884 | 472 | ((flags & PURPLE_LOG_READ_NO_NEWLINE) ? GTK_IMHTML_NO_NEWLINE : 0)); |
|
12232
857f087ec86b
[gaim-migrate @ 14534]
Richard Laager <rlaager@pidgin.im>
parents:
11869
diff
changeset
|
473 | g_free(read); |
| 7535 | 474 | |
| 10663 | 475 | if (viewer->search != NULL) { |
|
29045
bbafcef9ffbb
*** Plucked rev b0c392df480480c0a511e96fc7b2eb7f827e6efb (bcc0147bab874ca52c55ad4900545e17528bf8fd):
Daniel Atallah <datallah@pidgin.im>
parents:
25889
diff
changeset
|
476 | guint source; |
|
10574
5abb2931b6ff
[gaim-migrate @ 11966]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10181
diff
changeset
|
477 | gtk_imhtml_search_clear(GTK_IMHTML(viewer->imhtml)); |
|
29045
bbafcef9ffbb
*** Plucked rev b0c392df480480c0a511e96fc7b2eb7f827e6efb (bcc0147bab874ca52c55ad4900545e17528bf8fd):
Daniel Atallah <datallah@pidgin.im>
parents:
25889
diff
changeset
|
478 | source = g_idle_add(search_find_cb, viewer); |
|
bbafcef9ffbb
*** Plucked rev b0c392df480480c0a511e96fc7b2eb7f827e6efb (bcc0147bab874ca52c55ad4900545e17528bf8fd):
Daniel Atallah <datallah@pidgin.im>
parents:
25889
diff
changeset
|
479 | g_object_set_data_full(G_OBJECT(viewer->entry), "search-find-cb", |
|
bbafcef9ffbb
*** Plucked rev b0c392df480480c0a511e96fc7b2eb7f827e6efb (bcc0147bab874ca52c55ad4900545e17528bf8fd):
Daniel Atallah <datallah@pidgin.im>
parents:
25889
diff
changeset
|
480 | GINT_TO_POINTER(source), (GDestroyNotify)g_source_remove); |
|
10574
5abb2931b6ff
[gaim-migrate @ 11966]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
10181
diff
changeset
|
481 | } |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
482 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
483 | pidgin_clear_cursor(viewer->window); |
| 7432 | 484 | } |
| 485 | ||
| 486 | /* I want to make this smarter, but haven't come up with a cool algorithm to do so, yet. | |
| 487 | * I want the tree to be divided into groups like "Today," "Yesterday," "Last week," | |
| 488 | * "August," "2002," etc. based on how many conversation took place in each subdivision. | |
| 489 | * | |
| 490 | * For now, I'll just make it a flat list. | |
| 491 | */ | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
492 | static void populate_log_tree(PidginLogViewer *lv) |
| 11585 | 493 | /* Logs are made from trees in real life. |
| 7432 | 494 | This is a tree made from logs */ |
| 495 | { | |
|
13105
8f9c66e4af87
[gaim-migrate @ 15466]
Richard Laager <rlaager@pidgin.im>
parents:
13091
diff
changeset
|
496 | const char *month; |
| 10663 | 497 | char prev_top_month[30] = ""; |
| 9435 | 498 | GtkTreeIter toplevel, child; |
| 7432 | 499 | GList *logs = lv->logs; |
| 10663 | 500 | |
| 501 | while (logs != NULL) { | |
| 15884 | 502 | PurpleLog *log = logs->data; |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
503 | |
| 15884 | 504 | month = purple_utf8_strftime(_("%B %Y"), |
|
13120
c25222322810
[gaim-migrate @ 15481]
Richard Laager <rlaager@pidgin.im>
parents:
13105
diff
changeset
|
505 | log->tm ? log->tm : localtime(&log->time)); |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
506 | |
|
13105
8f9c66e4af87
[gaim-migrate @ 15466]
Richard Laager <rlaager@pidgin.im>
parents:
13091
diff
changeset
|
507 | if (strcmp(month, prev_top_month) != 0) |
|
8f9c66e4af87
[gaim-migrate @ 15466]
Richard Laager <rlaager@pidgin.im>
parents:
13091
diff
changeset
|
508 | { |
| 9435 | 509 | /* top level */ |
| 510 | gtk_tree_store_append(lv->treestore, &toplevel, NULL); | |
| 511 | gtk_tree_store_set(lv->treestore, &toplevel, 0, month, 1, NULL, -1); | |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
512 | |
|
33728
be5378bae40e
CID 731947 - Deal with the unlikely scenario that a locale would have a month+year value longer than 29 bytes.
Daniel Atallah <datallah@pidgin.im>
parents:
31321
diff
changeset
|
513 | g_strlcpy(prev_top_month, month, sizeof(prev_top_month)); |
|
10680
e4a00ce2fc35
[gaim-migrate @ 12226]
Richard Laager <rlaager@pidgin.im>
parents:
10669
diff
changeset
|
514 | } |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
515 | |
|
10680
e4a00ce2fc35
[gaim-migrate @ 12226]
Richard Laager <rlaager@pidgin.im>
parents:
10669
diff
changeset
|
516 | /* sub */ |
|
e4a00ce2fc35
[gaim-migrate @ 12226]
Richard Laager <rlaager@pidgin.im>
parents:
10669
diff
changeset
|
517 | gtk_tree_store_append(lv->treestore, &child, &toplevel); |
|
13105
8f9c66e4af87
[gaim-migrate @ 15466]
Richard Laager <rlaager@pidgin.im>
parents:
13091
diff
changeset
|
518 | gtk_tree_store_set(lv->treestore, &child, |
|
15060
a5d9fafd2b8c
[gaim-migrate @ 17777]
Richard Laager <rlaager@pidgin.im>
parents:
14861
diff
changeset
|
519 | 0, log_get_date(log), |
|
13105
8f9c66e4af87
[gaim-migrate @ 15466]
Richard Laager <rlaager@pidgin.im>
parents:
13091
diff
changeset
|
520 | 1, log, |
|
8f9c66e4af87
[gaim-migrate @ 15466]
Richard Laager <rlaager@pidgin.im>
parents:
13091
diff
changeset
|
521 | -1); |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
522 | |
| 7432 | 523 | logs = logs->next; |
| 524 | } | |
| 525 | } | |
| 526 | ||
|
21214
db28e29a4990
Reverted changes from ef7ac46f90a801547f7dfc4295927a956f90e869 to
Richard Laager <rlaager@pidgin.im>
parents:
21172
diff
changeset
|
527 | static PidginLogViewer *display_log_viewer(struct log_viewer_hash_t *ht, GList *logs, |
|
15639
4d29fa62453d
Use person icon for Person log viewer
Sean Egan <seanegan@pidgin.im>
parents:
15613
diff
changeset
|
528 | const char *title, GtkWidget *icon, int log_size) |
| 10663 | 529 | { |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
530 | PidginLogViewer *lv; |
| 10663 | 531 | GtkWidget *title_box; |
| 532 | char *text; | |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
533 | GtkWidget *pane; |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
534 | GtkCellRenderer *rend; |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
535 | GtkTreeViewColumn *col; |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
536 | GtkTreeSelection *sel; |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
537 | GtkWidget *vbox; |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
538 | GtkWidget *frame; |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
539 | GtkWidget *hbox; |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
540 | GtkWidget *find_button; |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
541 | GtkWidget *size_label; |
| 7432 | 542 | |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
543 | if (logs == NULL) |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
544 | { |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
545 | /* No logs were found. */ |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
546 | const char *log_preferences = NULL; |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
547 | |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
548 | if (ht == NULL) { |
|
16478
19107605c565
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@pidgin.im>
parents:
16293
diff
changeset
|
549 | if (!purple_prefs_get_bool("/purple/logging/log_system")) |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
550 | log_preferences = _("System events will only be logged if the \"Log all status changes to system log\" preference is enabled."); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
551 | } else { |
| 15884 | 552 | if (ht->type == PURPLE_LOG_IM) { |
|
16478
19107605c565
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@pidgin.im>
parents:
16293
diff
changeset
|
553 | if (!purple_prefs_get_bool("/purple/logging/log_ims")) |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
554 | log_preferences = _("Instant messages will only be logged if the \"Log all instant messages\" preference is enabled."); |
| 15884 | 555 | } else if (ht->type == PURPLE_LOG_CHAT) { |
|
16478
19107605c565
Works for me! Renames prefs: /core to /purple, /gaim/gtk to /pidgin, /gaim/gnt to /finch
Sean Egan <seanegan@pidgin.im>
parents:
16293
diff
changeset
|
556 | if (!purple_prefs_get_bool("/purple/logging/log_chats")) |
|
11869
e77f2f29b09d
[gaim-migrate @ 14160]
Stu Tomlinson <nosnilmot@pidgin.im>
parents:
11780
diff
changeset
|
557 | log_preferences = _("Chats will only be logged if the \"Log all chats\" preference is enabled."); |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
558 | } |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
559 | g_free(ht->buddyname); |
|
22237
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
560 | g_free(ht); |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
561 | } |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
562 | |
|
22237
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
563 | if(icon != NULL) |
|
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
564 | gtk_widget_destroy(icon); |
|
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
565 | |
| 15884 | 566 | purple_notify_info(NULL, title, _("No logs were found"), log_preferences); |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
567 | return NULL; |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
568 | } |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
569 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
570 | lv = g_new0(PidginLogViewer, 1); |
|
13569
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
571 | lv->logs = logs; |
|
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
572 | |
| 10663 | 573 | if (ht != NULL) |
| 574 | g_hash_table_insert(log_viewers, ht, lv); | |
| 7432 | 575 | |
| 576 | /* Window ***********/ | |
|
21214
db28e29a4990
Reverted changes from ef7ac46f90a801547f7dfc4295927a956f90e869 to
Richard Laager <rlaager@pidgin.im>
parents:
21172
diff
changeset
|
577 | lv->window = gtk_dialog_new_with_buttons(title, NULL, 0, |
| 7432 | 578 | GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL); |
|
15298
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
579 | #ifdef _WIN32 |
|
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
580 | /* Steal the "HELP" response and use it to trigger browsing to the logs folder */ |
|
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
581 | gtk_dialog_add_button(GTK_DIALOG(lv->window), _("_Browse logs folder"), GTK_RESPONSE_HELP); |
|
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
582 | #endif |
| 15882 | 583 | gtk_container_set_border_width (GTK_CONTAINER(lv->window), PIDGIN_HIG_BOX_SPACE); |
| 7432 | 584 | gtk_dialog_set_has_separator(GTK_DIALOG(lv->window), FALSE); |
| 585 | gtk_box_set_spacing(GTK_BOX(GTK_DIALOG(lv->window)->vbox), 0); | |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
586 | g_signal_connect(G_OBJECT(lv->window), "response", |
|
7454
c99a2070471e
[gaim-migrate @ 8067]
Mark Doliner <markdoliner@pidgin.im>
parents:
7440
diff
changeset
|
587 | G_CALLBACK(destroy_cb), ht); |
|
11004
2323998d6cb9
[gaim-migrate @ 12859]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
10884
diff
changeset
|
588 | gtk_window_set_role(GTK_WINDOW(lv->window), "log_viewer"); |
|
7454
c99a2070471e
[gaim-migrate @ 8067]
Mark Doliner <markdoliner@pidgin.im>
parents:
7440
diff
changeset
|
589 | |
| 10663 | 590 | /* Icon *************/ |
|
15639
4d29fa62453d
Use person icon for Person log viewer
Sean Egan <seanegan@pidgin.im>
parents:
15613
diff
changeset
|
591 | if (icon != NULL) { |
| 15882 | 592 | title_box = gtk_hbox_new(FALSE, PIDGIN_HIG_BOX_SPACE); |
| 593 | gtk_container_set_border_width(GTK_CONTAINER(title_box), PIDGIN_HIG_BOX_SPACE); | |
| 10663 | 594 | gtk_box_pack_start(GTK_BOX(GTK_DIALOG(lv->window)->vbox), title_box, FALSE, FALSE, 0); |
| 595 | ||
| 596 | gtk_box_pack_start(GTK_BOX(title_box), icon, FALSE, FALSE, 0); | |
| 597 | } else | |
| 598 | title_box = GTK_DIALOG(lv->window)->vbox; | |
| 7432 | 599 | |
| 600 | /* Label ************/ | |
| 10663 | 601 | lv->label = gtk_label_new(NULL); |
| 602 | ||
| 603 | text = g_strdup_printf("<span size='larger' weight='bold'>%s</span>", title); | |
| 9624 | 604 | |
| 10663 | 605 | gtk_label_set_markup(GTK_LABEL(lv->label), text); |
| 606 | gtk_misc_set_alignment(GTK_MISC(lv->label), 0, 0); | |
| 607 | gtk_box_pack_start(GTK_BOX(title_box), lv->label, FALSE, FALSE, 0); | |
| 7432 | 608 | g_free(text); |
| 609 | ||
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
610 | /* Pane *************/ |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
611 | pane = gtk_hpaned_new(); |
| 15882 | 612 | gtk_container_set_border_width(GTK_CONTAINER(pane), PIDGIN_HIG_BOX_SPACE); |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
613 | gtk_box_pack_start(GTK_BOX(GTK_DIALOG(lv->window)->vbox), pane, TRUE, TRUE, 0); |
| 7432 | 614 | |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
615 | /* List *************/ |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
616 | lv->treestore = gtk_tree_store_new (2, G_TYPE_STRING, G_TYPE_POINTER); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
617 | lv->treeview = gtk_tree_view_new_with_model (GTK_TREE_MODEL (lv->treestore)); |
|
22214
e8a9916cb99e
It turns out the tree-models need to be unref'ed.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21352
diff
changeset
|
618 | g_object_unref(G_OBJECT(lv->treestore)); |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
619 | rend = gtk_cell_renderer_text_new(); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
620 | col = gtk_tree_view_column_new_with_attributes ("time", rend, "markup", 0, NULL); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
621 | gtk_tree_view_append_column (GTK_TREE_VIEW(lv->treeview), col); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
622 | gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (lv->treeview), FALSE); |
|
31321
1fef3832cfa2
Add pidgin_make_scrollable and use it. Cleans up a bunch of duplicate code. Net code loss of 180 lines. Fixes #13073.
Gabriel Schulhof <nix@go-nix.ca>
parents:
29685
diff
changeset
|
623 | gtk_paned_add1(GTK_PANED(pane), |
|
1fef3832cfa2
Add pidgin_make_scrollable and use it. Cleans up a bunch of duplicate code. Net code loss of 180 lines. Fixes #13073.
Gabriel Schulhof <nix@go-nix.ca>
parents:
29685
diff
changeset
|
624 | pidgin_make_scrollable(lv->treeview, GTK_POLICY_NEVER, GTK_POLICY_ALWAYS, GTK_SHADOW_IN, -1, -1)); |
|
11402
1be90c47f022
[gaim-migrate @ 13637]
Peter McCurdy <cpirate@users.sourceforge.net>
parents:
11243
diff
changeset
|
625 | |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
626 | populate_log_tree(lv); |
|
11402
1be90c47f022
[gaim-migrate @ 13637]
Peter McCurdy <cpirate@users.sourceforge.net>
parents:
11243
diff
changeset
|
627 | |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
628 | sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (lv->treeview)); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
629 | g_signal_connect (G_OBJECT (sel), "changed", |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
630 | G_CALLBACK (log_select_cb), |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
631 | lv); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
632 | g_signal_connect (G_OBJECT(lv->treeview), "row-activated", |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
633 | G_CALLBACK(log_row_activated_cb), |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
634 | lv); |
| 15568 | 635 | pidgin_set_accessible_label(lv->treeview, lv->label); |
| 11585 | 636 | |
|
15586
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
637 | g_signal_connect(lv->treeview, "button-press-event", G_CALLBACK(log_button_press_cb), lv); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
638 | g_signal_connect(lv->treeview, "popup-menu", G_CALLBACK(log_popup_menu_cb), lv); |
|
b03db9cb6cac
Implement the UI for deleting logs. This allows users to right-click on
Richard Laager <rlaager@pidgin.im>
parents:
15578
diff
changeset
|
639 | |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
640 | /* Log size ************/ |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
641 | if(log_size) { |
| 15884 | 642 | char *sz_txt = purple_str_size_to_units(log_size); |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
643 | text = g_strdup_printf("<span weight='bold'>%s</span> %s", _("Total log size:"), sz_txt); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
644 | size_label = gtk_label_new(NULL); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
645 | gtk_label_set_markup(GTK_LABEL(size_label), text); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
646 | /* gtk_paned_add1(GTK_PANED(pane), size_label); */ |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
647 | gtk_misc_set_alignment(GTK_MISC(size_label), 0, 0); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
648 | gtk_box_pack_end(GTK_BOX(GTK_DIALOG(lv->window)->vbox), size_label, FALSE, FALSE, 0); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
649 | g_free(sz_txt); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
650 | g_free(text); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
651 | } |
|
11402
1be90c47f022
[gaim-migrate @ 13637]
Peter McCurdy <cpirate@users.sourceforge.net>
parents:
11243
diff
changeset
|
652 | |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
653 | /* A fancy little box ************/ |
| 15882 | 654 | vbox = gtk_vbox_new(FALSE, PIDGIN_HIG_BOX_SPACE); |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
655 | gtk_paned_add2(GTK_PANED(pane), vbox); |
|
11402
1be90c47f022
[gaim-migrate @ 13637]
Peter McCurdy <cpirate@users.sourceforge.net>
parents:
11243
diff
changeset
|
656 | |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
657 | /* Viewer ************/ |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
658 | frame = pidgin_create_imhtml(FALSE, &lv->imhtml, NULL, NULL); |
|
16259
73b7c796c8d3
I don't like the pidginfoo_bar widget names that resulted from the sed.
Richard Laager <rlaager@pidgin.im>
parents:
16254
diff
changeset
|
659 | gtk_widget_set_name(lv->imhtml, "pidgin_log_imhtml"); |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
660 | gtk_widget_set_size_request(lv->imhtml, 320, 200); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
661 | gtk_box_pack_start(GTK_BOX(vbox), frame, TRUE, TRUE, 0); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
662 | gtk_widget_show(frame); |
|
10181
2425c3773266
[gaim-migrate @ 11296]
Mark Doliner <markdoliner@pidgin.im>
parents:
10175
diff
changeset
|
663 | |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
664 | /* Search box **********/ |
| 15882 | 665 | hbox = gtk_hbox_new(FALSE, PIDGIN_HIG_BOX_SPACE); |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
666 | gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
667 | lv->entry = gtk_entry_new(); |
|
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
668 | gtk_box_pack_start(GTK_BOX(hbox), lv->entry, TRUE, TRUE, 0); |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
669 | find_button = gtk_button_new_from_stock(GTK_STOCK_FIND); |
|
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
670 | gtk_box_pack_start(GTK_BOX(hbox), find_button, FALSE, FALSE, 0); |
|
11769
66e922bf0ebd
[gaim-migrate @ 14060]
Mark Doliner <markdoliner@pidgin.im>
parents:
11703
diff
changeset
|
671 | g_signal_connect(GTK_ENTRY(lv->entry), "activate", G_CALLBACK(search_cb), lv); |
|
14400
953baf2eba1a
[gaim-migrate @ 17035]
Richard Laager <rlaager@pidgin.im>
parents:
14253
diff
changeset
|
672 | g_signal_connect(GTK_BUTTON(find_button), "clicked", G_CALLBACK(search_cb), lv); |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
673 | |
|
13569
4f0396bc59fc
[gaim-migrate @ 15947]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
13435
diff
changeset
|
674 | select_first_log(lv); |
| 7432 | 675 | |
| 676 | gtk_widget_show_all(lv->window); | |
| 10663 | 677 | |
| 678 | return lv; | |
| 679 | } | |
| 680 | ||
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
681 | void pidgin_log_show(PurpleLogType type, const char *buddyname, PurpleAccount *account) { |
|
15298
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
682 | struct log_viewer_hash_t *ht; |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
683 | PidginLogViewer *lv = NULL; |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
684 | const char *name = buddyname; |
| 10663 | 685 | char *title; |
|
20229
0c823e1a389d
applied changes from 1e697229b1c9a564fa1e509cc9a4a83da6e664df
Luke Schierer <lschiere@pidgin.im>
parents:
20147
diff
changeset
|
686 | GdkPixbuf *prpl_icon; |
| 10663 | 687 | |
| 688 | g_return_if_fail(account != NULL); | |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
689 | g_return_if_fail(buddyname != NULL); |
| 10663 | 690 | |
|
15298
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
691 | ht = g_new0(struct log_viewer_hash_t, 1); |
|
e192226f7804
[gaim-migrate @ 18026]
Daniel Atallah <datallah@pidgin.im>
parents:
15060
diff
changeset
|
692 | |
| 10663 | 693 | ht->type = type; |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
694 | ht->buddyname = g_strdup(buddyname); |
| 10663 | 695 | ht->account = account; |
| 696 | ||
| 697 | if (log_viewers == NULL) { | |
| 698 | log_viewers = g_hash_table_new(log_viewer_hash, log_viewer_equal); | |
| 699 | } else if ((lv = g_hash_table_lookup(log_viewers, ht))) { | |
| 700 | gtk_window_present(GTK_WINDOW(lv->window)); | |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
701 | g_free(ht->buddyname); |
| 10663 | 702 | g_free(ht); |
| 703 | return; | |
| 704 | } | |
| 705 | ||
| 15884 | 706 | if (type == PURPLE_LOG_CHAT) { |
| 707 | PurpleChat *chat; | |
| 10663 | 708 | |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
709 | chat = purple_blist_find_chat(account, buddyname); |
| 10663 | 710 | if (chat != NULL) |
| 15884 | 711 | name = purple_chat_get_name(chat); |
| 10663 | 712 | |
| 713 | title = g_strdup_printf(_("Conversations in %s"), name); | |
| 714 | } else { | |
| 15884 | 715 | PurpleBuddy *buddy; |
| 10663 | 716 | |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
717 | buddy = purple_find_buddy(account, buddyname); |
| 10663 | 718 | if (buddy != NULL) |
| 15884 | 719 | name = purple_buddy_get_contact_alias(buddy); |
| 10663 | 720 | |
| 721 | title = g_strdup_printf(_("Conversations with %s"), name); | |
| 722 | } | |
| 723 | ||
|
20229
0c823e1a389d
applied changes from 1e697229b1c9a564fa1e509cc9a4a83da6e664df
Luke Schierer <lschiere@pidgin.im>
parents:
20147
diff
changeset
|
724 | prpl_icon = pidgin_create_prpl_icon(account, PIDGIN_PRPL_ICON_MEDIUM); |
|
0c823e1a389d
applied changes from 1e697229b1c9a564fa1e509cc9a4a83da6e664df
Luke Schierer <lschiere@pidgin.im>
parents:
20147
diff
changeset
|
725 | |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
726 | display_log_viewer(ht, purple_log_get_logs(type, buddyname, account), |
|
20229
0c823e1a389d
applied changes from 1e697229b1c9a564fa1e509cc9a4a83da6e664df
Luke Schierer <lschiere@pidgin.im>
parents:
20147
diff
changeset
|
727 | title, gtk_image_new_from_pixbuf(prpl_icon), |
|
25889
26d9ca30335c
Change "screen name" to "username" or "buddy name" in a whole bunch of
Mark Doliner <markdoliner@pidgin.im>
parents:
24964
diff
changeset
|
728 | purple_log_get_total_size(type, buddyname, account)); |
|
20229
0c823e1a389d
applied changes from 1e697229b1c9a564fa1e509cc9a4a83da6e664df
Luke Schierer <lschiere@pidgin.im>
parents:
20147
diff
changeset
|
729 | |
|
0c823e1a389d
applied changes from 1e697229b1c9a564fa1e509cc9a4a83da6e664df
Luke Schierer <lschiere@pidgin.im>
parents:
20147
diff
changeset
|
730 | if (prpl_icon) |
|
0c823e1a389d
applied changes from 1e697229b1c9a564fa1e509cc9a4a83da6e664df
Luke Schierer <lschiere@pidgin.im>
parents:
20147
diff
changeset
|
731 | g_object_unref(prpl_icon); |
| 10663 | 732 | g_free(title); |
| 733 | } | |
| 734 | ||
| 15884 | 735 | void pidgin_log_show_contact(PurpleContact *contact) { |
|
22237
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
736 | struct log_viewer_hash_t *ht; |
| 15884 | 737 | PurpleBlistNode *child; |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
738 | PidginLogViewer *lv = NULL; |
| 10663 | 739 | GList *logs = NULL; |
| 740 | GdkPixbuf *pixbuf; | |
|
22237
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
741 | GtkWidget *image; |
| 10663 | 742 | const char *name = NULL; |
| 743 | char *title; | |
| 11585 | 744 | int total_log_size = 0; |
| 10663 | 745 | |
| 746 | g_return_if_fail(contact != NULL); | |
| 747 | ||
|
22237
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
748 | ht = g_new0(struct log_viewer_hash_t, 1); |
| 15884 | 749 | ht->type = PURPLE_LOG_IM; |
| 10663 | 750 | ht->contact = contact; |
| 751 | ||
| 752 | if (log_viewers == NULL) { | |
| 753 | log_viewers = g_hash_table_new(log_viewer_hash, log_viewer_equal); | |
| 754 | } else if ((lv = g_hash_table_lookup(log_viewers, ht))) { | |
| 755 | gtk_window_present(GTK_WINDOW(lv->window)); | |
| 756 | g_free(ht); | |
| 757 | return; | |
| 758 | } | |
| 759 | ||
|
24959
346d2e79e719
Fix one struct hiding issue.
Richard Laager <rlaager@pidgin.im>
parents:
22455
diff
changeset
|
760 | for (child = purple_blist_node_get_first_child((PurpleBlistNode*)contact) ; |
|
346d2e79e719
Fix one struct hiding issue.
Richard Laager <rlaager@pidgin.im>
parents:
22455
diff
changeset
|
761 | child != NULL ; |
|
346d2e79e719
Fix one struct hiding issue.
Richard Laager <rlaager@pidgin.im>
parents:
22455
diff
changeset
|
762 | child = purple_blist_node_get_sibling_next(child)) { |
|
24964
ce4a5049a69f
Another small struct hiding change.
Richard Laager <rlaager@pidgin.im>
parents:
24959
diff
changeset
|
763 | const char *buddy_name; |
|
ce4a5049a69f
Another small struct hiding change.
Richard Laager <rlaager@pidgin.im>
parents:
24959
diff
changeset
|
764 | PurpleAccount *account; |
|
ce4a5049a69f
Another small struct hiding change.
Richard Laager <rlaager@pidgin.im>
parents:
24959
diff
changeset
|
765 | |
| 15884 | 766 | if (!PURPLE_BLIST_NODE_IS_BUDDY(child)) |
| 10663 | 767 | continue; |
| 768 | ||
|
24964
ce4a5049a69f
Another small struct hiding change.
Richard Laager <rlaager@pidgin.im>
parents:
24959
diff
changeset
|
769 | buddy_name = purple_buddy_get_name((PurpleBuddy *)child); |
|
ce4a5049a69f
Another small struct hiding change.
Richard Laager <rlaager@pidgin.im>
parents:
24959
diff
changeset
|
770 | account = purple_buddy_get_account((PurpleBuddy *)child); |
|
ce4a5049a69f
Another small struct hiding change.
Richard Laager <rlaager@pidgin.im>
parents:
24959
diff
changeset
|
771 | logs = g_list_concat(purple_log_get_logs(PURPLE_LOG_IM, buddy_name, account), logs); |
|
ce4a5049a69f
Another small struct hiding change.
Richard Laager <rlaager@pidgin.im>
parents:
24959
diff
changeset
|
772 | total_log_size += purple_log_get_total_size(PURPLE_LOG_IM, buddy_name, account); |
| 10663 | 773 | } |
| 15884 | 774 | logs = g_list_sort(logs, purple_log_compare); |
| 10663 | 775 | |
|
22237
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
776 | image = gtk_image_new(); |
|
16280
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
777 | pixbuf = gtk_widget_render_icon(image, PIDGIN_STOCK_STATUS_PERSON, |
|
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
778 | gtk_icon_size_from_name(PIDGIN_ICON_SIZE_TANGO_SMALL), "GtkWindow"); |
|
22237
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
779 | if (pixbuf) { |
|
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
780 | gtk_image_set_from_pixbuf(GTK_IMAGE(image), pixbuf); |
|
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
781 | g_object_unref(pixbuf); |
|
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
782 | } else { |
|
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
783 | gtk_widget_destroy(image); |
|
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
784 | image = NULL; |
|
8865b5d78095
Some more little leak fixes.
Daniel Atallah <datallah@pidgin.im>
parents:
22214
diff
changeset
|
785 | } |
|
16280
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
786 | |
| 10663 | 787 | if (contact->alias != NULL) |
| 788 | name = contact->alias; | |
| 789 | else if (contact->priority != NULL) | |
| 15884 | 790 | name = purple_buddy_get_contact_alias(contact->priority); |
| 10663 | 791 | |
|
16280
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
792 | /* This will happen if the contact doesn't have an alias, |
|
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
793 | * and none of the contact's buddies are online. |
|
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
794 | * There is probably a better way to deal with this. */ |
|
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
795 | if (name == NULL) { |
|
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
796 | if (contact->node.child != NULL && PURPLE_BLIST_NODE_IS_BUDDY(contact->node.child)) |
|
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
797 | name = purple_buddy_get_contact_alias((PurpleBuddy *) contact->node.child); |
|
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
798 | if (name == NULL) |
|
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
799 | name = ""; |
|
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
800 | } |
|
f1174892ed45
Fix a printf(%s, NULL) when opening a log for an buddy whose contact has no online buddies and no alias.
Daniel Atallah <datallah@pidgin.im>
parents:
16259
diff
changeset
|
801 | |
| 10663 | 802 | title = g_strdup_printf(_("Conversations with %s"), name); |
|
21214
db28e29a4990
Reverted changes from ef7ac46f90a801547f7dfc4295927a956f90e869 to
Richard Laager <rlaager@pidgin.im>
parents:
21172
diff
changeset
|
803 | display_log_viewer(ht, logs, title, image, total_log_size); |
| 10663 | 804 | g_free(title); |
| 7432 | 805 | } |
| 8573 | 806 | |
|
21214
db28e29a4990
Reverted changes from ef7ac46f90a801547f7dfc4295927a956f90e869 to
Richard Laager <rlaager@pidgin.im>
parents:
21172
diff
changeset
|
807 | void pidgin_syslog_show() |
| 8573 | 808 | { |
| 809 | GList *accounts = NULL; | |
| 10663 | 810 | GList *logs = NULL; |
| 8573 | 811 | |
|
10181
2425c3773266
[gaim-migrate @ 11296]
Mark Doliner <markdoliner@pidgin.im>
parents:
10175
diff
changeset
|
812 | if (syslog_viewer != NULL) { |
| 8573 | 813 | gtk_window_present(GTK_WINDOW(syslog_viewer->window)); |
| 814 | return; | |
| 815 | } | |
| 816 | ||
| 15884 | 817 | for(accounts = purple_accounts_get_all(); accounts != NULL; accounts = accounts->next) { |
| 8573 | 818 | |
| 15884 | 819 | PurpleAccount *account = (PurpleAccount *)accounts->data; |
| 820 | if(purple_find_prpl(purple_account_get_protocol_id(account)) == NULL) | |
| 8573 | 821 | continue; |
| 822 | ||
| 15884 | 823 | logs = g_list_concat(purple_log_get_system_logs(account), logs); |
| 8573 | 824 | } |
| 15884 | 825 | logs = g_list_sort(logs, purple_log_compare); |
|
10175
2bf5ed145e8a
[gaim-migrate @ 11290]
Mark Doliner <markdoliner@pidgin.im>
parents:
9917
diff
changeset
|
826 | |
|
21214
db28e29a4990
Reverted changes from ef7ac46f90a801547f7dfc4295927a956f90e869 to
Richard Laager <rlaager@pidgin.im>
parents:
21172
diff
changeset
|
827 | syslog_viewer = display_log_viewer(NULL, logs, _("System Log"), NULL, 0); |
| 8573 | 828 | } |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
829 | |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
830 | /**************************************************************************** |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
831 | * GTK+ LOG SUBSYSTEM ******************************************************* |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
832 | ****************************************************************************/ |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
833 | |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
834 | void * |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
835 | pidgin_log_get_handle(void) |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
836 | { |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
837 | static int handle; |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
838 | |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
839 | return &handle; |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
840 | } |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
841 | |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
842 | void pidgin_log_init(void) |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
843 | { |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
844 | void *handle = pidgin_log_get_handle(); |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
845 | |
| 15884 | 846 | purple_signal_register(handle, "log-displaying", |
| 847 | purple_marshal_VOID__POINTER_POINTER, | |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
848 | NULL, 2, |
| 15884 | 849 | purple_value_new(PURPLE_TYPE_BOXED, |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
850 | "PidginLogViewer *"), |
| 15884 | 851 | purple_value_new(PURPLE_TYPE_SUBTYPE, |
| 852 | PURPLE_SUBTYPE_LOG)); | |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
853 | } |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
854 | |
|
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
855 | void |
|
15562
8c8249fe5e3c
gaim_gtk to pidgin. I hope
Sean Egan <seanegan@pidgin.im>
parents:
15497
diff
changeset
|
856 | pidgin_log_uninit(void) |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
857 | { |
| 15884 | 858 | purple_signals_unregister_by_instance(pidgin_log_get_handle()); |
|
12838
5c6f36abeee8
[gaim-migrate @ 15186]
Richard Laager <rlaager@pidgin.im>
parents:
12600
diff
changeset
|
859 | } |