src/about.ui

Fri, 01 Jul 2022 16:46:43 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Fri, 01 Jul 2022 16:46:43 +0300
changeset 312
2637134bc37c
parent 294
70b69a15c736
permissions
-rw-r--r--

Fix right click to delete not really working properly
Instead of removing the point that had been added, it would remove
the point that is being drawn, which would cause it to overwrite the
previous point using the new point, causing a bit of a delay

275
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
2 <ui version="4.0">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
3 <class>About</class>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
4 <widget class="QDialog" name="About">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
5 <property name="geometry">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
6 <rect>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
7 <x>0</x>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
8 <y>0</y>
279
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
9 <width>930</width>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
10 <height>436</height>
275
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
11 </rect>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
12 </property>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
13 <property name="windowTitle">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
14 <string>Dialog</string>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
15 </property>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
16 <layout class="QVBoxLayout" name="verticalLayout">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
17 <item>
279
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
18 <widget class="QTabWidget" name="tabWidget">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
19 <property name="tabPosition">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
20 <enum>QTabWidget::South</enum>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
21 </property>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
22 <property name="currentIndex">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
23 <number>0</number>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
24 </property>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
25 <widget class="QWidget" name="tab">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
26 <attribute name="title">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
27 <string>Version and build information</string>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
28 </attribute>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
29 <layout class="QVBoxLayout" name="verticalLayout_3">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
30 <item>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
31 <widget class="QTextBrowser" name="versionBrowser">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
32 <property name="html">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
33 <string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
275
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
34 &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
35 p, li { white-space: pre-wrap; }
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
36 &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'EPSONEXT 丸ゴシック体M'; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
279
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
37 &lt;h1 style=&quot; margin-top:18px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;img src=&quot;:/icons/appicon.png&quot; height=&quot;64&quot; /&gt;&lt;span style=&quot; font-size:xx-large; font-weight:600;&quot;&gt; %APPNAME% %VERSION%&lt;/span&gt;&lt;/h1&gt;
294
70b69a15c736 Reformat about.ui a bit
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 293
diff changeset
38 &lt;hr /&gt;
70b69a15c736 Reformat about.ui a bit
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 293
diff changeset
39 &lt;h2 style=&quot; margin-top:16px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:x-large; font-weight:600;&quot;&gt;Library information&lt;/span&gt;&lt;/h2&gt;
279
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
40 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Qt version: %QTVERSION%&lt;/p&gt;
294
70b69a15c736 Reformat about.ui a bit
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 293
diff changeset
41 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%GLMVERSIONSTRING%&lt;/p&gt;
293
9f85a54ead29 Add OpenGL information to about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 292
diff changeset
42 &lt;hr /&gt;
9f85a54ead29 Add OpenGL information to about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 292
diff changeset
43 &lt;h2 style=&quot; margin-top:16px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:x-large; font-weight:600;&quot;&gt;Build time information&lt;/span&gt;&lt;/h2&gt;
9f85a54ead29 Add OpenGL information to about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 292
diff changeset
44 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;The following information was gathered during the build of this program.&lt;/p&gt;
281
afed72b544f0 - Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 279
diff changeset
45 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Build type: %BUILDTYPE%&lt;/p&gt;
279
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
46 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Compiler: %COMPILER_ID% %COMPILER_VERSION%&lt;/p&gt;
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
47 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Compiler system: %COMPILER_SYSTEM% (%COMPILER_CPU%)&lt;/p&gt;
293
9f85a54ead29 Add OpenGL information to about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 292
diff changeset
48 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Compiler flags: %COMPILER_FLAGS%&lt;/p&gt;
9f85a54ead29 Add OpenGL information to about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 292
diff changeset
49 &lt;hr /&gt;
9f85a54ead29 Add OpenGL information to about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 292
diff changeset
50 &lt;h2 style=&quot; margin-top:16px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:x-large; font-weight:600;&quot;&gt;OpenGL information&lt;/span&gt;&lt;/h2&gt;
9f85a54ead29 Add OpenGL information to about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 292
diff changeset
51 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;OpenGL version: %GL_VERSION%&lt;/p&gt;
9f85a54ead29 Add OpenGL information to about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 292
diff changeset
52 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;OpenGL Extensions: %GL_EXTENSIONS%&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
279
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
53 </property>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
54 </widget>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
55 </item>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
56 </layout>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
57 </widget>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
58 <widget class="QWidget" name="tab_2">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
59 <attribute name="title">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
60 <string>Copyright</string>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
61 </attribute>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
62 <layout class="QVBoxLayout" name="verticalLayout_2">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
63 <item>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
64 <widget class="QTextBrowser" name="copyrightBrowser">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
65 <property name="html">
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
66 <string>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
67 &lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
68 p, li { white-space: pre-wrap; }
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
69 &lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:'EPSONEXT 丸ゴシック体M'; font-size:11pt; font-weight:400; font-style:normal;&quot;&gt;
275
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
70 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;%COPYRIGHT%&lt;/p&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
71 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.&lt;/p&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
72 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.&lt;/p&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
73 &lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;You should have received a copy of the GNU General Public License along with this program. If not, see &amp;lt;&lt;a href=&quot;http://www.gnu.org/licenses/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/&lt;/span&gt;&lt;/a&gt;&amp;gt;. &lt;/p&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
74 &lt;hr /&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
75 &lt;h2 style=&quot; margin-top:16px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:x-large; font-weight:600;&quot;&gt;Third party licenses&lt;/span&gt;&lt;/h2&gt;
277
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
76 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;The following third party code and resources are used in this application: &lt;/p&gt;
275
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
77 &lt;hr /&gt;
277
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
78 &lt;table border=&quot;0&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;&quot; cellspacing=&quot;2&quot; cellpadding=&quot;0&quot;&gt;&lt;thead&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
79 &lt;tr&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
80 &lt;td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
81 &lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;Third party code/resource&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
82 &lt;td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
83 &lt;p align=&quot;center&quot; style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-weight:600;&quot;&gt;License&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
84 &lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/thead&gt;
275
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
85 &lt;tr&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
86 &lt;td&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
87 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Qt&lt;/p&gt;&lt;/td&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
88 &lt;td&gt;
277
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
89 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;GNU Lesser GPL&lt;/p&gt;&lt;/td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
90 &lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
91 &lt;tr&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
92 &lt;td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
93 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;OpenGL Mathematics (GLM) by G-Truc Creation&lt;/p&gt;&lt;/td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
94 &lt;td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
95 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Happy Bunny License&lt;/p&gt;&lt;/td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
96 &lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
275
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
97 &lt;tr&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
98 &lt;td&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
99 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Mapbox earcut.hpp&lt;/p&gt;&lt;/td&gt;
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
100 &lt;td&gt;
277
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
101 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;ISC&lt;/p&gt;&lt;/td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
102 &lt;td&gt;&lt;/td&gt;&lt;/tr&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
103 &lt;tr&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
104 &lt;td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
105 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Ionicons by Ionic&lt;/p&gt;&lt;/td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
106 &lt;td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
107 &lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;MIT&lt;/p&gt;&lt;/td&gt;
3406191af523 Add missing third party acknowledgements
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 275
diff changeset
108 &lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;</string>
279
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
109 </property>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
110 </widget>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
111 </item>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
112 </layout>
cd70c845563a Add build system information to the about dialog
Teemu Piippo <teemu.s.piippo@gmail.com>
parents: 277
diff changeset
113 </widget>
275
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
114 </widget>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
115 </item>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
116 <item>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
117 <widget class="QDialogButtonBox" name="buttonBox">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
118 <property name="orientation">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
119 <enum>Qt::Horizontal</enum>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
120 </property>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
121 <property name="standardButtons">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
122 <set>QDialogButtonBox::Close</set>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
123 </property>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
124 </widget>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
125 </item>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
126 </layout>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
127 </widget>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
128 <resources/>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
129 <connections>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
130 <connection>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
131 <sender>buttonBox</sender>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
132 <signal>accepted()</signal>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
133 <receiver>About</receiver>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
134 <slot>accept()</slot>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
135 <hints>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
136 <hint type="sourcelabel">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
137 <x>248</x>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
138 <y>254</y>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
139 </hint>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
140 <hint type="destinationlabel">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
141 <x>157</x>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
142 <y>274</y>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
143 </hint>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
144 </hints>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
145 </connection>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
146 <connection>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
147 <sender>buttonBox</sender>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
148 <signal>rejected()</signal>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
149 <receiver>About</receiver>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
150 <slot>reject()</slot>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
151 <hints>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
152 <hint type="sourcelabel">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
153 <x>316</x>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
154 <y>260</y>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
155 </hint>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
156 <hint type="destinationlabel">
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
157 <x>286</x>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
158 <y>274</y>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
159 </hint>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
160 </hints>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
161 </connection>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
162 </connections>
dc1b8094c210 Add missing file
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
diff changeset
163 </ui>

mercurial