st-entry: Implement middle click paste

https://bugzilla.gnome.org/show_bug.cgi?id=645019
This commit is contained in:
Jasper St. Pierre 2011-11-09 11:40:13 -05:00
parent 0616261a94
commit eaf184b585

View File

@ -541,6 +541,38 @@ st_entry_clipboard_callback (StClipboard *clipboard,
clutter_text_insert_text (ctext, text, cursor_pos); clutter_text_insert_text (ctext, text, cursor_pos);
} }
static gboolean
clutter_text_button_press_event (ClutterActor *actor,
ClutterButtonEvent *event,
gpointer user_data)
{
GtkSettings *settings = gtk_settings_get_default ();
gboolean primary_paste_enabled;
g_object_get (settings,
"gtk-enable-primary-paste", &primary_paste_enabled,
NULL);
if (primary_paste_enabled && event->button == 2)
{
StClipboard *clipboard;
clipboard = st_clipboard_get_default ();
/* By the time the clipboard callback is called,
* the rest of the signal handlers will have
* run, making the text cursor to be in the correct
* place.
*/
st_clipboard_get_text (clipboard,
ST_CLIPBOARD_TYPE_PRIMARY,
st_entry_clipboard_callback,
user_data);
}
return FALSE;
}
static gboolean static gboolean
st_entry_key_press_event (ClutterActor *actor, st_entry_key_press_event (ClutterActor *actor,
ClutterKeyEvent *event) ClutterKeyEvent *event)
@ -755,6 +787,9 @@ st_entry_init (StEntry *entry)
g_signal_connect (priv->entry, "notify::password-char", g_signal_connect (priv->entry, "notify::password-char",
G_CALLBACK (clutter_text_password_char_cb), entry); G_CALLBACK (clutter_text_password_char_cb), entry);
g_signal_connect (priv->entry, "button-press-event",
G_CALLBACK (clutter_text_button_press_event), entry);
priv->spacing = 6.0f; priv->spacing = 6.0f;
clutter_actor_add_child (CLUTTER_ACTOR (entry), priv->entry); clutter_actor_add_child (CLUTTER_ACTOR (entry), priv->entry);