Title block templates: cell saving/loading code is now shared between TitleBlockCell and TitleBlockTemplate.

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/branches/0.3@1558 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavier
2012-03-11 16:06:30 +00:00
parent e7d724ebde
commit 14d5811979
3 changed files with 121 additions and 103 deletions

View File

@@ -142,3 +142,116 @@ QString TitleBlockCell::attributeName(const QString &attribute) {
bool TitleBlockCell::spans() const {
return(row_span || col_span);
}
/**
@param cell_element XML element from which cell content will be read
*/
void TitleBlockCell::loadContentFromXml(const QDomElement &cell_element) {
// common properties
if (cell_element.hasAttribute("name") && !cell_element.attribute("name").isEmpty()) {
value_name = cell_element.attribute("name");
}
// specific properties
if (cell_element.tagName() == "logo") {
if (cell_element.hasAttribute("resource") && !cell_element.attribute("resource").isEmpty()) {
cell_type = TitleBlockCell::LogoCell;
logo_reference = cell_element.attribute("resource");
}
} else if (cell_element.tagName() == "field") {
cell_type = TitleBlockCell::TextCell;
QHash<QString, QString> names_options;
names_options["TagName"] = "translation";
names_options["ParentTagName"] = "value";
NamesList value_nameslist;
value_nameslist.fromXml(cell_element, names_options);
if (!value_nameslist.name().isEmpty()) {
value = value_nameslist;
}
names_options["ParentTagName"] = "label";
NamesList label_nameslist;
label_nameslist.fromXml(cell_element, names_options);
if (!label_nameslist.name().isEmpty()) {
label = label_nameslist;
}
if (cell_element.hasAttribute("displaylabel")) {
if (cell_element.attribute("displaylabel").compare("false", Qt::CaseInsensitive) == 0) {
display_label = false;
}
}
int fontsize;
if (QET::attributeIsAnInteger(cell_element, "fontsize", &fontsize)) {
font_size = fontsize;
} else {
font_size = -1;
}
// horizontal and vertical alignments
alignment = 0;
QString halignment = cell_element.attribute("align", "left");
if (halignment == "right") alignment |= Qt::AlignRight;
else if (halignment == "center") alignment |= Qt::AlignHCenter;
else alignment |= Qt::AlignLeft;
QString valignment = cell_element.attribute("valign", "center");
if (valignment == "bottom") alignment |= Qt::AlignBottom;
else if (valignment == "top") alignment |= Qt::AlignTop;
else alignment |= Qt::AlignVCenter;
// horizontal text adjustment
hadjust = cell_element.attribute("hadjust", "true") == "true";
}
}
/**
@param xml_element XML element to which cell content will be exported
*/
void TitleBlockCell::saveContentToXml(QDomElement &cell_elmt) {
cell_elmt.setAttribute("name", value_name);
if (type() == TitleBlockCell::EmptyCell) {
cell_elmt.setTagName("empty");
} else if (type() == TitleBlockCell::LogoCell) {
cell_elmt.setTagName("logo");
cell_elmt.setAttribute("resource", logo_reference);
} else {
cell_elmt.setTagName("field");
QDomDocument parent_document = cell_elmt.ownerDocument();
QHash<QString, QString> names_options;
names_options["TagName"] = "translation";
names_options["ParentTagName"] = "value";
cell_elmt.appendChild(value.toXml(parent_document, names_options));
names_options["ParentTagName"] = "label";
cell_elmt.appendChild(label.toXml(parent_document, names_options));
cell_elmt.setAttribute("displaylabel", display_label ? "true" : "false");
if (font_size != -1) {
cell_elmt.setAttribute("fontsize", font_size);
}
if (alignment & Qt::AlignRight) {
cell_elmt.setAttribute("align", "right");
} else if (alignment & Qt::AlignHCenter) {
cell_elmt.setAttribute("align", "center");
} else {
cell_elmt.setAttribute("align", "left");
}
if (alignment & Qt::AlignBottom) {
cell_elmt.setAttribute("valign", "bottom");
} else if (alignment & Qt::AlignTop) {
cell_elmt.setAttribute("valign", "top");
} else {
cell_elmt.setAttribute("valign", "center");
}
if (hadjust) cell_elmt.setAttribute("hadjust", "true");
}
}