-
Notifications
You must be signed in to change notification settings - Fork 1
/
QtColorPicker.pro
79 lines (68 loc) · 1.84 KB
/
QtColorPicker.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#-------------------------------------------------
#
# Project created by QtCreator 2015-05-28T15:25:48
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QtColorPicker
TEMPLATE = app
QMAKE_CXXFLAGS -= -Wunused-parameter
CONFIG += c++11
win32:RC_ICONS += icon.ico
SOURCES += main.cpp\
Views/mainwindow.cpp \
Views/sliderswindow.cpp \
Views/pickerview.cpp \
\
Widgets/ColorWidgets/colorwidget.cpp \
Widgets/ColorWidgets/colorsample.cpp \
Widgets/ColorWidgets/hselector.cpp \
Widgets/ColorWidgets/svselector.cpp \
Widgets/colortext.cpp \
\
Widgets/Sliders/colorslider.cpp \
Widgets/Sliders/HSV/hsvslider.cpp \
Widgets/Sliders/RGB/rgbslider.cpp \
Widgets/Sliders/CMYK/cmykslider.cpp \
\
Service/services.cpp \
Service/validator.cpp \
Service/vars.cpp \
\
Models/colorprocessor.cpp \
\
Controllers/sliderscontroller.cpp \
Controllers/maincontroller.cpp \
Views/testwidget.cpp \
Views/testdialog.cpp
HEADERS += Views/mainwindow.h \
Views/sliderswindow.h \
Views/pickerview.h \
\
Widgets/ColorWidgets/colorwidget.h \
Widgets/ColorWidgets/colorsample.h \
Widgets/ColorWidgets/hselector.h \
Widgets/ColorWidgets/svselector.h \
Widgets/colortext.h \
\
Widgets/Sliders/colorslider.h \
Widgets/Sliders/HSV/hsvslider.h \
Widgets/Sliders/RGB/rgbslider.h \
Widgets/Sliders/CMYK/cmykslider.h \
\
Service/services.h \
Service/validator.h \
Service/vars.h \
\
Models/colorprocessor.h \
\
Controllers/sliderscontroller.h \
Controllers/maincontroller.h \
Views/testwidget.h \
Views/testdialog.h
FORMS += Views/mainwindow.ui \
Views/test_form.ui \
Views/sliderswindow.ui \
Views/testwidget.ui \
Views/testdialog.ui