drawsvg-ui 0.4.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ui/__init__.py ADDED
@@ -0,0 +1 @@
1
+ """Package marker for bundled Qt Designer .ui files."""
ui/main_window.ui ADDED
@@ -0,0 +1,157 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ui version="4.0">
3
+ <class>MainWindow</class>
4
+ <widget class="QMainWindow" name="MainWindow">
5
+ <property name="geometry">
6
+ <rect>
7
+ <x>0</x>
8
+ <y>0</y>
9
+ <width>1200</width>
10
+ <height>800</height>
11
+ </rect>
12
+ </property>
13
+ <property name="windowTitle">
14
+ <string>DrawSVG Canvas – PySide6</string>
15
+ </property>
16
+ <widget class="QWidget" name="centralwidget">
17
+ <layout class="QVBoxLayout" name="centralLayout">
18
+ <property name="spacing">
19
+ <number>0</number>
20
+ </property>
21
+ <item>
22
+ <widget class="QSplitter" name="mainSplitter">
23
+ <property name="orientation">
24
+ <enum>Qt::Horizontal</enum>
25
+ </property>
26
+ <widget class="QWidget" name="paletteContainer">
27
+ <layout class="QVBoxLayout" name="paletteLayout">
28
+ <property name="spacing">
29
+ <number>0</number>
30
+ </property>
31
+ <item>
32
+ <widget class="QListWidget" name="palettePlaceholder"/>
33
+ </item>
34
+ </layout>
35
+ </widget>
36
+ <widget class="QWidget" name="canvasContainer">
37
+ <layout class="QVBoxLayout" name="canvasLayout">
38
+ <property name="spacing">
39
+ <number>0</number>
40
+ </property>
41
+ <item>
42
+ <widget class="QGraphicsView" name="canvasPlaceholder"/>
43
+ </item>
44
+ </layout>
45
+ </widget>
46
+ <widget class="QWidget" name="propertiesContainer">
47
+ <layout class="QVBoxLayout" name="propertiesLayout">
48
+ <property name="spacing">
49
+ <number>0</number>
50
+ </property>
51
+ <item>
52
+ <widget class="QWidget" name="propertiesPlaceholder" native="true"/>
53
+ </item>
54
+ </layout>
55
+ </widget>
56
+ </widget>
57
+ </item>
58
+ </layout>
59
+ </widget>
60
+ <widget class="QMenuBar" name="menubar">
61
+ <property name="geometry">
62
+ <rect>
63
+ <x>0</x>
64
+ <y>0</y>
65
+ <width>1200</width>
66
+ <height>22</height>
67
+ </rect>
68
+ </property>
69
+ <widget class="QMenu" name="menuFile">
70
+ <property name="title">
71
+ <string>&amp;File</string>
72
+ </property>
73
+ <addaction name="actionLoad_drawsvg_py"/>
74
+ <addaction name="actionSave_drawsvg_py"/>
75
+ <addaction name="separator"/>
76
+ <addaction name="actionQuit"/>
77
+ </widget>
78
+ <widget class="QMenu" name="menuEdit">
79
+ <property name="title">
80
+ <string>&amp;Edit</string>
81
+ </property>
82
+ <addaction name="actionUndo"/>
83
+ <addaction name="actionRedo"/>
84
+ <addaction name="separator"/>
85
+ <addaction name="actionClear_canvas"/>
86
+ <addaction name="actionShow_grid"/>
87
+ </widget>
88
+ <widget class="QMenu" name="menuAbout">
89
+ <property name="title">
90
+ <string>About</string>
91
+ </property>
92
+ <addaction name="actionInfo"/>
93
+ </widget>
94
+ <addaction name="menuFile"/>
95
+ <addaction name="menuEdit"/>
96
+ <addaction name="menuAbout"/>
97
+ </widget>
98
+ <widget class="QStatusBar" name="statusbar"/>
99
+ <action name="actionLoad_drawsvg_py">
100
+ <property name="text">
101
+ <string>Load drawsvg-.py</string>
102
+ </property>
103
+ </action>
104
+ <action name="actionSave_drawsvg_py">
105
+ <property name="text">
106
+ <string>Save drawsvg-.py</string>
107
+ </property>
108
+ </action>
109
+ <action name="actionQuit">
110
+ <property name="text">
111
+ <string>Quit</string>
112
+ </property>
113
+ <property name="shortcut">
114
+ <string>Ctrl+Q</string>
115
+ </property>
116
+ </action>
117
+ <action name="actionUndo">
118
+ <property name="text">
119
+ <string>Undo</string>
120
+ </property>
121
+ <property name="shortcut">
122
+ <string>Ctrl+Z</string>
123
+ </property>
124
+ </action>
125
+ <action name="actionRedo">
126
+ <property name="text">
127
+ <string>Redo</string>
128
+ </property>
129
+ <property name="shortcut">
130
+ <string>Ctrl+Y</string>
131
+ </property>
132
+ </action>
133
+ <action name="actionClear_canvas">
134
+ <property name="text">
135
+ <string>Clear canvas</string>
136
+ </property>
137
+ </action>
138
+ <action name="actionShow_grid">
139
+ <property name="checkable">
140
+ <bool>true</bool>
141
+ </property>
142
+ <property name="checked">
143
+ <bool>true</bool>
144
+ </property>
145
+ <property name="text">
146
+ <string>Show grid</string>
147
+ </property>
148
+ </action>
149
+ <action name="actionInfo">
150
+ <property name="text">
151
+ <string>Information</string>
152
+ </property>
153
+ </action>
154
+ </widget>
155
+ <resources/>
156
+ <connections/>
157
+ </ui>