mirror of
https://github.com/rizinorg/cutter.git
synced 2025-02-20 13:46:06 +00:00
Rename "Open" to "Map File" and "New" to "New Window"
This commit is contained in:
parent
0753147930
commit
e7691eb956
@ -5,7 +5,7 @@ New Instance of Cutter
|
||||
----------------------------------------
|
||||
**Description:** Open a new instance of Cutter to start a new session. This option will open a new window of Cutter without exiting the current session.
|
||||
|
||||
**Steps:** File -> New
|
||||
**Steps:** File -> New Window
|
||||
|
||||
**Shortcut:** :kbd:`Ctrl` + :kbd:`N`
|
||||
|
||||
@ -14,9 +14,9 @@ Map a new file
|
||||
**Description:** Cutter allows you to map the contents of other files into the same I/O space used to contain the loaded binary. The new contents can be placed at random or specific offsets.
|
||||
Specifically, Cutter is able to open files and map portions of them at random or specific places in memory. It is the perfect basic tooling to reproduce an environment like a core file, a debug session, or a framework by also loading and mapping all the libraries and files the binary depends on.
|
||||
|
||||
**Steps:** File -> Open
|
||||
**Steps:** File -> Map File
|
||||
|
||||
**Shortcut:** :kbd:`Ctrl` + :kbd:`O`
|
||||
**Shortcut:** :kbd:`Ctrl` + :kbd:`M`
|
||||
|
||||
Import a PDB file
|
||||
----------------------------------------
|
||||
|
@ -1393,7 +1393,7 @@ void MainWindow::on_actionRun_Script_triggered()
|
||||
* @brief MainWindow::on_actionOpen_triggered
|
||||
* Open a file as in "load (add) a file in current session".
|
||||
*/
|
||||
void MainWindow::on_actionOpen_triggered()
|
||||
void MainWindow::on_actionMap_triggered()
|
||||
{
|
||||
OpenFileDialog dialog(this);
|
||||
dialog.exec();
|
||||
|
@ -181,7 +181,7 @@ private slots:
|
||||
void on_actionBackward_triggered();
|
||||
void on_actionForward_triggered();
|
||||
|
||||
void on_actionOpen_triggered();
|
||||
void on_actionMap_triggered();
|
||||
|
||||
void on_actionTabs_on_Top_triggered();
|
||||
|
||||
|
@ -61,7 +61,7 @@
|
||||
<string>File</string>
|
||||
</property>
|
||||
<addaction name="actionNew"/>
|
||||
<addaction name="actionOpen"/>
|
||||
<addaction name="actionMap"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionImportPDB"/>
|
||||
<addaction name="separator"/>
|
||||
@ -257,7 +257,7 @@
|
||||
</action>
|
||||
<action name="actionNew">
|
||||
<property name="text">
|
||||
<string>New</string>
|
||||
<string>New Window</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+N</string>
|
||||
@ -281,12 +281,12 @@
|
||||
<string>Documentation</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionOpen">
|
||||
<action name="actionMap">
|
||||
<property name="text">
|
||||
<string>Open</string>
|
||||
<string>Map File</string>
|
||||
</property>
|
||||
<property name="shortcut">
|
||||
<string>Ctrl+O</string>
|
||||
<string>Ctrl+M</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionSave">
|
||||
|
Loading…
Reference in New Issue
Block a user