Skip to content

Commit 23576ba

Browse files
committed
new directory 'graphics'
1 parent 6fffad6 commit 23576ba

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

src/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ qt_add_executable(GreasePad
3131
gui/mainview.cpp
3232
gui/qformattool.cpp
3333
matrix.cpp
34-
qconstraints.cpp
35-
qsegment.cpp
36-
qstroke.cpp
34+
graphics/qconstraints.cpp
35+
graphics/qsegment.cpp
36+
graphics/qstroke.cpp
3737
quantiles.cpp
3838
state.cpp
3939
uncertain/quncertain.cpp
File renamed without changes.
File renamed without changes.

src/greasepad.pro

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ SOURCES += \
2929
adjustment.cpp \
3030
commands.cpp \
3131
constraints.cpp \
32+
graphics/qconstraints.cpp \
33+
graphics/qsegment.cpp \
34+
graphics/qstroke.cpp \
3235
gui/mainwindow.cpp \
3336
gui/mainscene.cpp \
3437
gui/mainview.cpp \
3538
gui/qformattool.cpp \
3639
main.cpp \
3740
matrix.cpp \
38-
qconstraints.cpp \
39-
qsegment.cpp \
40-
qstroke.cpp \
4141
quantiles.cpp \
4242
state.cpp \
4343
uncertain/quncertain.cpp \
@@ -59,16 +59,16 @@ HEADERS += \
5959
geometry/minrot.h \
6060
geometry/skew.h \
6161
global.h \
62+
graphics/qconstraints.h \
63+
graphics/qsegment.h \
64+
graphics/qstroke.h \
6265
gui/mainscene.h \
6366
gui/mainview.h \
6467
gui/mainwindow.h \
6568
gui/qformattool.h \
6669
kernel.h \
6770
matfun.h \
6871
matrix.h \
69-
qconstraints.h \
70-
qsegment.h \
71-
qstroke.h \
7272
quantiles.h \
7373
state.h \
7474
statistics.h \

src/gui/mainwindow.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
*/
1818

1919
#include "commands.h"
20+
#include "graphics/qconstraints.h"
21+
#include "graphics/qsegment.h"
22+
#include "graphics/qstroke.h"
2023
#include "mainscene.h"
2124
#include "mainview.h"
2225
#include "mainwindow.h"
2326
#include "qconfig.h" // QT_VERSION_STR
24-
#include "qconstraints.h"
2527
#include "qformattool.h"
2628
#include "qgraphicsitem.h"
2729
#include "qlogging.h"
2830
#include "qnamespace.h"
29-
#include "qsegment.h"
30-
#include "qstroke.h"
3131
#include "qtdeprecationdefinitions.h"
3232
#include "qtpreprocessorsupport.h"
3333
#include "qtypes.h"

src/gui/qformattool.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
#include <memory>
4242

4343
#include "mainscene.h"
44-
#include "qconstraints.h"
44+
#include "graphics/qconstraints.h"
45+
#include "graphics/qsegment.h"
46+
#include "graphics/qstroke.h"
4547
#include "qformattool.h"
46-
#include "qsegment.h"
47-
#include "qstroke.h"
4848

4949
namespace GUI {
5050

0 commit comments

Comments
 (0)