summaryrefslogtreecommitdiff
path: root/lyt/textbox.cpp
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2010-10-14 20:17:20 +0200
committerTreeki <treeki@gmail.com>2010-10-14 20:17:20 +0200
commitebcc95da4c26369511caa90d89c5ed06e1e4853a (patch)
tree6ed445f0204a6e6615088d135c4b29c4309077a4 /lyt/textbox.cpp
parentfdf8cfec2b795393d7ee901abaf747575067068b (diff)
downloadLayoutStudio-ebcc95da4c26369511caa90d89c5ed06e1e4853a.tar.gz
LayoutStudio-ebcc95da4c26369511caa90d89c5ed06e1e4853a.zip
brlyt packing added, plus some changes in the existing API (mostly for const correctness). brlyt writing may still need some testing (especially for the material structs)
Diffstat (limited to '')
-rw-r--r--lyt/textbox.cpp26
1 files changed, 21 insertions, 5 deletions
diff --git a/lyt/textbox.cpp b/lyt/textbox.cpp
index 8552c3d..e1b640e 100644
--- a/lyt/textbox.cpp
+++ b/lyt/textbox.cpp
@@ -24,7 +24,12 @@ LYTTextBox::LYTTextBox(LYTLayout &layout) : LYTPane(layout) {
}
-void LYTTextBox::dumpToDebug(bool showHeading) {
+Magic LYTTextBox::magic() const {
+ return Magic('txt1');
+}
+
+
+void LYTTextBox::dumpToDebug(bool showHeading) const {
if (showHeading)
qDebug() << "LYTTextBox" << name << "@" << (void*)this;
@@ -41,7 +46,7 @@ void LYTTextBox::dumpToDebug(bool showHeading) {
-void LYTTextBox::writeToDataStream(QDataStream &out) {
+void LYTTextBox::writeToDataStream(QDataStream &out) const {
LYTPane::writeToDataStream(out);
// lengths are stored in bytes (including zero terminator) not characters
@@ -49,7 +54,7 @@ void LYTTextBox::writeToDataStream(QDataStream &out) {
out << (quint16)((text.length() + 1) * 2);
// calculate the material and font numbers
- int materialNum = m_layout.materials.keys().indexOf(materialName);
+ int materialNum = m_layout.materials.getIndexOfName(materialName);
int fontNum = m_layout.m_fontRefs.indexOf(fontName);
out << (quint16)materialNum;
@@ -58,7 +63,7 @@ void LYTTextBox::writeToDataStream(QDataStream &out) {
out << (quint8)alignment;
out << (quint8)alignmentOverride;
- out.skipRawData(2); // padding
+ WritePadding(2, out);
out << (quint32)0x74; // fixed offset to textbox contents
@@ -74,6 +79,8 @@ void LYTTextBox::writeToDataStream(QDataStream &out) {
const ushort *convertedText = text.utf16();
for (int i = 0; i < text.length(); i++)
out << (quint16)convertedText[i];
+
+ out << (quint16)0; // zeroterm
}
@@ -99,7 +106,7 @@ void LYTTextBox::readFromDataStream(QDataStream &in) {
in >> (quint16&)materialNum;
in >> (quint16&)fontNum;
- materialName = m_layout.materials.keys().at(materialNum);
+ materialName = m_layout.materials.getNameOfIndex(materialNum);
fontName = m_layout.m_fontRefs.at(fontNum);
in >> (quint8&)alignment;
@@ -130,3 +137,12 @@ void LYTTextBox::readFromDataStream(QDataStream &in) {
text.setUtf16(rawText, stringLength);
delete[] rawText;
}
+
+
+void LYTTextBox::addFontRefsToList(QStringList &list) const {
+ LYTPane::addFontRefsToList(list);
+
+ if (!list.contains(this->fontName)) {
+ list.append(this->fontName);
+ }
+}