Skip to content

Commit 5c0a701

Browse files
v2 beta 5
1 parent f24352f commit 5c0a701

File tree

7 files changed

+10653
-0
lines changed

7 files changed

+10653
-0
lines changed

images/icons8-multiply-80.png

572 Bytes
Loading

images/vertical-grip.png

1.07 KB
Loading

qt_source/resources.qrc

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<RCC>
2+
<qresource prefix="retoolAbout">
3+
<file>../images/retool-about.png</file>
4+
</qresource>
5+
<qresource prefix="Arrows">
6+
<file>../images/vertical-grip.png</file>
7+
<file>../images/icons8-end-100.png</file>
8+
<file>../images/icons8-skip-to-start-100.png</file>
9+
<file>../images/icons8-sort-down-100.png</file>
10+
<file>../images/icons8-sort-left-100.png</file>
11+
<file>../images/icons8-sort-right-100.png</file>
12+
<file>../images/icons8-sort-up-100.png</file>
13+
</qresource>
14+
<qresource prefix="retoolFiles">
15+
<file>../images/icons8-multiply-80.png</file>
16+
<file>../images/icons8-project-setup-80.png</file>
17+
<file>../images/icons8-diff-files-80.png</file>
18+
<file>../images/icons8-live-folder-80.png</file>
19+
<file>../images/icons8-recursive-folder-80.png</file>
20+
<file>../images/icons8-restart-80.png</file>
21+
<file>../images/icons8-file-delete-80.png</file>
22+
<file>../images/icons8-add-folder-80.png</file>
23+
<file>../images/icons8-add-list-80.png</file>
24+
<file>../images/icons8-delete-file-80.png</file>
25+
</qresource>
26+
<qresource prefix="retoolIcon">
27+
<file>../images/retool.ico</file>
28+
</qresource>
29+
</RCC>

qt_source/retool-about.ui

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<ui version="4.0">
3+
<class>AboutWindow</class>
4+
<widget class="QDialog" name="AboutWindow">
5+
<property name="windowModality">
6+
<enum>Qt::NonModal</enum>
7+
</property>
8+
<property name="enabled">
9+
<bool>true</bool>
10+
</property>
11+
<property name="geometry">
12+
<rect>
13+
<x>0</x>
14+
<y>0</y>
15+
<width>362</width>
16+
<height>312</height>
17+
</rect>
18+
</property>
19+
<property name="sizePolicy">
20+
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
21+
<horstretch>0</horstretch>
22+
<verstretch>0</verstretch>
23+
</sizepolicy>
24+
</property>
25+
<property name="minimumSize">
26+
<size>
27+
<width>362</width>
28+
<height>312</height>
29+
</size>
30+
</property>
31+
<property name="maximumSize">
32+
<size>
33+
<width>362</width>
34+
<height>312</height>
35+
</size>
36+
</property>
37+
<property name="contextMenuPolicy">
38+
<enum>Qt::NoContextMenu</enum>
39+
</property>
40+
<property name="windowTitle">
41+
<string>About Retool</string>
42+
</property>
43+
<property name="windowIcon">
44+
<iconset resource="resources.qrc">
45+
<normaloff>:/retoolIcon/images/retool.ico</normaloff>:/retoolIcon/images/retool.ico</iconset>
46+
</property>
47+
<property name="locale">
48+
<locale language="English" country="UnitedStates"/>
49+
</property>
50+
<property name="modal">
51+
<bool>true</bool>
52+
</property>
53+
<widget class="QLabel" name="labelName">
54+
<property name="geometry">
55+
<rect>
56+
<x>10</x>
57+
<y>172</y>
58+
<width>341</width>
59+
<height>51</height>
60+
</rect>
61+
</property>
62+
<property name="font">
63+
<font>
64+
<family>Segoe UI</family>
65+
</font>
66+
</property>
67+
<property name="text">
68+
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Retool&lt;br/&gt;&lt;/span&gt;&lt;a href=&quot;https://unexpectedpanda.github.io/retool&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;https://unexpectedpanda.github.io/retool&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
69+
</property>
70+
<property name="textFormat">
71+
<enum>Qt::RichText</enum>
72+
</property>
73+
<property name="scaledContents">
74+
<bool>false</bool>
75+
</property>
76+
<property name="alignment">
77+
<set>Qt::AlignCenter</set>
78+
</property>
79+
<property name="openExternalLinks">
80+
<bool>true</bool>
81+
</property>
82+
<property name="textInteractionFlags">
83+
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
84+
</property>
85+
</widget>
86+
<widget class="QLabel" name="labelVersion">
87+
<property name="geometry">
88+
<rect>
89+
<x>15</x>
90+
<y>232</y>
91+
<width>331</width>
92+
<height>20</height>
93+
</rect>
94+
</property>
95+
<property name="font">
96+
<font>
97+
<family>Segoe UI</family>
98+
</font>
99+
</property>
100+
<property name="text">
101+
<string>Retool version:</string>
102+
</property>
103+
<property name="alignment">
104+
<set>Qt::AlignCenter</set>
105+
</property>
106+
</widget>
107+
<widget class="QLabel" name="aboutLogo">
108+
<property name="geometry">
109+
<rect>
110+
<x>105</x>
111+
<y>15</y>
112+
<width>151</width>
113+
<height>151</height>
114+
</rect>
115+
</property>
116+
<property name="text">
117+
<string/>
118+
</property>
119+
<property name="pixmap">
120+
<pixmap resource="resources.qrc">:/retoolAbout/images/retool-about.png</pixmap>
121+
</property>
122+
<property name="scaledContents">
123+
<bool>true</bool>
124+
</property>
125+
<property name="alignment">
126+
<set>Qt::AlignCenter</set>
127+
</property>
128+
</widget>
129+
<widget class="QLabel" name="labelCreditIcons8">
130+
<property name="geometry">
131+
<rect>
132+
<x>9</x>
133+
<y>270</y>
134+
<width>341</width>
135+
<height>20</height>
136+
</rect>
137+
</property>
138+
<property name="font">
139+
<font>
140+
<family>Segoe UI</family>
141+
</font>
142+
</property>
143+
<property name="text">
144+
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Some icons provided by &lt;a href=&quot;https://icons8.com&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Icons8&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
145+
</property>
146+
<property name="textFormat">
147+
<enum>Qt::RichText</enum>
148+
</property>
149+
<property name="alignment">
150+
<set>Qt::AlignCenter</set>
151+
</property>
152+
<property name="openExternalLinks">
153+
<bool>true</bool>
154+
</property>
155+
<property name="textInteractionFlags">
156+
<set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
157+
</property>
158+
</widget>
159+
</widget>
160+
<resources>
161+
<include location="resources.qrc"/>
162+
</resources>
163+
<connections/>
164+
</ui>

0 commit comments

Comments
 (0)