Fri, 12 Jul 2024 19:56:17 -0500
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
This was the last thing using purple_conversation_send which we want to remove.
Testing Done:
Send messages in a channel and a dm without issue and ran the turtles.
Reviewed at https://reviews.imfreedom.org/r/3287/
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
1 | /* |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
2 | * Pidgin - Internet Messenger |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
3 | * Copyright (C) Pidgin Developers <devel@pidgin.im> |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
4 | * |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
5 | * Pidgin is the legal property of its developers, whose names are too numerous |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
6 | * to list here. Please refer to the COPYRIGHT file distributed with this |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
7 | * source distribution. |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
8 | * |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
9 | * This program is free software; you can redistribute it and/or modify |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
10 | * it under the terms of the GNU General Public License as published by |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
11 | * the Free Software Foundation; either version 2 of the License, or |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
12 | * (at your option) any later version. |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
13 | * |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
14 | * This program is distributed in the hope that it will be useful, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
17 | * GNU General Public License for more details. |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
18 | * |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
19 | * You should have received a copy of the GNU General Public License |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
20 | * along with this program; if not, see <https://www.gnu.org/licenses/>. |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
21 | */ |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
22 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
23 | #include <glib/gi18n-lib.h> |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
24 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
25 | #include <purple.h> |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
26 | |
|
42447
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
27 | #include "pidginautoadjustment.h" |
|
42346
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
28 | #include "pidgincolor.h" |
|
42527
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
29 | #include "pidgincontactinfomenu.h" |
|
42346
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
30 | #include "pidginconversation.h" |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
31 | #include "pidgininfopane.h" |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
32 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
33 | #define PIDGIN_CONVERSATION_DATA ("pidgin-conversation") |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
34 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
35 | enum { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
36 | PROP_0, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
37 | PROP_CONVERSATION, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
38 | N_PROPERTIES, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
39 | }; |
|
42584
687260353985
Make signal and property enums and initializers consistent
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42575
diff
changeset
|
40 | static GParamSpec *properties[N_PROPERTIES] = {NULL, }; |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
41 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
42 | struct _PidginConversation { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
43 | GtkBox parent; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
44 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
45 | PurpleConversation *conversation; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
46 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
47 | GtkWidget *info_pane; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
48 | GtkWidget *history; |
|
42447
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
49 | GtkAdjustment *history_adjustment; |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
50 | |
|
42783
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
51 | GtkCustomSorter *memberlist_sorter; |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
52 | |
|
42447
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
53 | GtkWidget *input; |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
54 | }; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
55 | |
|
42575
580339aa47cc
Make sure all of the final types in pidgin are defined as such
Gary Kramlich <grim@reaperworld.com>
parents:
42531
diff
changeset
|
56 | G_DEFINE_FINAL_TYPE(PidginConversation, pidgin_conversation, GTK_TYPE_BOX) |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
57 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
58 | /****************************************************************************** |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
59 | * Helpers |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
60 | *****************************************************************************/ |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
61 | static void |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
62 | pidgin_conversation_set_conversation(PidginConversation *conversation, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
63 | PurpleConversation *purple_conversation) |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
64 | { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
65 | if(g_set_object(&conversation->conversation, purple_conversation)) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
66 | if(PURPLE_IS_CONVERSATION(purple_conversation)) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
67 | g_object_set_data(G_OBJECT(purple_conversation), |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
68 | PIDGIN_CONVERSATION_DATA, conversation); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
69 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
70 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
71 | g_object_notify_by_pspec(G_OBJECT(conversation), |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
72 | properties[PROP_CONVERSATION]); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
73 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
74 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
75 | |
|
42350
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
76 | /** |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
77 | * pidgin_conversation_set_tooltip_for_timestamp: (skip) |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
78 | * @tooltip: The tooltip to update. |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
79 | * @timestamp: The timestamp to set. |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
80 | * |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
81 | * Updates @tooltip to display @timestamp. This is meant to be called from |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
82 | * a GtkWidget::query-tooltip signal and its return value should be returned |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
83 | * from that handler. |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
84 | * |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
85 | * Returns: %TRUE if a tooltip was set, otherwise %FALSE. |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
86 | * |
|
42620
72178a341eb8
Remove minor versions from Since tags in Pidgin
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42584
diff
changeset
|
87 | * Since: 3.0 |
|
42350
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
88 | */ |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
89 | static gboolean |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
90 | pidgin_conversation_set_tooltip_for_timestamp(GtkTooltip *tooltip, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
91 | GDateTime *timestamp) |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
92 | { |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
93 | GDateTime *local = NULL; |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
94 | char *text = NULL; |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
95 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
96 | if(timestamp == NULL) { |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
97 | return FALSE; |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
98 | } |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
99 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
100 | local = g_date_time_to_local(timestamp); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
101 | text = g_date_time_format(local, "%c"); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
102 | g_clear_pointer(&local, g_date_time_unref); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
103 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
104 | gtk_tooltip_set_text(tooltip, text); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
105 | g_clear_pointer(&text, g_free); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
106 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
107 | return TRUE; |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
108 | } |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
109 | |
|
42784
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
110 | /* This is used to call g_markup_escape_text for the topic before displaying it |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
111 | * in its normal label and the tool tip for that label. |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
112 | */ |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
113 | static char * |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
114 | pidgin_conversation_escape_topic(G_GNUC_UNUSED GObject *self, |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
115 | const char *topic, |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
116 | G_GNUC_UNUSED gpointer data) |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
117 | { |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
118 | if(topic == NULL) { |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
119 | return g_strdup(""); |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
120 | } |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
121 | |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
122 | return g_markup_escape_text(topic, -1); |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
123 | } |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
124 | |
|
42812
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
125 | /** |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
126 | * pidgin_conversation_send_message: |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
127 | * @conversation: The instance. |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
128 | * |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
129 | * Creates a [class@Purple.Message] from the input widgets of @conversation and |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
130 | * sends it. |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
131 | * |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
132 | * Since: 3.0 |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
133 | */ |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
134 | static void |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
135 | pidgin_conversation_send_message(PidginConversation *conversation) { |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
136 | PurpleAccount *account = NULL; |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
137 | PurpleMessage *message = NULL; |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
138 | GtkTextBuffer *buffer = NULL; |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
139 | GtkTextIter start; |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
140 | GtkTextIter end; |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
141 | char *contents = NULL; |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
142 | |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
143 | account = purple_conversation_get_account(conversation->conversation); |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
144 | |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
145 | /* Get the contents from the buffer. */ |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
146 | buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(conversation->input)); |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
147 | gtk_text_buffer_get_start_iter(buffer, &start); |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
148 | gtk_text_buffer_get_end_iter(buffer, &end); |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
149 | |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
150 | contents = gtk_text_buffer_get_text(buffer, &start, &end, TRUE); |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
151 | |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
152 | /* Create the message. */ |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
153 | message = purple_message_new_outgoing(purple_account_get_username(account), |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
154 | contents, 0); |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
155 | |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
156 | /* Send the message and clean up. We don't worry about the callback as we |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
157 | * don't have anything to do in it right now. |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
158 | */ |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
159 | purple_conversation_send_message_async(conversation->conversation, message, |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
160 | NULL, NULL, NULL); |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
161 | |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
162 | g_clear_object(&message); |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
163 | g_clear_pointer(&contents, g_free); |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
164 | |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
165 | gtk_text_buffer_set_text(buffer, "", -1); |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
166 | } |
|
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
167 | |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
168 | /****************************************************************************** |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
169 | * Callbacks |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
170 | *****************************************************************************/ |
|
42447
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
171 | static gboolean |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
172 | pidgin_conversation_input_key_pressed_cb(G_GNUC_UNUSED GtkEventControllerKey *self, |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
173 | guint keyval, |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
174 | G_GNUC_UNUSED guint keycode, |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
175 | GdkModifierType state, |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
176 | gpointer data) |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
177 | { |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
178 | PidginConversation *conversation = data; |
|
42447
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
179 | gboolean handled = TRUE; |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
180 | |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
181 | if(keyval == GDK_KEY_Return || keyval == GDK_KEY_KP_Enter) { |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
182 | if(state == GDK_SHIFT_MASK || state == GDK_CONTROL_MASK) { |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
183 | return FALSE; |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
184 | } |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
185 | |
|
42812
4d48abf72b94
Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents:
42801
diff
changeset
|
186 | pidgin_conversation_send_message(conversation); |
|
42447
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
187 | } else if(keyval == GDK_KEY_Page_Up) { |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
188 | pidgin_auto_adjustment_decrement(PIDGIN_AUTO_ADJUSTMENT(conversation->history_adjustment)); |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
189 | } else if(keyval == GDK_KEY_Page_Down) { |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
190 | pidgin_auto_adjustment_increment(PIDGIN_AUTO_ADJUSTMENT(conversation->history_adjustment)); |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
191 | } else { |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
192 | handled = FALSE; |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
193 | } |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
194 | |
|
42447
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
195 | return handled; |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
196 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
197 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
198 | static void |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
199 | pidgin_conversation_detach(PidginConversation *conversation) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
200 | if(PURPLE_IS_CONVERSATION(conversation->conversation)) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
201 | gpointer us = NULL; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
202 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
203 | us = g_object_get_data(G_OBJECT(conversation->conversation), |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
204 | PIDGIN_CONVERSATION_DATA); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
205 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
206 | if(conversation == us) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
207 | g_object_set_data(G_OBJECT(conversation->conversation), |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
208 | PIDGIN_CONVERSATION_DATA, NULL); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
209 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
210 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
211 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
212 | |
|
42346
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
213 | static PangoAttrList * |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
214 | pidgin_conversation_get_author_attributes(G_GNUC_UNUSED GObject *self, |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
215 | PurpleMessage *message, |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
216 | G_GNUC_UNUSED gpointer data) |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
217 | { |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
218 | const char *author = NULL; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
219 | const char *custom_color = NULL; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
220 | GdkRGBA rgba; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
221 | PangoAttrList *attrs = NULL; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
222 | gboolean color_valid = FALSE; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
223 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
224 | if(!PURPLE_IS_MESSAGE(message)) { |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
225 | return NULL; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
226 | } |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
227 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
228 | author = purple_message_get_author_alias(message); |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
229 | if(purple_strempty(author)) { |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
230 | author = purple_message_get_author(message); |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
231 | } |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
232 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
233 | custom_color = purple_message_get_author_name_color(message); |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
234 | if(!purple_strempty(custom_color)) { |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
235 | color_valid = gdk_rgba_parse(&rgba, custom_color); |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
236 | } |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
237 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
238 | if(!color_valid) { |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
239 | pidgin_color_calculate_for_text(author, &rgba); |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
240 | color_valid = TRUE; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
241 | } |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
242 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
243 | attrs = pango_attr_list_new(); |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
244 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
245 | if(color_valid) { |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
246 | PangoAttribute *attr = NULL; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
247 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
248 | attr = pango_attr_foreground_new(0xFFFF * rgba.red, |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
249 | 0xFFFF * rgba.green, |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
250 | 0xFFFF * rgba.blue); |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
251 | pango_attr_list_insert(attrs, attr); |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
252 | } |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
253 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
254 | return attrs; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
255 | } |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
256 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
257 | static char * |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
258 | pidgin_converation_get_timestamp_string(G_GNUC_UNUSED GObject *self, |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
259 | PurpleMessage *message, |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
260 | G_GNUC_UNUSED gpointer data) |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
261 | { |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
262 | GDateTime *timestamp = NULL; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
263 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
264 | if(!PURPLE_IS_MESSAGE(message)) { |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
265 | return NULL; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
266 | } |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
267 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
268 | timestamp = purple_message_get_timestamp(message); |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
269 | if(timestamp != NULL) { |
|
42490
f864332b13ef
Make sure the timestamp shown on messages is in the user's local time
Gary Kramlich <grim@reaperworld.com>
parents:
42447
diff
changeset
|
270 | GDateTime *local = NULL; |
|
f864332b13ef
Make sure the timestamp shown on messages is in the user's local time
Gary Kramlich <grim@reaperworld.com>
parents:
42447
diff
changeset
|
271 | char *ret = NULL; |
|
f864332b13ef
Make sure the timestamp shown on messages is in the user's local time
Gary Kramlich <grim@reaperworld.com>
parents:
42447
diff
changeset
|
272 | |
|
f864332b13ef
Make sure the timestamp shown on messages is in the user's local time
Gary Kramlich <grim@reaperworld.com>
parents:
42447
diff
changeset
|
273 | local = g_date_time_to_local(timestamp); |
|
f864332b13ef
Make sure the timestamp shown on messages is in the user's local time
Gary Kramlich <grim@reaperworld.com>
parents:
42447
diff
changeset
|
274 | ret = g_date_time_format(local, "%I:%M %p"); |
|
f864332b13ef
Make sure the timestamp shown on messages is in the user's local time
Gary Kramlich <grim@reaperworld.com>
parents:
42447
diff
changeset
|
275 | g_date_time_unref(local); |
|
f864332b13ef
Make sure the timestamp shown on messages is in the user's local time
Gary Kramlich <grim@reaperworld.com>
parents:
42447
diff
changeset
|
276 | |
|
f864332b13ef
Make sure the timestamp shown on messages is in the user's local time
Gary Kramlich <grim@reaperworld.com>
parents:
42447
diff
changeset
|
277 | return ret; |
|
42346
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
278 | } |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
279 | |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
280 | return NULL; |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
281 | } |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
282 | |
|
42350
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
283 | static gboolean |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
284 | pidgin_conversation_query_tooltip_timestamp_cb(G_GNUC_UNUSED GtkWidget *self, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
285 | G_GNUC_UNUSED gint x, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
286 | G_GNUC_UNUSED gint y, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
287 | G_GNUC_UNUSED gboolean keyboard_mode, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
288 | GtkTooltip *tooltip, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
289 | gpointer data) |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
290 | { |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
291 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
292 | PurpleMessage *message = gtk_list_item_get_item(data); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
293 | GDateTime *timestamp = NULL; |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
294 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
295 | if(!PURPLE_IS_MESSAGE(message)) { |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
296 | return FALSE; |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
297 | } |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
298 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
299 | timestamp = purple_message_get_timestamp(message); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
300 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
301 | return pidgin_conversation_set_tooltip_for_timestamp(tooltip, timestamp); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
302 | } |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
303 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
304 | static gboolean |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
305 | pidgin_conversation_query_tooltip_edited_cb(G_GNUC_UNUSED GtkWidget *self, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
306 | G_GNUC_UNUSED gint x, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
307 | G_GNUC_UNUSED gint y, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
308 | G_GNUC_UNUSED gboolean keyboard_mode, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
309 | GtkTooltip *tooltip, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
310 | gpointer data) |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
311 | { |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
312 | PurpleMessage *message = gtk_list_item_get_item(data); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
313 | GDateTime *timestamp = NULL; |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
314 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
315 | if(!PURPLE_IS_MESSAGE(message)) { |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
316 | return FALSE; |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
317 | } |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
318 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
319 | timestamp = purple_message_get_edited_at(message); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
320 | |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
321 | return pidgin_conversation_set_tooltip_for_timestamp(tooltip, timestamp); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
322 | } |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
323 | |
|
42531
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
324 | static PangoAttrList * |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
325 | pidgin_conversation_get_message_attributes(G_GNUC_UNUSED GObject *self, |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
326 | PurpleMessage *message, |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
327 | G_GNUC_UNUSED gpointer data) |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
328 | { |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
329 | PangoAttrList *attrs = NULL; |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
330 | |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
331 | if(!PURPLE_IS_MESSAGE(message)) { |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
332 | return NULL; |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
333 | } |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
334 | |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
335 | attrs = pango_attr_list_new(); |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
336 | |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
337 | if(purple_message_get_action(message)) { |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
338 | PangoAttribute *attr = NULL; |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
339 | |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
340 | attr = pango_attr_style_new(PANGO_STYLE_ITALIC); |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
341 | |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
342 | pango_attr_list_insert(attrs, attr); |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
343 | } |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
344 | |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
345 | return attrs; |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
346 | } |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
347 | |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
348 | |
|
42380
165c0b7f3860
Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents:
42350
diff
changeset
|
349 | static char * |
|
165c0b7f3860
Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents:
42350
diff
changeset
|
350 | pidgin_conversation_process_message_contents_cb(G_GNUC_UNUSED GObject *self, |
|
165c0b7f3860
Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents:
42350
diff
changeset
|
351 | const char *contents, |
|
165c0b7f3860
Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents:
42350
diff
changeset
|
352 | G_GNUC_UNUSED gpointer data) |
|
165c0b7f3860
Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents:
42350
diff
changeset
|
353 | { |
|
42801
69a6faed5ab7
call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents:
42784
diff
changeset
|
354 | char *escaped = NULL; |
|
69a6faed5ab7
call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents:
42784
diff
changeset
|
355 | char *linkified = NULL; |
|
69a6faed5ab7
call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents:
42784
diff
changeset
|
356 | |
|
69a6faed5ab7
call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents:
42784
diff
changeset
|
357 | escaped = g_markup_escape_text(contents, -1); |
|
69a6faed5ab7
call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents:
42784
diff
changeset
|
358 | linkified = purple_markup_linkify(escaped); |
|
69a6faed5ab7
call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents:
42784
diff
changeset
|
359 | g_free(escaped); |
|
69a6faed5ab7
call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents:
42784
diff
changeset
|
360 | |
|
69a6faed5ab7
call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents:
42784
diff
changeset
|
361 | return linkified; |
|
42380
165c0b7f3860
Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents:
42350
diff
changeset
|
362 | } |
|
165c0b7f3860
Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents:
42350
diff
changeset
|
363 | |
|
42527
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
364 | static void |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
365 | pidgin_conversation_member_list_context_cb(GtkGestureSingle *self, |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
366 | G_GNUC_UNUSED gint n_press, |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
367 | gdouble x, |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
368 | gdouble y, |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
369 | gpointer data) |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
370 | { |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
371 | PurpleAccount *account = NULL; |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
372 | PurpleContactInfo *info = NULL; |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
373 | PurpleConversationMember *member = NULL; |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
374 | GtkWidget *parent = NULL; |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
375 | GtkListItem *item = data; |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
376 | |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
377 | parent = gtk_event_controller_get_widget(GTK_EVENT_CONTROLLER(self)); |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
378 | |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
379 | member = gtk_list_item_get_item(item); |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
380 | info = purple_conversation_member_get_contact_info(member); |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
381 | |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
382 | /* ConversationMembers are a PurpleAccount for the libpurple user, or in |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
383 | * most cases are PurpleContact for all the other users. Because of this, |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
384 | * we have to do a runtime check to determine which one they are. |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
385 | */ |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
386 | if(PURPLE_IS_ACCOUNT(info)) { |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
387 | account = PURPLE_ACCOUNT(info); |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
388 | } else if(PURPLE_IS_CONTACT(info)) { |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
389 | account = purple_contact_get_account(PURPLE_CONTACT(info)); |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
390 | } |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
391 | |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
392 | pidgin_contact_info_menu_popup(info, account, parent, x, y); |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
393 | } |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
394 | |
|
42783
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
395 | static int |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
396 | pidgin_conversation_member_list_sort(gconstpointer a, gconstpointer b, |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
397 | G_GNUC_UNUSED gpointer data) |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
398 | { |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
399 | PurpleConversationMember *member_a = NULL; |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
400 | PurpleConversationMember *member_b = NULL; |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
401 | PurpleContactInfo *info_a = NULL; |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
402 | PurpleContactInfo *info_b = NULL; |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
403 | |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
404 | member_a = PURPLE_CONVERSATION_MEMBER((gpointer)a); |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
405 | member_b = PURPLE_CONVERSATION_MEMBER((gpointer)b); |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
406 | |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
407 | info_a = purple_conversation_member_get_contact_info(member_a); |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
408 | info_b = purple_conversation_member_get_contact_info(member_b); |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
409 | |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
410 | return purple_contact_info_compare(info_a, info_b); |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
411 | } |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
412 | |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
413 | /****************************************************************************** |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
414 | * GObject Implementation |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
415 | *****************************************************************************/ |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
416 | static void |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
417 | pidgin_conversation_dispose(GObject *obj) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
418 | PidginConversation *conversation = PIDGIN_CONVERSATION(obj); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
419 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
420 | pidgin_conversation_detach(conversation); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
421 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
422 | g_clear_object(&conversation->conversation); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
423 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
424 | G_OBJECT_CLASS(pidgin_conversation_parent_class)->dispose(obj); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
425 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
426 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
427 | static void |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
428 | pidgin_conversation_get_property(GObject *obj, guint param_id, GValue *value, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
429 | GParamSpec *pspec) |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
430 | { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
431 | PidginConversation *conversation = PIDGIN_CONVERSATION(obj); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
432 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
433 | switch(param_id) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
434 | case PROP_CONVERSATION: |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
435 | g_value_set_object(value, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
436 | pidgin_conversation_get_conversation(conversation)); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
437 | break; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
438 | default: |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
439 | G_OBJECT_WARN_INVALID_PROPERTY_ID(obj, param_id, pspec); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
440 | break; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
441 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
442 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
443 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
444 | static void |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
445 | pidgin_conversation_set_property(GObject *obj, guint param_id, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
446 | const GValue *value, GParamSpec *pspec) |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
447 | { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
448 | PidginConversation *conversation = PIDGIN_CONVERSATION(obj); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
449 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
450 | switch(param_id) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
451 | case PROP_CONVERSATION: |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
452 | pidgin_conversation_set_conversation(conversation, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
453 | g_value_get_object(value)); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
454 | break; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
455 | default: |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
456 | G_OBJECT_WARN_INVALID_PROPERTY_ID(obj, param_id, pspec); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
457 | break; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
458 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
459 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
460 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
461 | static void |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
462 | pidgin_conversation_init(PidginConversation *conversation) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
463 | gtk_widget_init_template(GTK_WIDGET(conversation)); |
|
42783
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
464 | |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
465 | gtk_custom_sorter_set_sort_func(conversation->memberlist_sorter, |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
466 | pidgin_conversation_member_list_sort, |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
467 | NULL, NULL); |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
468 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
469 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
470 | static void |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
471 | pidgin_conversation_class_init(PidginConversationClass *klass) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
472 | GObjectClass *obj_class = G_OBJECT_CLASS(klass); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
473 | GtkWidgetClass *widget_class = GTK_WIDGET_CLASS(klass); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
474 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
475 | obj_class->dispose = pidgin_conversation_dispose; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
476 | obj_class->get_property = pidgin_conversation_get_property; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
477 | obj_class->set_property = pidgin_conversation_set_property; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
478 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
479 | /** |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
480 | * PidginConversation:conversation: |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
481 | * |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
482 | * The [class@Purple.Conversation] that this conversation is displaying. |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
483 | * |
|
42620
72178a341eb8
Remove minor versions from Since tags in Pidgin
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents:
42584
diff
changeset
|
484 | * Since: 3.0 |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
485 | */ |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
486 | properties[PROP_CONVERSATION] = g_param_spec_object( |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
487 | "conversation", "conversation", |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
488 | "The purple conversation this widget is for.", |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
489 | PURPLE_TYPE_CONVERSATION, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
490 | G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
491 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
492 | g_object_class_install_properties(obj_class, N_PROPERTIES, properties); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
493 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
494 | /* Template stuff. */ |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
495 | gtk_widget_class_set_template_from_resource( |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
496 | widget_class, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
497 | "/im/pidgin/Pidgin3/Conversations/conversation.ui" |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
498 | ); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
499 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
500 | gtk_widget_class_bind_template_child(widget_class, PidginConversation, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
501 | info_pane); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
502 | gtk_widget_class_bind_template_child(widget_class, PidginConversation, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
503 | history); |
|
42346
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
504 | gtk_widget_class_bind_template_child(widget_class, PidginConversation, |
|
42447
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
505 | history_adjustment); |
|
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
506 | gtk_widget_class_bind_template_child(widget_class, PidginConversation, |
|
42783
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
507 | memberlist_sorter); |
|
e61721a750e9
Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents:
42620
diff
changeset
|
508 | gtk_widget_class_bind_template_child(widget_class, PidginConversation, |
|
42447
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
509 | input); |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
510 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
511 | gtk_widget_class_bind_template_callback(widget_class, |
|
42784
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
512 | pidgin_conversation_escape_topic); |
|
909476a9e569
Escape the topic and its tooltip using g_markup_escape_text
Gary Kramlich <grim@reaperworld.com>
parents:
42783
diff
changeset
|
513 | gtk_widget_class_bind_template_callback(widget_class, |
|
42447
3f1004d7772a
Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents:
42380
diff
changeset
|
514 | pidgin_conversation_input_key_pressed_cb); |
|
42346
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
515 | gtk_widget_class_bind_template_callback(widget_class, |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
516 | pidgin_conversation_get_author_attributes); |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
517 | gtk_widget_class_bind_template_callback(widget_class, |
|
45d2756d2a14
Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents:
42301
diff
changeset
|
518 | pidgin_converation_get_timestamp_string); |
|
42350
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
519 | gtk_widget_class_bind_template_callback(widget_class, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
520 | pidgin_conversation_query_tooltip_timestamp_cb); |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
521 | gtk_widget_class_bind_template_callback(widget_class, |
|
0d5319e4b836
Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42346
diff
changeset
|
522 | pidgin_conversation_query_tooltip_edited_cb); |
|
42380
165c0b7f3860
Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents:
42350
diff
changeset
|
523 | gtk_widget_class_bind_template_callback(widget_class, |
|
42531
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
524 | pidgin_conversation_get_message_attributes); |
|
82fffff36df6
If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents:
42527
diff
changeset
|
525 | gtk_widget_class_bind_template_callback(widget_class, |
|
42380
165c0b7f3860
Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents:
42350
diff
changeset
|
526 | pidgin_conversation_process_message_contents_cb); |
|
42527
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
527 | gtk_widget_class_bind_template_callback(widget_class, |
|
1954265c38f0
Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents:
42519
diff
changeset
|
528 | pidgin_conversation_member_list_context_cb); |
|
42301
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
529 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
530 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
531 | /****************************************************************************** |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
532 | * API |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
533 | *****************************************************************************/ |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
534 | GtkWidget * |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
535 | pidgin_conversation_new(PurpleConversation *conversation) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
536 | g_return_val_if_fail(PURPLE_IS_CONVERSATION(conversation), NULL); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
537 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
538 | return g_object_new( |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
539 | PIDGIN_TYPE_CONVERSATION, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
540 | "conversation", conversation, |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
541 | NULL); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
542 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
543 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
544 | GtkWidget * |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
545 | pidgin_conversation_from_purple_conversation(PurpleConversation *conversation) |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
546 | { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
547 | g_return_val_if_fail(PURPLE_IS_CONVERSATION(conversation), NULL); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
548 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
549 | return g_object_get_data(G_OBJECT(conversation), PIDGIN_CONVERSATION_DATA); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
550 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
551 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
552 | PurpleConversation * |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
553 | pidgin_conversation_get_conversation(PidginConversation *conversation) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
554 | g_return_val_if_fail(PIDGIN_IS_CONVERSATION(conversation), NULL); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
555 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
556 | return conversation->conversation; |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
557 | } |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
558 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
559 | void |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
560 | pidgin_conversation_close(PidginConversation *conversation) { |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
561 | g_return_if_fail(PIDGIN_IS_CONVERSATION(conversation)); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
562 | |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
563 | pidgin_conversation_detach(conversation); |
|
d3930fe5505c
The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff
changeset
|
564 | } |