2 * SendButton - Add a Send button to the conversation window entry area.
3 * Copyright (C) 2008 Etan Reisner <deryni@pidgin.im>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301, USA.
31 #include "gtkplugin.h"
34 send_button_cb(GtkButton
*button
, PidginConversation
*gtkconv
)
36 g_signal_emit_by_name(gtkconv
->entry
, "message_send");
40 input_buffer_changed(GtkTextBuffer
*text_buffer
, GtkWidget
*send_button
)
42 if (gtk_text_buffer_get_char_count(text_buffer
) != 0)
43 gtk_widget_set_sensitive(send_button
, TRUE
);
45 gtk_widget_set_sensitive(send_button
, FALSE
);
49 create_send_button_pidgin(PidginConversation
*gtkconv
)
51 GtkWidget
*send_button
;
55 send_button
= g_object_get_data(G_OBJECT(gtkconv
->lower_hbox
),
58 if (send_button
!= NULL
)
61 send_button
= gtk_button_new_with_mnemonic(_("_Send"));
62 g_signal_connect(G_OBJECT(send_button
), "clicked",
63 G_CALLBACK(send_button_cb
), gtkconv
);
64 gtk_box_pack_end(GTK_BOX(gtkconv
->lower_hbox
), send_button
, FALSE
,
66 gtk_widget_show(send_button
);
68 buf
= gtk_text_view_get_buffer(GTK_TEXT_VIEW(gtkconv
->entry
));
70 signal_id
= g_signal_connect(G_OBJECT(buf
), "changed",
71 G_CALLBACK(input_buffer_changed
),
73 g_object_set_data(G_OBJECT(send_button
), "buffer-signal",
74 GINT_TO_POINTER(signal_id
));
75 input_buffer_changed(buf
, send_button
);
78 g_object_set_data(G_OBJECT(gtkconv
->lower_hbox
), "send_button",
83 remove_send_button_pidgin(PidginConversation
*gtkconv
)
85 GtkWidget
*send_button
= NULL
;
87 send_button
= g_object_get_data(G_OBJECT(gtkconv
->lower_hbox
),
89 if (send_button
!= NULL
) {
93 buf
= gtk_text_view_get_buffer(GTK_TEXT_VIEW(gtkconv
->entry
));
94 signal_id
= GPOINTER_TO_INT(g_object_get_data(G_OBJECT(send_button
),
97 g_signal_handler_disconnect(G_OBJECT(buf
), signal_id
);
99 gtk_widget_destroy(send_button
);
100 g_object_set_data(G_OBJECT(gtkconv
->lower_hbox
),
101 "send_button", NULL
);
106 conversation_displayed_cb(PidginConversation
*gtkconv
)
108 GtkWidget
*send_button
= NULL
;
110 send_button
= g_object_get_data(G_OBJECT(gtkconv
->lower_hbox
),
112 if (send_button
== NULL
) {
113 create_send_button_pidgin(gtkconv
);
118 plugin_load(PurplePlugin
*plugin
)
120 GList
*convs
= purple_get_conversations();
121 void *gtk_conv_handle
= pidgin_conversations_get_handle();
123 purple_signal_connect(gtk_conv_handle
, "conversation-displayed", plugin
,
124 PURPLE_CALLBACK(conversation_displayed_cb
), NULL
);
126 purple_signal_connect(gtk_conv_handle, "conversation-hiding", plugin,
127 PURPLE_CALLBACK(conversation_hiding_cb), NULL);
132 PurpleConversation
*conv
= (PurpleConversation
*)convs
->data
;
134 /* Setup Send button */
135 if (PIDGIN_IS_PIDGIN_CONVERSATION(conv
)) {
136 create_send_button_pidgin(PIDGIN_CONVERSATION(conv
));
146 plugin_unload(PurplePlugin
*plugin
)
148 GList
*convs
= purple_get_conversations();
151 PurpleConversation
*conv
= (PurpleConversation
*)convs
->data
;
153 /* Remove Send button */
154 if (PIDGIN_IS_PIDGIN_CONVERSATION(conv
)) {
155 remove_send_button_pidgin(PIDGIN_CONVERSATION(conv
));
164 static PurplePluginInfo info
=
167 PURPLE_MAJOR_VERSION
, /**< major version */
168 PURPLE_MINOR_VERSION
, /**< minor version */
169 PURPLE_PLUGIN_STANDARD
, /**< type */
170 PIDGIN_PLUGIN_TYPE
, /**< ui_requirement */
172 NULL
, /**< dependencies */
173 PURPLE_PRIORITY_DEFAULT
, /**< priority */
175 "gtksendbutton", /**< id */
176 N_("Send Button"), /**< name */
177 DISPLAY_VERSION
, /**< version */
178 N_("Conversation Window Send Button."), /**< summary */
179 N_("Adds a Send button to the entry area of "
180 "the conversation window. Intended for use "
181 "when no physical keyboard is present."), /**< description */
182 "Etan Reisner <deryni@pidgin.im>", /**< author */
183 PURPLE_WEBSITE
, /**< homepage */
184 plugin_load
, /**< load */
185 plugin_unload
, /**< unload */
186 NULL
, /**< destroy */
187 NULL
, /**< ui_info */
188 NULL
, /**< extra_info */
189 NULL
, /**< prefs_info */
190 NULL
, /**< actions */
200 init_plugin(PurplePlugin
*plugin
)
204 PURPLE_INIT_PLUGIN(sendbutton
, init_plugin
, info
)