Changed Folder gui to GUI
@@ -1,7 +1,7 @@
|
||||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import QtQuick.Controls
|
||||
import gui
|
||||
import Gui
|
||||
|
||||
ApplicationWindow
|
||||
{
|
||||
|
Before Width: | Height: | Size: 1.6 KiB |
1
images/account.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#000000"><path d="M234-276q51-39 114-61.5T480-360q69 0 132 22.5T726-276q35-41 54.5-93T800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 59 19.5 111t54.5 93Zm246-164q-59 0-99.5-40.5T340-580q0-59 40.5-99.5T480-720q59 0 99.5 40.5T620-580q0 59-40.5 99.5T480-440Zm0 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q53 0 100-15.5t86-44.5q-39-29-86-44.5T480-280q-53 0-100 15.5T294-220q39 29 86 44.5T480-160Zm0-360q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm0-60Zm0 360Z"/></svg>
|
||||
|
After Width: | Height: | Size: 751 B |
|
Before Width: | Height: | Size: 847 B |
BIN
images/info.png
|
Before Width: | Height: | Size: 1.4 KiB |
BIN
images/menu.png
|
Before Width: | Height: | Size: 435 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.6 KiB |
BIN
images/timer.png
|
Before Width: | Height: | Size: 1.3 KiB |
2
main.py
@@ -49,7 +49,7 @@ if __name__ == "__main__":
|
||||
|
||||
|
||||
|
||||
qml_file = Path(__file__).resolve().parent / "gui/main.qml"
|
||||
qml_file = Path(__file__).resolve().parent / "Gui/main.qml"
|
||||
|
||||
#qml_file = ":/gui/main.qml"
|
||||
|
||||
|
||||
@@ -1,22 +1,29 @@
|
||||
{
|
||||
"files": [
|
||||
"gui/firststart.qml",
|
||||
"Gui/firststart.qml",
|
||||
"lib/ConfigLoader.py",
|
||||
"lib/__init__.py",
|
||||
"main.py",
|
||||
"gui/main.qml",
|
||||
"gui/Dashboard.qml",
|
||||
"Gui/main.qml",
|
||||
"Gui/Dashboard.qml",
|
||||
"js/qmldict.js",
|
||||
"lib/Vermasseln.py",
|
||||
"gui/CustomerTables.qml",
|
||||
"gui/SearchBar.qml",
|
||||
"gui/test.qml",
|
||||
"Gui/CustomerTables.qml",
|
||||
"Gui/SearchBar.qml",
|
||||
"Gui/test.qml",
|
||||
"lib/DataBase.py",
|
||||
"gui/EmployeTables.qml",
|
||||
"gui/AddCustomer.qml",
|
||||
"Gui/EmployeTables.qml",
|
||||
"Gui/AddCustomer.qml",
|
||||
"pyqcrm.qrc",
|
||||
"gui/qmldir",
|
||||
"gui/TopBar.qml",
|
||||
"qml.qrc"
|
||||
"Gui/qmldir",
|
||||
"Gui/TopBar.qml",
|
||||
"qml.qrc",
|
||||
"images/account.svg",
|
||||
"images/add.svg",
|
||||
"images/addbusiness.svg",
|
||||
"images/addperson.svg",
|
||||
"images/filter.svg",
|
||||
"images/menu.svg",
|
||||
"images/search.svg"
|
||||
]
|
||||
}
|
||||
|
||||
4
qml.qrc
@@ -1,6 +1,6 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>gui/TopBar.qml</file>
|
||||
<file>gui/qmldir</file>
|
||||
<file>Gui/TopBar.qml</file>
|
||||
<file>Gui/qmldir</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
||||