blob: 2af32a1d7caf61528267280f6772a48fe1bcd914 (
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
|
#ifndef LYTLAYOUT_H
#define LYTLAYOUT_H
#include "packagebase.h"
#include "materials/material.h"
#include "group.h"
#include "pane.h"
#include "textbox.h"
#include "picture.h"
#include "window.h"
#include "bounding.h"
#include "binaryfile.h"
#include "binaryfilesection.h"
#include <QtCore/QStringList>
#include <QtCore/QMap>
#include <QtCore/QDataStream>
class LYTTexMap; // forward declaration so it can be a friend class
class LYTLayout {
public:
LYTLayout(LYTPackageBase &package);
LYTLayout(LYTPackageBase &package, QString name);
~LYTLayout();
void clear();
LYTPackageBase &package() const;
float width;
float height;
QMap<QString, LYTMaterial *> materials;
LYTPane *rootPane;
QList<LYTGroup *> groups;
protected:
LYTPackageBase &m_package;
// these are private because they are not intended for public use
// they're only here so that LYTPane's subclasses and a few others can read
// this info when reading/writing -- hence why they are friend classes
QStringList m_fontRefs;
QStringList m_textureRefs;
bool loadLayoutFromPackage(QString name);
void readLyt1(LYTBinaryFileSection §ion);
void readTxl1(LYTBinaryFileSection §ion);
void readFnl1(LYTBinaryFileSection §ion);
void readMat1(LYTBinaryFileSection §ion);
LYTPane *createPaneObj(LYTBinaryFileSection §ion);
friend class LYTPane;
friend class LYTTextBox;
friend class LYTPicture;
friend class LYTWindow;
friend class LYTBounding;
friend class LYTTexMap;
};
#endif // LYTLAYOUT_H
|