diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-08-08 04:42:44 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-08-08 04:42:44 +0800 |
commit | ff5debba3755465eaeb4766b213cd5d37ffe8e01 (patch) | |
tree | 268f4e62901c6dc5433802974cf4e60760ca8d9d /src | |
parent | 148a755f7a9ed405ac89f92d8add5804efd664c3 (diff) | |
download | gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar.gz gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar.bz2 gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar.lz gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar.xz gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.tar.zst gsoc2013-epiphany-ff5debba3755465eaeb4766b213cd5d37ffe8e01.zip |
Add "delete text" command.
2006-08-07 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-window.c:
* src/window-commands.c:
* src/window-commands.h:
Add "delete text" command.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-window.c | 3 | ||||
-rw-r--r-- | src/window-commands.c | 22 | ||||
-rw-r--r-- | src/window-commands.h | 3 |
3 files changed, 28 insertions, 0 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 8f4678d99..aeff35da7 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -171,6 +171,9 @@ static const GtkActionEntry ephy_menu_entries [] = { { "EditPaste", GTK_STOCK_PASTE, N_("_Paste"), "<control>V", N_("Paste clipboard"), G_CALLBACK (window_cmd_edit_paste) }, + { "EditDelete", GTK_STOCK_DELETE, NULL, NULL, + N_("Delete text"), + G_CALLBACK (window_cmd_edit_delete) }, { "EditSelectAll", NULL, N_("Select _All"), "<control>A", N_("Select the entire page"), G_CALLBACK (window_cmd_edit_select_all) }, diff --git a/src/window-commands.c b/src/window-commands.c index 46dee486b..b3391491c 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -464,6 +464,28 @@ window_cmd_edit_paste (GtkAction *action, } void +window_cmd_edit_delete (GtkAction *action, + EphyWindow *window) +{ + GtkWidget *widget = gtk_window_get_focus (GTK_WINDOW (window)); + + if (GTK_IS_EDITABLE (widget)) + { + gtk_editable_delete_text (GTK_EDITABLE (widget), 0, -1); + } + else + { + EphyEmbed *embed; + + embed = ephy_window_get_active_embed (window); + g_return_if_fail (embed != NULL); + + ephy_command_manager_do_command (EPHY_COMMAND_MANAGER (embed), + "cmd_delete"); + } +} + +void window_cmd_edit_select_all (GtkAction *action, EphyWindow *window) { diff --git a/src/window-commands.h b/src/window-commands.h index 1bafbc460..30026ee9c 100644 --- a/src/window-commands.h +++ b/src/window-commands.h @@ -94,6 +94,9 @@ void window_cmd_edit_copy (GtkAction *action, void window_cmd_edit_paste (GtkAction *action, EphyWindow *window); +void window_cmd_edit_delete (GtkAction *action, + EphyWindow *window); + void window_cmd_edit_select_all (GtkAction *action, EphyWindow *window); |