Add mainwindow icon

This commit is contained in:
qurious-pixel
2024-06-12 17:21:34 -07:00
committed by GitHub
parent e29e0d82a0
commit 8ebd596e6b

View File

@@ -3,7 +3,7 @@
<class>MainWindow</class> <class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow"> <widget class="QMainWindow" name="MainWindow">
<property name="windowModality"> <property name="windowModality">
<enum>Qt::WindowModality::NonModal</enum> <enum>Qt::NonModal</enum>
</property> </property>
<property name="geometry"> <property name="geometry">
<rect> <rect>
@@ -22,6 +22,10 @@
<property name="windowTitle"> <property name="windowTitle">
<string>KDiskInfo</string> <string>KDiskInfo</string>
</property> </property>
<property name="windowIcon">
<iconset resource="resources.qrc">
<normaloff>:/icons/icon.svg</normaloff>:/icons/icon.svg</iconset>
</property>
<widget class="QWidget" name="centralwidget"> <widget class="QWidget" name="centralwidget">
<layout class="QHBoxLayout" name="horizontalLayout_2"> <layout class="QHBoxLayout" name="horizontalLayout_2">
<item> <item>
@@ -38,9 +42,6 @@
<property name="autoFillBackground"> <property name="autoFillBackground">
<bool>false</bool> <bool>false</bool>
</property> </property>
<property name="frameShadow">
<enum>QFrame::Shadow::Raised</enum>
</property>
<property name="showGrid"> <property name="showGrid">
<bool>true</bool> <bool>true</bool>
</property> </property>
@@ -57,15 +58,13 @@
<string/> <string/>
</property> </property>
<property name="icon"> <property name="icon">
<iconset theme="go-previous"/> <iconset theme="go-previous">
<normaloff>.</normaloff>.</iconset>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<spacer name="horizontalSpacer_2"> <spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Orientation::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0"> <property name="sizeHint" stdset="0">
<size> <size>
<width>40</width> <width>40</width>
@@ -83,9 +82,6 @@
</item> </item>
<item> <item>
<spacer name="horizontalSpacer"> <spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Orientation::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0"> <property name="sizeHint" stdset="0">
<size> <size>
<width>40</width> <width>40</width>
@@ -100,7 +96,8 @@
<string/> <string/>
</property> </property>
<property name="icon"> <property name="icon">
<iconset theme="go-next"/> <iconset theme="go-next">
<normaloff>.</normaloff>.</iconset>
</property> </property>
</widget> </widget>
</item> </item>
@@ -326,7 +323,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>800</width> <width>800</width>
<height>30</height> <height>22</height>
</rect> </rect>
</property> </property>
<widget class="QMenu" name="menuFile"> <widget class="QMenu" name="menuFile">
@@ -366,7 +363,8 @@
</widget> </widget>
<action name="actionSave_JSON"> <action name="actionSave_JSON">
<property name="icon"> <property name="icon">
<iconset theme="document-save"/> <iconset theme="document-save">
<normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
<string>&amp;Save JSON</string> <string>&amp;Save JSON</string>
@@ -374,18 +372,20 @@
</action> </action>
<action name="actionQuit"> <action name="actionQuit">
<property name="icon"> <property name="icon">
<iconset theme="application-exit"/> <iconset theme="application-exit">
<normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
<string>&amp;Quit</string> <string>&amp;Quit</string>
</property> </property>
<property name="menuRole"> <property name="menuRole">
<enum>QAction::MenuRole::QuitRole</enum> <enum>QAction::NoRole</enum>
</property> </property>
</action> </action>
<action name="actionRescan_Refresh"> <action name="actionRescan_Refresh">
<property name="icon"> <property name="icon">
<iconset theme="view-refresh"/> <iconset theme="view-refresh">
<normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
<string>&amp;Refresh Devices</string> <string>&amp;Refresh Devices</string>
@@ -393,7 +393,8 @@
</action> </action>
<action name="actionGitHub"> <action name="actionGitHub">
<property name="icon"> <property name="icon">
<iconset theme="applications-internet"/> <iconset theme="applications-internet">
<normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
<string>&amp;GitHub</string> <string>&amp;GitHub</string>
@@ -401,13 +402,14 @@
</action> </action>
<action name="actionAbout"> <action name="actionAbout">
<property name="icon"> <property name="icon">
<iconset theme="help-about"/> <iconset theme="help-about">
<normaloff>.</normaloff>.</iconset>
</property> </property>
<property name="text"> <property name="text">
<string>&amp;About</string> <string>&amp;About</string>
</property> </property>
<property name="menuRole"> <property name="menuRole">
<enum>QAction::MenuRole::AboutRole</enum> <enum>QAction::NoRole</enum>
</property> </property>
</action> </action>
<action name="actionIgnore_C4_Reallocation_Event_Count"> <action name="actionIgnore_C4_Reallocation_Event_Count">
@@ -440,6 +442,8 @@
</property> </property>
</action> </action>
</widget> </widget>
<resources/> <resources>
<include location="resources.qrc"/>
</resources>
<connections/> <connections/>
</ui> </ui>