blob: cf9287de873f04547d137ef77b96c893d85847e0 (
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
|
# -------------------------------------------------
# Project created by QtCreator 2010-10-03T04:03:27
# -------------------------------------------------
QT += opengl
TARGET = LayoutStudio
TEMPLATE = app
SOURCES += main.cpp \
lsmainwindow.cpp \
lsglobals.cpp \
lyt/packagebase.cpp \
lyt/directorypackage.cpp \
lyt/layout.cpp \
lyt/binaryfile.cpp \
lyt/binaryfilesection.cpp \
lyt/materials/material.cpp \
lyt/pane.cpp \
lyt/textbox.cpp \
lyt/picture.cpp \
lyt/window.cpp \
lyt/bounding.cpp \
lyt/group.cpp \
lyt/materials/texmap.cpp \
lyt/materials/texsrt.cpp \
lyt/materials/texcoordgen.cpp \
lyt/materials/chanctrl.cpp \
lyt/materials/tevswaptable.cpp \
lyt/materials/indirectstage.cpp \
lyt/materials/tevstage.cpp \
lyt/materials/alphacompare.cpp \
lyt/materials/blendmode.cpp \
wii/common.cpp \
wii/archiveu8.cpp \
wii/filesystem.cpp \
lyt/archivepackage.cpp \
wii/stringtablebuilder.cpp \
layoutgl/texturemanager.cpp \
layoutgl/widget.cpp \
wii/texpalette.cpp \
lspackagemodel.cpp \
lslayoutwindow.cpp \
lsscenemodel.cpp \
lspaneeditor.cpp \
lstexcoordseteditor.cpp
HEADERS += lsmainwindow.h \
lsglobals.h \
lyt/packagebase.h \
lyt/directorypackage.h \
lyt/layout.h \
lyt/binaryfile.h \
lyt/binaryfilesection.h \
lyt/materials/material.h \
lyt/pane.h \
lyt/common.h \
lyt/textbox.h \
lyt/picture.h \
lyt/window.h \
lyt/bounding.h \
lyt/group.h \
lyt/materials/texmap.h \
lyt/materials/texsrt.h \
lyt/materials/texcoordgen.h \
lyt/materials/chanctrl.h \
lyt/materials/tevswaptable.h \
lyt/materials/indirectstage.h \
lyt/materials/tevstage.h \
lyt/materials/alphacompare.h \
lyt/materials/blendmode.h \
wii/archiveu8.h \
wii/common.h \
wii/filesystem.h \
lyt/archivepackage.h \
wii/stringtablebuilder.h \
lyt/materials/materialcontainer.h \
layoutgl/texturemanager.h \
layoutgl/widget.h \
wii/texpalette.h \
wii/gx.h \
lspackagemodel.h \
lslayoutwindow.h \
lsscenemodel.h \
lspaneeditor.h \
lstexcoordseteditor.h
FORMS +=
RESOURCES += resources.qrc
OTHER_FILES += \
icons/window.png \
icons/textbox.png \
icons/picture.png \
icons/pane.png \
icons/bounding.png \
README.markdown \
LICENSE.txt
|