A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Theme Editor: Added a window icon and made menus alt-navigable

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26525 a1c6a512-1295-4272-9138-f99709370657

+30 -20
+21 -19
utils/themeeditor/editorwindow.ui
··· 11 11 </rect> 12 12 </property> 13 13 <property name="windowTitle"> 14 - <string>MainWindow</string> 14 + <string>Rockbox Theme Editor</string> 15 + </property> 16 + <property name="windowIcon"> 17 + <iconset resource="resources.qrc"> 18 + <normaloff>:/resources/resources/windowicon.png</normaloff>:/resources/resources/windowicon.png</iconset> 15 19 </property> 16 20 <widget class="QWidget" name="centralwidget"> 17 - <layout class="QHBoxLayout" name="horizontalLayout"> 21 + <layout class="QVBoxLayout" name="verticalLayout"> 18 22 <item> 19 - <layout class="QVBoxLayout" name="verticalLayout"> 20 - <item> 21 - <widget class="QPlainTextEdit" name="codeEdit"> 22 - <property name="lineWrapMode"> 23 - <enum>QPlainTextEdit::NoWrap</enum> 24 - </property> 25 - </widget> 26 - </item> 27 - </layout> 23 + <widget class="QPlainTextEdit" name="codeEdit"> 24 + <property name="lineWrapMode"> 25 + <enum>QPlainTextEdit::NoWrap</enum> 26 + </property> 27 + </widget> 28 28 </item> 29 29 </layout> 30 30 </widget> ··· 39 39 </property> 40 40 <widget class="QMenu" name="menuFile"> 41 41 <property name="title"> 42 - <string>File</string> 42 + <string>&amp;File</string> 43 43 </property> 44 44 <addaction name="actionPreferences"/> 45 45 <addaction name="separator"/> ··· 47 47 </widget> 48 48 <widget class="QMenu" name="menuView"> 49 49 <property name="title"> 50 - <string>View</string> 50 + <string>&amp;View</string> 51 51 </property> 52 52 <addaction name="actionPreview_Panel"/> 53 53 <addaction name="actionDisplay_Panel"/> ··· 143 143 </widget> 144 144 <action name="actionQuit"> 145 145 <property name="text"> 146 - <string>Quit</string> 146 + <string>&amp;Quit</string> 147 147 </property> 148 148 <property name="shortcut"> 149 149 <string>Ctrl+Q</string> ··· 157 157 <bool>true</bool> 158 158 </property> 159 159 <property name="text"> 160 - <string>Parse Tree Panel</string> 160 + <string>Parse &amp;Tree Panel</string> 161 161 </property> 162 162 <property name="shortcut"> 163 163 <string>Ctrl+D</string> ··· 165 165 </action> 166 166 <action name="actionPreferences"> 167 167 <property name="text"> 168 - <string>Preferences</string> 168 + <string>&amp;Preferences</string> 169 169 </property> 170 170 </action> 171 171 <action name="actionFile_Panel"> ··· 176 176 <bool>true</bool> 177 177 </property> 178 178 <property name="text"> 179 - <string>File Panel</string> 179 + <string>&amp;File Panel</string> 180 180 </property> 181 181 </action> 182 182 <action name="actionPreview_Panel"> ··· 187 187 <bool>true</bool> 188 188 </property> 189 189 <property name="text"> 190 - <string>Preview Panel</string> 190 + <string>&amp;Preview Panel</string> 191 191 </property> 192 192 </action> 193 193 </widget> 194 - <resources/> 194 + <resources> 195 + <include location="resources.qrc"/> 196 + </resources> 195 197 <connections> 196 198 <connection> 197 199 <sender>actionQuit</sender>
+5
utils/themeeditor/resources.qrc
··· 1 + <RCC> 2 + <qresource prefix="/resources"> 3 + <file>resources/windowicon.png</file> 4 + </qresource> 5 + </RCC>
utils/themeeditor/resources/appicon.xcf

This is a binary file and will not be displayed.

utils/themeeditor/resources/windowicon.png

This is a binary file and will not be displayed.

+4 -1
utils/themeeditor/themeeditor.pro
··· 22 22 parsetreenode.cpp \ 23 23 editorwindow.cpp \ 24 24 skinhighlighter.cpp 25 - OTHER_FILES += README 25 + OTHER_FILES += README \ 26 + resources/windowicon.png \ 27 + resources/appicon.xcf 26 28 FORMS += editorwindow.ui 29 + RESOURCES += resources.qrc