blob: aad7f07bd6345e6a9888623502aaea34c1d66d17 (
plain)
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
|
TEMPLATE = app
INCLUDEPATH += .
DEFINES += QT_ONLY
TARGET = kregexpeditor
win32-msvc:QMAKE_CXXFLAGS += /GX /GR
QMAKE_CLEAN+=vc60.pdb kdexecutor.dsp
# If this is a compile for House Of Fusion, then add the following line
DEFINES+=HOUSEOFFUSION
# Input
HEADERS += altnregexp.h \
altnwidget.h \
auxbuttons.h \
ccp.h \
characterswidget.h \
charselector.h \
compoundregexp.h \
compoundwidget.h \
concregexp.h \
concwidget.h \
dcbutton.h \
dotregexp.h \
drag.h \
dragaccepter.h \
editorwindow.h \
emacsregexpconverter.h \
errormap.h \
gen_qregexpparser.h \
indexWindow.h \
infopage.h \
tdemultiformlistbox-multivisible.h \
tdemultiformlistbox-shower.h \
tdemultiformlistbox-windowed.h \
tdemultiformlistbox.h \
tdemultiformlistboxentry.h \
tdemultiformlistboxfactory.h \
kregexpeditorgui.h \
kregexpeditorprivate.h \
kwidgetstreamer.h \
limitedcharlineedit.h \
lookaheadregexp.h \
lookaheadwidget.h \
multicontainerwidget.h \
myfontmetrics.h \
pair.h \
positionregexp.h \
qtregexpconverter.h \
qtregexphighlighter.h \
regexp.h \
regexpbuttons.h \
regexpconverter.h \
regexphighlighter.h \
regexpwidget.h \
repeatregexp.h \
repeatwidget.h \
scrollededitorwindow.h \
selectablelineedit.h \
singlecontainerwidget.h \
textrangeregexp.h \
textregexp.h \
textwidget.h \
triple.h \
userdefinedregexps.h \
verifier.h \
verifybuttons.h \
widgetfactory.h \
widgetwindow.h \
windowlistboxitem.h \
zerowidgets.h\
compat.h \
images.h
#LEXSOURCES += qregexpparser.l
#YACCSOURCES += qregexpparser.y
YACC=bison
SOURCES += altnregexp.cpp \
altnwidget.cpp \
auxbuttons.cpp \
ccp.cpp \
characterswidget.cpp \
charselector.cpp \
compoundregexp.cpp \
compoundwidget.cpp \
concregexp.cpp \
concwidget.cpp \
dcbutton.cpp \
dotregexp.cpp \
drag.cpp \
dragaccepter.cpp \
editorwindow.cpp \
emacsregexpconverter.cpp \
errormap.cpp \
gen_qregexplexer.cpp \
indexWindow.cpp \
infopage.cpp \
tdemultiformlistbox-multivisible.cpp \
tdemultiformlistbox-windowed.cpp \
tdemultiformlistbox.cpp \
tdemultiformlistboxentry.cpp \
tdemultiformlistboxfactory.cpp \
kregexpeditorgui.cpp \
kregexpeditorprivate.cpp \
kwidgetstreamer.cpp \
limitedcharlineedit.cpp \
lookaheadregexp.cpp \
lookaheadwidget.cpp \
main.cpp \
multicontainerwidget.cpp \
myfontmetrics.cpp \
positionregexp.cpp \
qtregexpconverter.cpp \
qtregexphighlighter.cpp \
regexp.cpp \
regexpbuttons.cpp \
regexpconverter.cpp \
regexphighlighter.cpp \
regexpwidget.cpp \
repeatregexp.cpp \
repeatwidget.cpp \
scrollededitorwindow.cpp \
selectablelineedit.cpp \
singlecontainerwidget.cpp \
textrangeregexp.cpp \
textregexp.cpp \
textwidget.cpp \
userdefinedregexps.cpp \
verifier.cpp \
verifybuttons.cpp \
widgetfactory.cpp \
widgetwindow.cpp \
windowlistboxitem.cpp \
zerowidgets.cpp \
gen_qregexpparser.cpp \
compat.cpp
|