-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
577496 561100 533437 656093 564992 Support Copy/Paste/Reset on target…
… terminal * src/persp/dbgperspective/menus/Makefile.am: Add terminal menu file * src/persp/dbgperspective/menus/terminalmenu.xml: New file * src/persp/dbgperspective/nmv-dbg-perspective.cc (DBGPerspective::get_terminal): pass the ui manager to the terminal * src/uicommon/nmv-terminal.cc (on_button_press_signal): New API (Terminal::Priv::Priv): Move code into a new method init_body, and call it along with init_actions. (Terminal::Priv::init_body): Code moved from Terminal::Priv::Priv. (Terminal::Priv::init_actions): New API (Terminal::Priv::on_reset_signal): Likewise (Terminal::Priv::on_copy_signal): Likewise (Terminal::Priv::on_paste_signal): Likewise (Terminal::Priv::reset): Likewise (Terminal::Priv::copy): Likewise (Terminal::Priv::paste): Likewise (Terminal::Terminal): Add a new paramater * src/uicommon/nmv-terminal.h (Terminal::Terminal): Set constructor explicit and add a new parameter.
- Loading branch information
Showing
5 changed files
with
178 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<ui> | ||
<popup name='TerminalMenu'> | ||
<menuitem action='CopyAction'/> | ||
<menuitem action='PasteAction'/> | ||
<separator/> | ||
<menuitem action='ResetAction'/> | ||
</popup> | ||
</ui> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters