first commit

This commit is contained in:
2025-09-13 15:34:27 +02:00
commit d423636b03
18 changed files with 475 additions and 0 deletions

108
mainwindow.ui Normal file
View File

@@ -0,0 +1,108 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1002</width>
<height>594</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>1002</width>
<height>594</height>
</size>
</property>
<property name="windowTitle">
<string>CloudSave</string>
</property>
<widget class="QWidget" name="centralwidget">
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="QTableView" name="tableView"/>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QStatusBar" name="statusbar"/>
<widget class="QToolBar" name="toolBar">
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>90</height>
</size>
</property>
<property name="windowTitle">
<string>toolBar</string>
</property>
<property name="movable">
<bool>false</bool>
</property>
<property name="iconSize">
<size>
<width>70</width>
<height>37</height>
</size>
</property>
<property name="toolButtonStyle">
<enum>Qt::ToolButtonTextUnderIcon</enum>
</property>
<property name="floatable">
<bool>false</bool>
</property>
<attribute name="toolBarArea">
<enum>TopToolBarArea</enum>
</attribute>
<attribute name="toolBarBreak">
<bool>false</bool>
</attribute>
<addaction name="actionAdd"/>
<addaction name="separator"/>
<addaction name="actionScan"/>
<addaction name="actionSync"/>
</widget>
<action name="actionAdd">
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/icon/resources/plus-solid-full.svg</normaloff>:/icon/resources/plus-solid-full.svg</iconset>
</property>
<property name="text">
<string>Add</string>
</property>
</action>
<action name="actionScan">
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/icon/resources/magnifying-glass-solid-full.svg</normaloff>:/icon/resources/magnifying-glass-solid-full.svg</iconset>
</property>
<property name="text">
<string>Scan</string>
</property>
</action>
<action name="actionSync">
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/icon/resources/arrows-rotate-solid-full.svg</normaloff>:/icon/resources/arrows-rotate-solid-full.svg</iconset>
</property>
<property name="text">
<string>Sync</string>
</property>
</action>
</widget>
<resources>
<include location="resources.qrc"/>
</resources>
<connections/>
</ui>