Fri, 01 Jul 2022 16:46:43 +0300
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
24 | 1 | /* |
2 | * LDForge: LDraw parts authoring CAD | |
3 | * Copyright (C) 2013 - 2020 Teemu Piippo | |
4 | * | |
5 | * This program is free software: you can redistribute it and/or modify | |
6 | * it under the terms of the GNU General Public License as published by | |
7 | * the Free Software Foundation, either version 3 of the License, or | |
8 | * (at your option) any later version. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | */ | |
18 | ||
1 | 19 | #include <QString> |
272
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
20 | #include <QDateTime> |
280 | 21 | #include <QObject> |
1 | 22 | #include <time.h> |
264
76a025db4948
Convert all includes to be relative to project root directory. Files that cannot be found in this manner use angle brackets.
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
250
diff
changeset
|
23 | #include <hginfo.h> |
76a025db4948
Convert all includes to be relative to project root directory. Files that cannot be found in this manner use angle brackets.
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
250
diff
changeset
|
24 | #include "src/version.h" |
1 | 25 | |
272
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
26 | #ifdef HG_ALL_TAGS |
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
27 | # define HGTEXT HG_NODE " (" HG_ALL_TAGS ")" |
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
28 | #else |
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
29 | # define HGTEXT HG_NODE |
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
30 | #endif |
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
31 | |
281
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
32 | QString detailedVersionString(QLocale::FormatType formatType) |
1 | 33 | { |
281
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
34 | return QStringLiteral(CMAKE_PROJECT_VERSION "-" HGTEXT) |
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
35 | + " (" + revisionDateString(formatType) + ")"; |
1 | 36 | } |
37 | ||
281
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
38 | QString versionString(QLocale::FormatType formatType) |
1 | 39 | { |
272
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
40 | #ifndef HG_VERSION_TAG |
281
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
41 | return detailedVersionString(formatType); |
272
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
42 | #else |
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
43 | return QStringLiteral(HG_VERSION_TAG); |
1 | 44 | #endif |
45 | } | |
46 | ||
281
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
47 | static QString makeFullVersionString(QLocale::FormatType formatType) |
272
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
48 | { |
281
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
49 | QString versionstring = CMAKE_PROJECT_NAME " " + versionString(formatType); |
272
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
50 | return versionstring; |
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
51 | } |
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
52 | |
281
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
53 | const QString& fullVersionString(QLocale::FormatType formatType) |
1 | 54 | { |
281
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
55 | static const QString cached = makeFullVersionString(formatType); |
272
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
56 | return cached; |
1 | 57 | } |
272
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
58 | |
281
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
59 | QString revisionDateString(QLocale::FormatType formatType) |
272
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
60 | { |
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
61 | const QDateTime dt = QDateTime::fromSecsSinceEpoch(HG_DATE_TIME); |
281
afed72b544f0
- Add CMake build type to about page and window title
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
280
diff
changeset
|
62 | return QLocale{}.toString(dt.date(), formatType); |
272
9d52b119b3f5
Sort out versions more, add about page
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
268
diff
changeset
|
63 | } |