forked from torinkwok/wxNote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwxNote.pro
More file actions
141 lines (129 loc) · 8.24 KB
/
Copy pathwxNote.pro
File metadata and controls
141 lines (129 loc) · 8.24 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
############################################################################
# #
# .======. #
# | INRI | #
# | | #
# | | #
# .========' '========. #
# | _ xxxx _ | #
# | /_;-.__ / _\ _.-;_\ | #
# | `-._`'`_/'`.-' | #
# '========.`\ /`========' #
# | | / | #
# |/-.( | #
# |\_._\ | #
# | \ \`;| #
# | > |/| #
# | / // | #
# | |// | #
# | \(\ | #
# | `` | #
# | | #
# | | #
# | | #
# | | #
# \\ _ _\\| \// |//_ _ \// _ #
# ^ `^`^ ^`` `^ ^` ``^^` `^^` `^ `^ #
# #
# Copyright © 1997-2013 by Tong G. #
# ALL RIGHTS RESERVED. #
# #
############################################################################
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = wxNote
TEMPLATE = app
CONFIG += C++11
release: DESTDIR = build/release
debug: DESTDIR = build/debug
OBJECTS_DIR = $$DESTDIR/.obj
MOC_DIR = $$DESTDIR/.moc
RCC_DIR = $$DESTDIR/.qrc
SOURCES += main.cpp \
wxNote_Gui/wxNote_Window/AbstractMainWindow.cpp \
wxNote_Gui/wxNote_Window/TextEditorWindow.cpp \
wxNote_Gui/wxNote_Window/MainWindowNormal.cpp \
wxNote_Gui/wxNote_Window/MainWindowShadow.cpp \
wxNote_Gui/wxNote_Window/FinalTabWindow.cpp \
\
wxNote_Gui/wxNote_Dialog/AboutDialog.cpp \
wxNote_Gui/wxNote_Dialog/CommonDialog.cpp \
wxNote_Gui/wxNote_Dialog/GetNameForNewNotebook.cpp \
wxNote_Gui/wxNote_Dialog/SetPasswordDialog.cpp \
wxNote_Gui/wxNote_Dialog/GetPasswordDialog.cpp \
wxNote_Gui/wxNote_Dialog/InsertTableDialog.cpp \
wxNote_Gui/wxNote_Dialog/OptionsDialog.cpp \
\
wxNote_Gui/wxNote_Button/EliminateOrRestorePushButton.cpp \
wxNote_Gui/wxNote_Button/wxNote_ToolButton.cpp \
wxNote_Gui/wxNote_Button/NestingButton.cpp \
\
wxNote_Gui/wxNote_Edit/NoteTitleLineEdit.cpp \
wxNote_Gui/wxNote_Edit/NoteEditor.cpp \
\
wxNote_Gui/wxNote_List/NoteList.cpp \
\
wxNote_Gui/wxNote_Tree/NoteBookTree.cpp \
wxNote_Gui/wxNote_Tree/CategoriesTree.cpp \
\
wxNote_Gui/wxNote_Other/NoteEditorSplitter.cpp \
wxNote_Gui/wxNote_Other/SearchPanel.cpp \
wxNote_Gui/wxNote_Other/FontComboBox.cpp \
wxNote_Gui/wxNote_Other/FontSizeComboBox.cpp \
\
wxNote_Item/NoteListItem.cpp \
\
wxNote_Global.cpp
HEADERS += \
wxNote_Gui/wxNote_Window/AbstractMainWindow.h \
wxNote_Gui/wxNote_Window/TextEditorWindow.h \
wxNote_Gui/wxNote_Window/MainWindowNormal.h \
wxNote_Gui/wxNote_Window/MainWindowShadow.h \
wxNote_Gui/wxNote_Window/FinalTabWindow.h \
\
wxNote_Gui/wxNote_Dialog/AboutDialog.h \
wxNote_Gui/wxNote_Dialog/CommonDialog.h \
wxNote_Gui/wxNote_Dialog/GetNameForNewNotebook.h \
wxNote_Gui/wxNote_Dialog/SetPasswordDialog.h \
wxNote_Gui/wxNote_Dialog/GetPasswordDialog.h \
wxNote_Gui/wxNote_Dialog/InsertTableDialog.h \
wxNote_Gui/wxNote_Dialog/OptionsDialog.h \
\
wxNote_Gui/wxNote_Button/EliminateOrRestorePushButton.h \
wxNote_Gui/wxNote_Button/wxNote_ToolButton.h \
wxNote_Gui/wxNote_Button/NestingButton.h \
\
wxNote_Gui/wxNote_Edit/NoteTitleLineEdit.h \
wxNote_Gui/wxNote_Edit/NoteEditor.h \
\
wxNote_Gui/wxNote_List/NoteList.h \
\
wxNote_Gui/wxNote_Tree/NoteBookTree.h \
wxNote_Gui/wxNote_Tree/CategoriesTree.h \
\
wxNote_Gui/wxNote_Other/NoteEditorSplitter.h \
wxNote_Gui/wxNote_Other/SearchPanel.h \
wxNote_Gui/wxNote_Other/FontComboBox.h \
wxNote_Gui/wxNote_Other/FontSizeComboBox.h \
\
wxNote_Item/NoteListItem.h \
\
wxNote_Global.h
RESOURCES += \
resource.qrc
RC_FILE += "rc.rc"
OTHER_FILES += \
LICENSE.GPL
###########################################################################
# #
# _________ _______ #
# |___ ___| / ______ \ #
# | | _______ _______ _______ | / |_| #
# | | || || || || || || | | _ __ #
# | | || || || || || || | | |__ \ #
# | | || || || || || || | \_ _ __| | _ #
# |_| ||_____|| || || ||_____|| \________/ |_| #
# || #
# ||_____|| #
# #
###########################################################################