Skip to content

Commit f0cc75b

Browse files
committed
move to src folder
1 parent 0e77c5b commit f0cc75b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+244
-239
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Makefile
2+
Makefile.*
3+
object_script.*
4+
.obj
5+
bin

FontBuilder.pro

Lines changed: 78 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -32,83 +32,83 @@
3232
# -------------------------------------------------
3333
TARGET = FontBuilder
3434
TEMPLATE = app
35-
SOURCES += main.cpp \
36-
fontbuilder.cpp \
37-
colorbutton.cpp \
38-
fontselectframe.cpp \
39-
fontoptionsframe.cpp \
40-
fontrenderer.cpp \
41-
charactersframe.cpp \
42-
fontconfig.cpp \
43-
abstractlayouter.cpp \
44-
layoutconfig.cpp \
45-
layoutdata.cpp \
46-
layouters/linelayouter.cpp \
47-
layouterfactory.cpp \
48-
layouters/boxlayouter.cpp \
49-
layoutconfigframe.cpp \
50-
outputconfig.cpp \
51-
outputframe.cpp \
52-
abstractexporter.cpp \
53-
exporters/ghlexporter.cpp \
54-
exporterfactory.cpp \
55-
abstractimagewriter.cpp \
56-
imagewriterfactory.cpp \
57-
image/builtinimagewriter.cpp \
58-
exporters/zfiexporter.cpp \
59-
image/targawriter.cpp \
60-
fonttestframe.cpp \
61-
fonttestwidget.cpp \
62-
exporters/divoexporter.cpp \
63-
charmapdialog.cpp \
64-
charsselectwidget.cpp \
65-
exporters/nglexporter.cpp \
66-
exporters/luaexporter.cpp \
67-
fontdrawwidget.cpp \
68-
fontloader.cpp
69-
HEADERS += fontbuilder.h \
70-
colorbutton.h \
71-
fontselectframe.h \
72-
fontoptionsframe.h \
73-
fontrenderer.h \
74-
charactersframe.h \
75-
fontconfig.h \
76-
rendererdata.h \
77-
abstractlayouter.h \
78-
layoutconfig.h \
79-
layoutdata.h \
80-
layouters/linelayouter.h \
81-
layouterfactory.h \
82-
layoutchar.h \
83-
layouters/boxlayouter.h \
84-
layoutconfigframe.h \
85-
outputconfig.h \
86-
outputframe.h \
87-
abstractexporter.h \
88-
exporters/ghlexporter.h \
89-
exporterfactory.h \
90-
abstractimagewriter.h \
91-
imagewriterfactory.h \
92-
image/builtinimagewriter.h \
93-
exporters/zfiexporter.h \
94-
image/targawriter.h \
95-
fonttestframe.h \
96-
fonttestwidget.h \
97-
exporters/divoexporter.h \
98-
charmapdialog.h \
99-
charsselectwidget.h \
100-
exporters/nglexporter.h \
101-
exporters/luaexporter.h \
102-
fontdrawwidget.h \
103-
fontloader.h
104-
FORMS += fontbuilder.ui \
105-
fontselectframe.ui \
106-
fontoptionsframe.ui \
107-
charactersframe.ui \
108-
layoutconfigframe.ui \
109-
outputframe.ui \
110-
fonttestframe.ui \
111-
charmapdialog.ui
35+
SOURCES += src/main.cpp \
36+
src/fontbuilder.cpp \
37+
src/colorbutton.cpp \
38+
src/fontselectframe.cpp \
39+
src/fontoptionsframe.cpp \
40+
src/fontrenderer.cpp \
41+
src/charactersframe.cpp \
42+
src/fontconfig.cpp \
43+
src/abstractlayouter.cpp \
44+
src/layoutconfig.cpp \
45+
src/layoutdata.cpp \
46+
src/layouters/linelayouter.cpp \
47+
src/layouterfactory.cpp \
48+
src/layouters/boxlayouter.cpp \
49+
src/layoutconfigframe.cpp \
50+
src/outputconfig.cpp \
51+
src/outputframe.cpp \
52+
src/abstractexporter.cpp \
53+
src/exporters/ghlexporter.cpp \
54+
src/exporterfactory.cpp \
55+
src/abstractimagewriter.cpp \
56+
src/imagewriterfactory.cpp \
57+
src/image/builtinimagewriter.cpp \
58+
src/exporters/zfiexporter.cpp \
59+
src/image/targawriter.cpp \
60+
src/fonttestframe.cpp \
61+
src/fonttestwidget.cpp \
62+
src/exporters/divoexporter.cpp \
63+
src/charmapdialog.cpp \
64+
src/charsselectwidget.cpp \
65+
src/exporters/nglexporter.cpp \
66+
src/exporters/luaexporter.cpp \
67+
src/fontdrawwidget.cpp \
68+
src/fontloader.cpp
69+
HEADERS += src/fontbuilder.h \
70+
src/colorbutton.h \
71+
src/fontselectframe.h \
72+
src/fontoptionsframe.h \
73+
src/fontrenderer.h \
74+
src/charactersframe.h \
75+
src/fontconfig.h \
76+
src/rendererdata.h \
77+
src/abstractlayouter.h \
78+
src/layoutconfig.h \
79+
src/layoutdata.h \
80+
src/layouters/linelayouter.h \
81+
src/layouterfactory.h \
82+
src/layoutchar.h \
83+
src/layouters/boxlayouter.h \
84+
src/layoutconfigframe.h \
85+
src/outputconfig.h \
86+
src/outputframe.h \
87+
src/abstractexporter.h \
88+
src/exporters/ghlexporter.h \
89+
src/exporterfactory.h \
90+
src/abstractimagewriter.h \
91+
src/imagewriterfactory.h \
92+
src/image/builtinimagewriter.h \
93+
src/exporters/zfiexporter.h \
94+
src/image/targawriter.h \
95+
src/fonttestframe.h \
96+
src/fonttestwidget.h \
97+
src/exporters/divoexporter.h \
98+
src/charmapdialog.h \
99+
src/charsselectwidget.h \
100+
src/exporters/nglexporter.h \
101+
src/exporters/luaexporter.h \
102+
src/fontdrawwidget.h \
103+
src/fontloader.h
104+
FORMS += src/fontbuilder.ui \
105+
src/fontselectframe.ui \
106+
src/fontoptionsframe.ui \
107+
src/charactersframe.ui \
108+
src/layoutconfigframe.ui \
109+
src/outputframe.ui \
110+
src/fonttestframe.ui \
111+
src/charmapdialog.ui
112112
TRANSLATIONS = fontbuilder_en.ts \
113113
fontbuilder_ru.ts
114114
QT += xml
@@ -119,7 +119,7 @@ MOC_DIR = .obj
119119
UI_DIR = .obj
120120
TARGET = FontBuilder
121121

122-
INCLUDEPATH+=./
122+
INCLUDEPATH+=src/
123123
mac {
124124
INCLUDEPATH += ../include
125125
INCLUDEPATH += ../include/freetype2
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)