pidgin/pidginconversation.c

Thu, 21 Nov 2024 00:35:20 -0600

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Thu, 21 Nov 2024 00:35:20 -0600
changeset 43072
a59a119b74f5
parent 43058
7b3b26faf6ed
child 43093
27f816a512af
permissions
-rw-r--r--

Remove nick and blurb from Pidgin properties

Also try to format everything consistently.

Testing Done:
Ran `ninja turtles`.

Reviewed at https://reviews.imfreedom.org/r/3662/

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;
42838
010bd75895d9 Use purple_message_new instead of purple_message_new_outgoing in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42826
diff changeset
137 PurpleContactInfo *info = NULL;
42812
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
138 PurpleMessage *message = NULL;
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
139 GtkTextBuffer *buffer = NULL;
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
140 GtkTextIter start;
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
141 GtkTextIter end;
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
142 char *contents = NULL;
43058
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
143 gboolean command_executed = FALSE;
42812
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 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
146
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
147 /* 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
148 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
149 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
150 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
151
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
152 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
153
43058
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
154 if(contents != NULL && contents[0] == '/') {
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
155 PurpleCommandManager *manager = NULL;
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
156
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
157 manager = purple_command_manager_get_default();
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
158 command_executed = purple_command_manager_find_and_execute(manager,
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
159 conversation->conversation,
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
160 contents + 1);
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
161 }
42812
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
162
43058
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
163 if(!command_executed) {
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
164 /* Create the message. */
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
165 info = purple_account_get_contact_info(account);
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
166 message = purple_message_new(info, contents);
42812
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
167
43058
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
168 /* Send the message and clean up. We don't worry about the callback as we
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
169 * don't have anything to do in it right now.
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
170 */
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
171 purple_conversation_send_message_async(conversation->conversation, message,
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
172 NULL, NULL, NULL);
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
173
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
174 g_clear_object(&message);
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
175 }
7b3b26faf6ed Add very basic command support to Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42905
diff changeset
176
42812
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
177 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
178
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
179 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
180 }
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
181
42301
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
182 /******************************************************************************
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
183 * Callbacks
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
184 *****************************************************************************/
42885
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
185 static void
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
186 pidgin_conversation_input_insert_text_cb(G_GNUC_UNUSED GtkTextBuffer *buffer,
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
187 G_GNUC_UNUSED const GtkTextIter *iter,
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
188 G_GNUC_UNUSED char *text,
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
189 G_GNUC_UNUSED int length,
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
190 gpointer data)
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
191 {
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
192 PidginConversation *conversation = data;
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
193
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
194 purple_conversation_set_typing_state(conversation->conversation,
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
195 PURPLE_TYPING_STATE_TYPING);
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
196 }
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
197
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
198 static void
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
199 pidgin_conversation_input_delete_range_cb(GtkTextBuffer *buffer,
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
200 G_GNUC_UNUSED const GtkTextIter *start,
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
201 G_GNUC_UNUSED const GtkTextIter *end,
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
202 gpointer data)
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
203 {
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
204 PidginConversation *conversation = data;
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
205
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
206 if(gtk_text_buffer_get_char_count(buffer) == 0) {
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
207 purple_conversation_set_typing_state(conversation->conversation,
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
208 PURPLE_TYPING_STATE_NONE);
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
209 }
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
210 }
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
211
42447
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
212 static gboolean
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
213 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
214 guint keyval,
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
215 G_GNUC_UNUSED guint keycode,
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
216 GdkModifierType state,
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
217 gpointer data)
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
218 {
42301
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
219 PidginConversation *conversation = data;
42447
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
220 gboolean handled = TRUE;
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
221
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
222 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
223 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
224 return FALSE;
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
225 }
42301
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
226
42812
4d48abf72b94 Update Pidgin.Conversation to use Purple.Conversation.send_message_async
Gary Kramlich <grim@reaperworld.com>
parents: 42801
diff changeset
227 pidgin_conversation_send_message(conversation);
42447
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
228 } 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
229 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
230 } 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
231 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
232 } else {
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
233 handled = FALSE;
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
234 }
42301
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
235
42447
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
236 return handled;
42301
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
237 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
238
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
239 static void
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
240 pidgin_conversation_detach(PidginConversation *conversation) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
241 if(PURPLE_IS_CONVERSATION(conversation->conversation)) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
242 gpointer us = NULL;
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
243
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
244 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
245 PIDGIN_CONVERSATION_DATA);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
246
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
247 if(conversation == us) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
248 g_object_set_data(G_OBJECT(conversation->conversation),
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
249 PIDGIN_CONVERSATION_DATA, NULL);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
250 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
251 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
252 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
253
42346
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
254 static PangoAttrList *
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
255 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
256 PurpleMessage *message,
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
257 G_GNUC_UNUSED gpointer data)
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
258 {
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
259 GdkRGBA rgba;
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
260 PangoAttrList *attrs = NULL;
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
261 gboolean color_valid = FALSE;
42905
d332eb539cb9 Update Pidgin for the Purple.Message deprecations
Gary Kramlich <grim@reaperworld.com>
parents: 42885
diff changeset
262 const char *custom_color = NULL;
42346
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 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
269 if(!purple_strempty(custom_color)) {
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
270 color_valid = gdk_rgba_parse(&rgba, custom_color);
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
271 }
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
272
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
273 if(!color_valid) {
42905
d332eb539cb9 Update Pidgin for the Purple.Message deprecations
Gary Kramlich <grim@reaperworld.com>
parents: 42885
diff changeset
274 PurpleContactInfo *author = NULL;
d332eb539cb9 Update Pidgin for the Purple.Message deprecations
Gary Kramlich <grim@reaperworld.com>
parents: 42885
diff changeset
275 const char *name_for_display = NULL;
d332eb539cb9 Update Pidgin for the Purple.Message deprecations
Gary Kramlich <grim@reaperworld.com>
parents: 42885
diff changeset
276
d332eb539cb9 Update Pidgin for the Purple.Message deprecations
Gary Kramlich <grim@reaperworld.com>
parents: 42885
diff changeset
277 author = purple_message_get_author(message);
d332eb539cb9 Update Pidgin for the Purple.Message deprecations
Gary Kramlich <grim@reaperworld.com>
parents: 42885
diff changeset
278 name_for_display = purple_contact_info_get_name_for_display(author);
d332eb539cb9 Update Pidgin for the Purple.Message deprecations
Gary Kramlich <grim@reaperworld.com>
parents: 42885
diff changeset
279
d332eb539cb9 Update Pidgin for the Purple.Message deprecations
Gary Kramlich <grim@reaperworld.com>
parents: 42885
diff changeset
280 pidgin_color_calculate_for_text(name_for_display, &rgba);
42346
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
281 color_valid = TRUE;
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
282 }
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
283
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
284 attrs = pango_attr_list_new();
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
285
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
286 if(color_valid) {
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
287 PangoAttribute *attr = NULL;
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
288
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
289 attr = pango_attr_foreground_new(0xFFFF * rgba.red,
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
290 0xFFFF * rgba.green,
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
291 0xFFFF * rgba.blue);
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
292 pango_attr_list_insert(attrs, attr);
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
293 }
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
294
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
295 return attrs;
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
296 }
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
297
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
298 static char *
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
299 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
300 PurpleMessage *message,
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
301 G_GNUC_UNUSED gpointer data)
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
302 {
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
303 GDateTime *timestamp = NULL;
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
304
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
305 if(!PURPLE_IS_MESSAGE(message)) {
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
306 return NULL;
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
307 }
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
308
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
309 timestamp = purple_message_get_timestamp(message);
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
310 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
311 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
312 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
313
f864332b13ef Make sure the timestamp shown on messages is in the user's local time
Gary Kramlich <grim@reaperworld.com>
parents: 42447
diff changeset
314 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
315 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
316 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
317
f864332b13ef Make sure the timestamp shown on messages is in the user's local time
Gary Kramlich <grim@reaperworld.com>
parents: 42447
diff changeset
318 return ret;
42346
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
319 }
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
320
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
321 return NULL;
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
322 }
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
323
42350
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
324 static gboolean
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
325 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
326 G_GNUC_UNUSED gint x,
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
327 G_GNUC_UNUSED gint y,
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
328 G_GNUC_UNUSED gboolean keyboard_mode,
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
329 GtkTooltip *tooltip,
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
330 gpointer data)
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
331 {
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
332
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
333 PurpleMessage *message = gtk_list_item_get_item(data);
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
334 GDateTime *timestamp = NULL;
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
335
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
336 if(!PURPLE_IS_MESSAGE(message)) {
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
337 return FALSE;
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
338 }
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
339
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
340 timestamp = purple_message_get_timestamp(message);
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
341
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
342 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
343 }
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
344
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
345 static gboolean
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
346 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
347 G_GNUC_UNUSED gint x,
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
348 G_GNUC_UNUSED gint y,
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
349 G_GNUC_UNUSED gboolean keyboard_mode,
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
350 GtkTooltip *tooltip,
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
351 gpointer data)
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
352 {
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
353 PurpleMessage *message = gtk_list_item_get_item(data);
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
354 GDateTime *timestamp = NULL;
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
355
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
356 if(!PURPLE_IS_MESSAGE(message)) {
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
357 return FALSE;
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
358 }
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
359
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
360 timestamp = purple_message_get_edited_at(message);
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
361
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
362 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
363 }
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
364
42531
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
365 static PangoAttrList *
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
366 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
367 PurpleMessage *message,
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
368 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
369 {
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
370 PangoAttrList *attrs = NULL;
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
371
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
372 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
373 return NULL;
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
374 }
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
375
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
376 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
377
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
378 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
379 PangoAttribute *attr = NULL;
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
380
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
381 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
382
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
383 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
384 }
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
385
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
386 return attrs;
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
387 }
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
388
82fffff36df6 If a message is an action format it with italics
Gary Kramlich <grim@reaperworld.com>
parents: 42527
diff changeset
389
42380
165c0b7f3860 Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents: 42350
diff changeset
390 static char *
165c0b7f3860 Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents: 42350
diff changeset
391 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
392 const char *contents,
165c0b7f3860 Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents: 42350
diff changeset
393 G_GNUC_UNUSED gpointer data)
165c0b7f3860 Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents: 42350
diff changeset
394 {
42801
69a6faed5ab7 call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents: 42784
diff changeset
395 char *escaped = NULL;
69a6faed5ab7 call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents: 42784
diff changeset
396 char *linkified = NULL;
69a6faed5ab7 call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents: 42784
diff changeset
397
69a6faed5ab7 call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents: 42784
diff changeset
398 escaped = g_markup_escape_text(contents, -1);
69a6faed5ab7 call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents: 42784
diff changeset
399 linkified = purple_markup_linkify(escaped);
69a6faed5ab7 call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents: 42784
diff changeset
400 g_free(escaped);
69a6faed5ab7 call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents: 42784
diff changeset
401
69a6faed5ab7 call purple_markup_linkify on message content
Gary Kramlich <grim@reaperworld.com>
parents: 42784
diff changeset
402 return linkified;
42380
165c0b7f3860 Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents: 42350
diff changeset
403 }
165c0b7f3860 Escape message content in Pidgin before displaying it
Gary Kramlich <grim@reaperworld.com>
parents: 42350
diff changeset
404
42527
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
405 static void
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
406 pidgin_conversation_member_list_context_cb(GtkGestureSingle *self,
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
407 G_GNUC_UNUSED gint n_press,
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
408 gdouble x,
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
409 gdouble y,
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
410 gpointer data)
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
411 {
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
412 PurpleAccount *account = NULL;
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
413 PurpleContactInfo *info = NULL;
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
414 PurpleConversationMember *member = NULL;
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
415 GtkWidget *parent = NULL;
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
416 GtkListItem *item = data;
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
417
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
418 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
419
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
420 member = gtk_list_item_get_item(item);
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
421 info = purple_conversation_member_get_contact_info(member);
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
422
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
423 /* 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
424 * 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
425 * 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
426 */
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
427 if(PURPLE_IS_ACCOUNT(info)) {
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
428 account = PURPLE_ACCOUNT(info);
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
429 } else if(PURPLE_IS_CONTACT(info)) {
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
430 account = purple_contact_get_account(PURPLE_CONTACT(info));
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
431 }
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
432
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
433 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
434 }
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
435
42783
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
436 static int
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
437 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
438 G_GNUC_UNUSED gpointer data)
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
439 {
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
440 PurpleConversationMember *member_a = NULL;
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
441 PurpleConversationMember *member_b = NULL;
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
442 PurpleContactInfo *info_a = NULL;
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
443 PurpleContactInfo *info_b = NULL;
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
444
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
445 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
446 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
447
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
448 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
449 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
450
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
451 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
452 }
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
453
42301
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
454 /******************************************************************************
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
455 * GObject Implementation
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
456 *****************************************************************************/
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
457 static void
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
458 pidgin_conversation_dispose(GObject *obj) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
459 PidginConversation *conversation = PIDGIN_CONVERSATION(obj);
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 pidgin_conversation_detach(conversation);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
462
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
463 g_clear_object(&conversation->conversation);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
464
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
465 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
466 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
467
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
468 static void
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
469 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
470 GParamSpec *pspec)
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
471 {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
472 PidginConversation *conversation = PIDGIN_CONVERSATION(obj);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
473
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
474 switch(param_id) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
475 case PROP_CONVERSATION:
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
476 g_value_set_object(value,
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
477 pidgin_conversation_get_conversation(conversation));
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
478 break;
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
479 default:
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
480 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
481 break;
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
482 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
483 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
484
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
485 static void
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
486 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
487 const GValue *value, GParamSpec *pspec)
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
488 {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
489 PidginConversation *conversation = PIDGIN_CONVERSATION(obj);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
490
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
491 switch(param_id) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
492 case PROP_CONVERSATION:
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
493 pidgin_conversation_set_conversation(conversation,
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
494 g_value_get_object(value));
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
495 break;
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
496 default:
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
497 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
498 break;
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 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
501
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
502 static void
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
503 pidgin_conversation_init(PidginConversation *conversation) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
504 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
505
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
506 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
507 pidgin_conversation_member_list_sort,
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
508 NULL, NULL);
42301
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
509 }
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 static void
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
512 pidgin_conversation_class_init(PidginConversationClass *klass) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
513 GObjectClass *obj_class = G_OBJECT_CLASS(klass);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
514 GtkWidgetClass *widget_class = GTK_WIDGET_CLASS(klass);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
515
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
516 obj_class->dispose = pidgin_conversation_dispose;
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
517 obj_class->get_property = pidgin_conversation_get_property;
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
518 obj_class->set_property = pidgin_conversation_set_property;
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
519
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
520 /**
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
521 * PidginConversation:conversation:
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
522 *
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
523 * 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
524 *
42620
72178a341eb8 Remove minor versions from Since tags in Pidgin
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 42584
diff changeset
525 * Since: 3.0
42301
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
526 */
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
527 properties[PROP_CONVERSATION] = g_param_spec_object(
43072
a59a119b74f5 Remove nick and blurb from Pidgin properties
Elliott Sales de Andrade <quantum.analyst@gmail.com>
parents: 43058
diff changeset
528 "conversation", NULL, NULL,
42301
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
529 PURPLE_TYPE_CONVERSATION,
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
530 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
531
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
532 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
533
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
534 /* Template stuff. */
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
535 gtk_widget_class_set_template_from_resource(
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
536 widget_class,
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
537 "/im/pidgin/Pidgin3/Conversations/conversation.ui"
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
538 );
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
539
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
540 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
541 info_pane);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
542 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
543 history);
42346
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
544 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
545 history_adjustment);
3f1004d7772a Replace TalkatuEditor in PidginConversation with a basic GtkTextView
Gary Kramlich <grim@reaperworld.com>
parents: 42380
diff changeset
546 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
547 memberlist_sorter);
e61721a750e9 Add support for sorting the memberlist in conversations
Gary Kramlich <grim@reaperworld.com>
parents: 42620
diff changeset
548 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
549 input);
42301
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 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
552 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
553 gtk_widget_class_bind_template_callback(widget_class,
42885
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
554 pidgin_conversation_input_insert_text_cb);
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
555 gtk_widget_class_bind_template_callback(widget_class,
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
556 pidgin_conversation_input_delete_range_cb);
9b0cae94f406 Set Purple.Conversation:typing when appropriate in Pidgin
Gary Kramlich <grim@reaperworld.com>
parents: 42838
diff changeset
557 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
558 pidgin_conversation_input_key_pressed_cb);
42346
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
559 gtk_widget_class_bind_template_callback(widget_class,
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
560 pidgin_conversation_get_author_attributes);
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
561 gtk_widget_class_bind_template_callback(widget_class,
45d2756d2a14 Replace TalkatuHistory with our own implementation
Gary Kramlich <grim@reaperworld.com>
parents: 42301
diff changeset
562 pidgin_converation_get_timestamp_string);
42350
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
563 gtk_widget_class_bind_template_callback(widget_class,
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
564 pidgin_conversation_query_tooltip_timestamp_cb);
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
565 gtk_widget_class_bind_template_callback(widget_class,
0d5319e4b836 Add tooltips to timestamps in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42346
diff changeset
566 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
567 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
568 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
569 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
570 pidgin_conversation_process_message_contents_cb);
42527
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
571 gtk_widget_class_bind_template_callback(widget_class,
1954265c38f0 Implement the member list in PidginConversation
Gary Kramlich <grim@reaperworld.com>
parents: 42519
diff changeset
572 pidgin_conversation_member_list_context_cb);
42301
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
573 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
574
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
575 /******************************************************************************
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
576 * API
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
577 *****************************************************************************/
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
578 GtkWidget *
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
579 pidgin_conversation_new(PurpleConversation *conversation) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
580 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
581
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
582 return g_object_new(
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
583 PIDGIN_TYPE_CONVERSATION,
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
584 "conversation", conversation,
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
585 NULL);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
586 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
587
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
588 GtkWidget *
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
589 pidgin_conversation_from_purple_conversation(PurpleConversation *conversation)
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
590 {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
591 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
592
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
593 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
594 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
595
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
596 PurpleConversation *
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
597 pidgin_conversation_get_conversation(PidginConversation *conversation) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
598 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
599
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
600 return conversation->conversation;
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
601 }
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
602
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
603 void
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
604 pidgin_conversation_close(PidginConversation *conversation) {
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
605 g_return_if_fail(PIDGIN_IS_CONVERSATION(conversation));
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
606
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
607 pidgin_conversation_detach(conversation);
d3930fe5505c The start of the new conversation window
Gary Kramlich <grim@reaperworld.com>
parents:
diff changeset
608 }

mercurial