diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-06-26 07:59:23 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-06-26 07:59:23 +0000 |
| commit | be70fd89be787e2b24604f9ba785b87c1f8f1d22 (patch) | |
| tree | 5b7ec98c48d2a5d2dc5078007142d2e92c09a8a2 /utils/themeeditor/gui/editorwindow.ui | |
| parent | 5300c7014d602c57fcae7f6619f5138d83ba33c0 (diff) | |
| download | rockbox-be70fd89be787e2b24604f9ba785b87c1f8f1d22.zip rockbox-be70fd89be787e2b24604f9ba785b87c1f8f1d22.tar.gz rockbox-be70fd89be787e2b24604f9ba785b87c1f8f1d22.tar.bz2 rockbox-be70fd89be787e2b24604f9ba785b87c1f8f1d22.tar.xz | |
Theme Editor: Added an edit menu with a find/replace function (copied from an LGPL library)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27137 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/gui/editorwindow.ui')
| -rw-r--r-- | utils/themeeditor/gui/editorwindow.ui | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/utils/themeeditor/gui/editorwindow.ui b/utils/themeeditor/gui/editorwindow.ui index 2f84d38..707e246 100644 --- a/utils/themeeditor/gui/editorwindow.ui +++ b/utils/themeeditor/gui/editorwindow.ui @@ -70,7 +70,21 @@ <addaction name="separator"/> <addaction name="actionDevice_Configuration"/> </widget> + <widget class="QMenu" name="menuEdit"> + <property name="title"> + <string>&Edit</string> + </property> + <addaction name="actionUndo"/> + <addaction name="actionRedo"/> + <addaction name="separator"/> + <addaction name="actionCut"/> + <addaction name="actionCopy"/> + <addaction name="actionPaste"/> + <addaction name="separator"/> + <addaction name="actionFind_Replace"/> + </widget> <addaction name="menuFile"/> + <addaction name="menuEdit"/> <addaction name="menuView"/> </widget> <widget class="QStatusBar" name="statusbar"/> @@ -303,6 +317,54 @@ <string>Ctrl+D</string> </property> </action> + <action name="actionUndo"> + <property name="text"> + <string>&Undo</string> + </property> + <property name="shortcut"> + <string>Ctrl+Z</string> + </property> + </action> + <action name="actionRedo"> + <property name="text"> + <string>&Redo</string> + </property> + <property name="shortcut"> + <string>Ctrl+Shift+Z</string> + </property> + </action> + <action name="actionCut"> + <property name="text"> + <string>C&ut</string> + </property> + <property name="shortcut"> + <string>Ctrl+X</string> + </property> + </action> + <action name="actionCopy"> + <property name="text"> + <string>&Copy</string> + </property> + <property name="shortcut"> + <string>Ctrl+C</string> + </property> + </action> + <action name="actionPaste"> + <property name="text"> + <string>&Paste</string> + </property> + <property name="shortcut"> + <string>Ctrl+V</string> + </property> + </action> + <action name="actionFind_Replace"> + <property name="text"> + <string>&Find/Replace</string> + </property> + <property name="shortcut"> + <string>Ctrl+F</string> + </property> + </action> </widget> <tabstops> <tabstop>projectTree</tabstop> |