diff options
author | saturneric <[email protected]> | 2024-01-05 14:21:11 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-01-05 14:21:11 +0000 |
commit | aeea160079b8ffd7f4f7c8accb20297e4f930f9a (patch) | |
tree | ec43bdc1d5134cdbe9c1dd1eeaa9474724113ab9 /ui/KeyList.ui | |
parent | fix: slove a multi-threads issue at task model (diff) | |
download | GpgFrontend-aeea160079b8ffd7f4f7c8accb20297e4f930f9a.tar.gz GpgFrontend-aeea160079b8ffd7f4f7c8accb20297e4f930f9a.zip |
feat: improve tool menus and icons
Diffstat (limited to 'ui/KeyList.ui')
-rw-r--r-- | ui/KeyList.ui | 44 |
1 files changed, 37 insertions, 7 deletions
diff --git a/ui/KeyList.ui b/ui/KeyList.ui index 87b68363..7aff96a5 100644 --- a/ui/KeyList.ui +++ b/ui/KeyList.ui @@ -37,30 +37,58 @@ <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> - <widget class="QPushButton" name="refreshKeyListButton"> + <widget class="QToolButton" name="refreshKeyListButton"> + <property name="toolTip"> + <string>Refresh</string> + </property> <property name="text"> <string>Refresh</string> </property> + <property name="icon"> + <iconset resource="../gpgfrontend.qrc"> + <normaloff>:/refresh.png</normaloff>:/refresh.png</iconset> + </property> </widget> </item> <item> - <widget class="QPushButton" name="syncButton"> + <widget class="QToolButton" name="syncButton"> + <property name="toolTip"> + <string>Sync Public Key</string> + </property> <property name="text"> <string>Sync Public Key</string> </property> + <property name="icon"> + <iconset resource="../gpgfrontend.qrc"> + <normaloff>:/cloud_sync.png</normaloff>:/cloud_sync.png</iconset> + </property> </widget> </item> <item> - <widget class="QPushButton" name="uncheckButton"> + <widget class="QToolButton" name="checkALLButton"> + <property name="toolTip"> + <string>Check ALL</string> + </property> <property name="text"> - <string>Uncheck ALL</string> + <string>Check ALL</string> + </property> + <property name="icon"> + <iconset resource="../gpgfrontend.qrc"> + <normaloff>:/total_selection.png</normaloff>:/total_selection.png</iconset> </property> </widget> </item> <item> - <widget class="QPushButton" name="checkALLButton"> + <widget class="QToolButton" name="uncheckButton"> + <property name="toolTip"> + <string>Uncheck ALL</string> + </property> <property name="text"> - <string>Check ALL</string> + <string>Uncheck ALL</string> + </property> + <property name="icon"> + <iconset resource="../gpgfrontend.qrc"> + <normaloff>:/none.png</normaloff>:/none.png</iconset> </property> </widget> </item> @@ -119,6 +147,8 @@ </item> </layout> </widget> - <resources/> + <resources> + <include location="../gpgfrontend.qrc"/> + </resources> <connections/> </ui> |