diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-10-25 23:15:35 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-10-25 23:15:35 +0800 |
commit | 38956a20d942387e3d5b839c4b962713bd60cdf0 (patch) | |
tree | 6ac41837526e3b5aab171741e0803ff87492a2ea /embed/mozilla/Makefile.am | |
parent | 20602830fa6d28dd28cab60de0698ec523b1c6b9 (diff) | |
download | gsoc2013-epiphany-38956a20d942387e3d5b839c4b962713bd60cdf0.tar gsoc2013-epiphany-38956a20d942387e3d5b839c4b962713bd60cdf0.tar.gz gsoc2013-epiphany-38956a20d942387e3d5b839c4b962713bd60cdf0.tar.bz2 gsoc2013-epiphany-38956a20d942387e3d5b839c4b962713bd60cdf0.tar.lz gsoc2013-epiphany-38956a20d942387e3d5b839c4b962713bd60cdf0.tar.xz gsoc2013-epiphany-38956a20d942387e3d5b839c4b962713bd60cdf0.tar.zst gsoc2013-epiphany-38956a20d942387e3d5b839c4b962713bd60cdf0.zip |
Interface for commands. Useful for undo. (cmd_undo works).
2003-10-25 Marco Pesenti Gritti <marco@gnome.org>
* embed/Makefile.am:
* embed/ephy-command-manager.c: (ephy_command_manager_get_type),
(ephy_command_manager_base_init),
(ephy_command_manager_do_command),
(ephy_command_manager_can_do_command),
(ephy_command_manager_observe_command):
* embed/ephy-command-manager.h:
Interface for commands. Useful for undo. (cmd_undo works).
* embed/ephy-embed.c:
* embed/ephy-embed.h:
Remove all clipboard calls.
* embed/mozilla/EphyWrapper.cpp:
* embed/mozilla/EphyWrapper.h:
* embed/mozilla/Makefile.am:
* embed/mozilla/mozilla-embed.cpp:
Implement part of the commands interface.
No regressions.
* src/window-commands.c: (window_cmd_edit_cut),
(window_cmd_edit_copy), (window_cmd_edit_paste),
(window_cmd_edit_select_all):
Implement clipboard using commands.
Diffstat (limited to 'embed/mozilla/Makefile.am')
-rw-r--r-- | embed/mozilla/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/embed/mozilla/Makefile.am b/embed/mozilla/Makefile.am index b31e1c6e2..9f80eb1c1 100644 --- a/embed/mozilla/Makefile.am +++ b/embed/mozilla/Makefile.am @@ -10,6 +10,7 @@ INCLUDES = \ -I$(MOZILLA_INCLUDE_ROOT)/chrome \ -I$(MOZILLA_INCLUDE_ROOT)/content \ -I$(MOZILLA_INCLUDE_ROOT)/cookie \ + -I$(MOZILLA_INCLUDE_ROOT)/commandhandler \ -I$(MOZILLA_INCLUDE_ROOT)/docshell \ -I$(MOZILLA_INCLUDE_ROOT)/dom \ -I$(MOZILLA_INCLUDE_ROOT)/exthandler \ |