Initial parsing of glabels files.
This commit is contained in:
@@ -33,6 +33,7 @@ set (glabels_sources
|
||||
NewLabelDialog.cpp
|
||||
SimplePreview.cpp
|
||||
View.cpp
|
||||
XmlLabel.cpp
|
||||
)
|
||||
|
||||
set (glabels_qobject_headers
|
||||
|
||||
@@ -42,6 +42,19 @@ namespace glabels
|
||||
}
|
||||
|
||||
|
||||
///
|
||||
/// Constructor From Data
|
||||
///
|
||||
ColorNode::ColorNode( bool fieldFlag, uint32_t rgba, const QString& key )
|
||||
: mFieldFlag(fieldFlag), mKey(key)
|
||||
{
|
||||
mColor = QColor( (rgba >> 24) & 0xFF,
|
||||
(rgba >> 16) & 0xFF,
|
||||
(rgba >> 8) & 0xFF,
|
||||
(rgba ) & 0xFF );
|
||||
}
|
||||
|
||||
|
||||
///
|
||||
/// Constructor From Color
|
||||
///
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
|
||||
#include <QString>
|
||||
#include <QColor>
|
||||
#include <stdint.h>
|
||||
|
||||
|
||||
namespace glabels
|
||||
@@ -42,6 +43,8 @@ namespace glabels
|
||||
|
||||
ColorNode( bool fieldFlag, const QColor& color, const QString& key );
|
||||
|
||||
ColorNode( bool fieldFlag, uint32_t rgba, const QString& key );
|
||||
|
||||
ColorNode( const QColor& color );
|
||||
|
||||
ColorNode( const QString& key );
|
||||
|
||||
+24
-2
@@ -1,6 +1,6 @@
|
||||
/* File.cpp
|
||||
*
|
||||
* Copyright (C) 2013 Jim Evins <evins@snaught.com>
|
||||
* Copyright (C) 2014 Jim Evins <evins@snaught.com>
|
||||
*
|
||||
* This file is part of gLabels-qt.
|
||||
*
|
||||
@@ -23,6 +23,7 @@
|
||||
#include "MainWindow.h"
|
||||
#include "LabelModel.h"
|
||||
#include "NewLabelDialog.h"
|
||||
#include "XmlLabel.h"
|
||||
#include <QFileDialog>
|
||||
#include <QMessageBox>
|
||||
|
||||
@@ -54,7 +55,28 @@ namespace glabels
|
||||
);
|
||||
if ( !fileName.isEmpty() )
|
||||
{
|
||||
std::cout << "ACTION: file->Open: " << fileName.toStdString() << std::endl;
|
||||
LabelModel *label = XmlLabel::readFile( fileName );
|
||||
if ( label )
|
||||
{
|
||||
if ( window->isEmpty() )
|
||||
{
|
||||
window->setModel( label );
|
||||
}
|
||||
else
|
||||
{
|
||||
MainWindow *newWindow = new MainWindow();
|
||||
newWindow->setModel( label );
|
||||
newWindow->show();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
QMessageBox msgBox;
|
||||
msgBox.setText( tr("Unable to open \"") + fileName + tr("\".") );
|
||||
msgBox.setStandardButtons( QMessageBox::Ok );
|
||||
msgBox.setDefaultButton( QMessageBox::Ok );
|
||||
msgBox.exec();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
/* File.h
|
||||
*
|
||||
* Copyright (C) 2013 Jim Evins <evins@snaught.com>
|
||||
* Copyright (C) 2014 Jim Evins <evins@snaught.com>
|
||||
*
|
||||
* This file is part of gLabels-qt.
|
||||
*
|
||||
|
||||
+13
-29
@@ -1,6 +1,6 @@
|
||||
/* MainWindow.cpp
|
||||
*
|
||||
* Copyright (C) 2013 Jim Evins <evins@snaught.com>
|
||||
* Copyright (C) 2014 Jim Evins <evins@snaught.com>
|
||||
*
|
||||
* This file is part of gLabels-qt.
|
||||
*
|
||||
@@ -54,42 +54,16 @@ namespace glabels
|
||||
///
|
||||
MainWindow::MainWindow()
|
||||
{
|
||||
/////////////// TEMPORARY TESTING ///////////////
|
||||
#if 0
|
||||
QLabel* tmp = new QLabel( "Coming Soon..." );
|
||||
setCentralWidget( tmp );
|
||||
#else
|
||||
mModel = new LabelModel();
|
||||
const libglabels::Template* tmplate = libglabels::Db::lookupTemplateFromName( "Avery 5163" );
|
||||
mModel->setTmplate( tmplate );
|
||||
LabelModelBoxObject* object = new LabelModelBoxObject();
|
||||
object->setW( 36 );
|
||||
object->setH( 36 );
|
||||
object->setX0( 72 );
|
||||
object->setY0( 72 );
|
||||
object->setFillColorNode( ColorNode( QColor( 0, 255, 0 ) ) );
|
||||
object->setLineColorNode( ColorNode( QColor( 0, 0, 0 ) ) );
|
||||
object->setLineWidth( 4 );
|
||||
object->setShadowColorNode( ColorNode( QColor( 0, 0, 0 ) ) );
|
||||
object->setShadowOpacity( 0.25 );
|
||||
object->setShadowX( 5 );
|
||||
object->setShadowY( 5 );
|
||||
object->setShadow( true );
|
||||
mModel->addObject( object );
|
||||
|
||||
mView = new View();
|
||||
mView->setModel( mModel );
|
||||
|
||||
setCentralWidget( mView );
|
||||
#endif
|
||||
/////////////////////////////////////////////////
|
||||
mModel = 0;
|
||||
|
||||
createActions();
|
||||
createMenus();
|
||||
createToolBars();
|
||||
createStatusBar();
|
||||
|
||||
setDocVerbsEnabled( true );
|
||||
setDocVerbsEnabled( false );
|
||||
setPasteVerbsEnabled( false );
|
||||
|
||||
readSettings();
|
||||
@@ -116,6 +90,16 @@ namespace glabels
|
||||
}
|
||||
|
||||
|
||||
///
|
||||
/// Set model accessor
|
||||
///
|
||||
void MainWindow::setModel( LabelModel *label )
|
||||
{
|
||||
mModel = label;
|
||||
mView->setModel( mModel );
|
||||
}
|
||||
|
||||
|
||||
///
|
||||
/// Is window empty?
|
||||
///
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* MainWindow.h
|
||||
*
|
||||
* Copyright (C) 2013 Jim Evins <evins@snaught.com>
|
||||
* Copyright (C) 2014 Jim Evins <evins@snaught.com>
|
||||
*
|
||||
* This file is part of gLabels-qt.
|
||||
*
|
||||
@@ -59,6 +59,7 @@ namespace glabels
|
||||
/////////////////////////////////////
|
||||
public:
|
||||
LabelModel* model() const;
|
||||
void setModel( LabelModel* label );
|
||||
bool isEmpty() const;
|
||||
|
||||
static QList<MainWindow *> windowList();
|
||||
|
||||
@@ -0,0 +1,365 @@
|
||||
/* XmlLabel.cpp
|
||||
*
|
||||
* Copyright (C) 2014 Jim Evins <evins@snaught.com>
|
||||
*
|
||||
* This file is part of gLabels-qt.
|
||||
*
|
||||
* gLabels-qt is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* gLabels-qt is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with gLabels-qt. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "XmlLabel.h"
|
||||
|
||||
#include "LabelModel.h"
|
||||
#include "LabelModelObject.h"
|
||||
#include "LabelModelBoxObject.h"
|
||||
//#include "LabelObjectEllipse.h"
|
||||
//#include "LabelObjectLine.h"
|
||||
//#include "LabelObjectImage.h"
|
||||
//#include "LabelObjectBarcode.h"
|
||||
#include "libglabels/XmlTemplateParser.h"
|
||||
#include "libglabels/XmlUtil.h"
|
||||
|
||||
#include <QFile>
|
||||
#include <QtDebug>
|
||||
|
||||
|
||||
glabels::LabelModel* glabels::XmlLabel::readFile( const QString& fileName )
|
||||
{
|
||||
QFile file( fileName );
|
||||
|
||||
if ( !file.open( QFile::ReadOnly | QFile::Text) )
|
||||
{
|
||||
qWarning() << "Error: Cannot read file " << qPrintable(fileName)
|
||||
<< ": " << file.errorString();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
QDomDocument doc;
|
||||
QString errorString;
|
||||
int errorLine;
|
||||
int errorColumn;
|
||||
|
||||
if ( !doc.setContent( &file, false, &errorString, &errorLine, &errorColumn ) )
|
||||
{
|
||||
qWarning() << "Error: Parse error at line " << errorLine
|
||||
<< "column " << errorColumn
|
||||
<< ": " << errorString;
|
||||
return 0;
|
||||
}
|
||||
|
||||
QDomElement root = doc.documentElement();
|
||||
if ( root.tagName() != "Glabels-document" )
|
||||
{
|
||||
qWarning() << "Error: Not a Glabels-document file";
|
||||
return 0;
|
||||
}
|
||||
|
||||
return parseRootNode( root );
|
||||
}
|
||||
|
||||
|
||||
glabels::LabelModel* glabels::XmlLabel::readBuffer( const QString& buffer )
|
||||
{
|
||||
QDomDocument doc;
|
||||
QString errorString;
|
||||
int errorLine;
|
||||
int errorColumn;
|
||||
|
||||
if ( !doc.setContent( buffer, false, &errorString, &errorLine, &errorColumn ) )
|
||||
{
|
||||
qWarning() << "Error: Parse error at line " << errorLine
|
||||
<< "column " << errorColumn
|
||||
<< ": " << errorString;
|
||||
return 0;
|
||||
}
|
||||
|
||||
QDomElement root = doc.documentElement();
|
||||
if ( root.tagName() != "Glabels-document" )
|
||||
{
|
||||
qWarning() << "Error: Not a Glabels-document file";
|
||||
return 0;
|
||||
}
|
||||
|
||||
return parseRootNode( root );
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::writeFile( const LabelModel* label, const QString& fileName )
|
||||
{
|
||||
QDomDocument doc;
|
||||
|
||||
createDoc( doc, label );
|
||||
QString buffer = doc.toString( 4 );
|
||||
|
||||
QFile file( fileName );
|
||||
|
||||
if ( !file.open( QFile::WriteOnly | QFile::Text) )
|
||||
{
|
||||
qWarning() << "Error: Cannot read file " << fileName
|
||||
<< ": " << file.errorString();
|
||||
}
|
||||
|
||||
file.write( buffer.toStdString().c_str(), buffer.size() );
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::writeBuffer( const LabelModel* label, QString& buffer )
|
||||
{
|
||||
QDomDocument doc;
|
||||
|
||||
createDoc( doc, label );
|
||||
buffer = doc.toString( 4 );
|
||||
}
|
||||
|
||||
|
||||
glabels::LabelModel* glabels::XmlLabel::parseRootNode( const QDomElement &node )
|
||||
{
|
||||
using namespace libglabels;
|
||||
|
||||
LabelModel* label = new LabelModel();
|
||||
|
||||
/* Pass 1, extract data nodes to pre-load cache. */
|
||||
for ( QDomNode child = node.firstChild(); !child.isNull(); child = child.nextSibling() )
|
||||
{
|
||||
if ( child.toElement().tagName() == "Data" )
|
||||
{
|
||||
parseDataNode( child.toElement(), label );
|
||||
}
|
||||
}
|
||||
|
||||
/* Pass 2, now extract everything else. */
|
||||
for ( QDomNode child = node.firstChild(); !child.isNull(); child = child.nextSibling() )
|
||||
{
|
||||
QString tagName = child.toElement().tagName();
|
||||
|
||||
if ( tagName == "Template" )
|
||||
{
|
||||
Template* tmplate = XmlTemplateParser().parseTemplateNode( child.toElement() );
|
||||
if ( tmplate == 0 )
|
||||
{
|
||||
qWarning() << "Unable to parse template";
|
||||
return 0;
|
||||
}
|
||||
label->setTmplate( tmplate );
|
||||
}
|
||||
else if ( tagName == "Objects" )
|
||||
{
|
||||
parseObjectsNode( child.toElement(), label );
|
||||
}
|
||||
else if ( tagName == "Merge" )
|
||||
{
|
||||
parseMergeNode( child.toElement(), label );
|
||||
}
|
||||
else if ( tagName == "Data" )
|
||||
{
|
||||
/* Handled in pass 1. */
|
||||
}
|
||||
else if ( !child.isComment() )
|
||||
{
|
||||
qWarning() << "Unexpected" << node.tagName() << "child:" << tagName;
|
||||
}
|
||||
}
|
||||
|
||||
return label;
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseObjectsNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
for ( QDomNode child = node.firstChild(); !child.isNull(); child = child.nextSibling() )
|
||||
{
|
||||
QString tagName = child.toElement().tagName();
|
||||
|
||||
if ( tagName == "Object-box" )
|
||||
{
|
||||
parseObjectBoxNode( child.toElement(), label );
|
||||
}
|
||||
else if ( tagName == "Object-ellipse" )
|
||||
{
|
||||
parseObjectEllipseNode( child.toElement(), label );
|
||||
}
|
||||
else if ( tagName == "Object-line" )
|
||||
{
|
||||
parseObjectLineNode( child.toElement(), label );
|
||||
}
|
||||
else if ( tagName == "Object-image" )
|
||||
{
|
||||
parseObjectImageNode( child.toElement(), label );
|
||||
}
|
||||
else if ( tagName == "Object-barcode" )
|
||||
{
|
||||
parseObjectBarcodeNode( child.toElement(), label );
|
||||
}
|
||||
else if ( tagName == "Object-text" )
|
||||
{
|
||||
parseObjectTextNode( child.toElement(), label );
|
||||
}
|
||||
else if ( !child.isComment() )
|
||||
{
|
||||
qWarning() << "Unexpected" << node.tagName() << "child:" << tagName;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseObjectBoxNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
using namespace libglabels;
|
||||
|
||||
LabelModelBoxObject* object = new LabelModelBoxObject();
|
||||
label->addObject( object );
|
||||
|
||||
|
||||
/* position attrs */
|
||||
object->setX0( XmlUtil::getLengthAttr( node, "x", 0.0 ) );
|
||||
object->setY0( XmlUtil::getLengthAttr( node, "y", 0.0 ) );
|
||||
|
||||
/* size attrs */
|
||||
object->setW( XmlUtil::getLengthAttr( node, "w", 0 ) );
|
||||
object->setH( XmlUtil::getLengthAttr( node, "h", 0 ) );
|
||||
|
||||
/* line attrs */
|
||||
object->setLineWidth( XmlUtil::getLengthAttr( node, "line_width", 1.0 ) );
|
||||
{
|
||||
QString key = XmlUtil::getStringAttr( node, "line_color_field", "" );
|
||||
bool field_flag = !key.isEmpty();
|
||||
uint32_t color = XmlUtil::getUIntAttr( node, "line_color", 0 );
|
||||
|
||||
object->setLineColorNode( ColorNode( field_flag, color, key ) );
|
||||
}
|
||||
|
||||
/* fill attrs */
|
||||
{
|
||||
QString key = XmlUtil::getStringAttr( node, "line_color_field", "" );
|
||||
bool field_flag = !key.isEmpty();
|
||||
uint32_t color = XmlUtil::getUIntAttr( node, "fill_color", 0 );
|
||||
|
||||
object->setFillColorNode( ColorNode( field_flag, color, key ) );
|
||||
}
|
||||
|
||||
/* affine attrs */
|
||||
parseAffineAttrs( node, object );
|
||||
|
||||
/* shadow attrs */
|
||||
parseShadowAttrs( node, object );
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseObjectEllipseNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseObjectLineNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseObjectImageNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseObjectBarcodeNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseObjectTextNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseTopLevelSpanNode( const QDomElement &node, LabelModelTextObject* object )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseAffineAttrs( const QDomElement &node, LabelModelObject* object )
|
||||
{
|
||||
using namespace libglabels;
|
||||
|
||||
double a[6];
|
||||
|
||||
a[0] = XmlUtil::getDoubleAttr( node, "a0", 0.0 );
|
||||
a[1] = XmlUtil::getDoubleAttr( node, "a1", 0.0 );
|
||||
a[2] = XmlUtil::getDoubleAttr( node, "a2", 0.0 );
|
||||
a[3] = XmlUtil::getDoubleAttr( node, "a3", 0.0 );
|
||||
a[4] = XmlUtil::getDoubleAttr( node, "a4", 0.0 );
|
||||
a[5] = XmlUtil::getDoubleAttr( node, "a5", 0.0 );
|
||||
|
||||
object->setMatrix( QTransform( a[0], a[1], a[2], a[3], a[4], a[5] ) );
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseShadowAttrs( const QDomElement &node, LabelModelObject* object )
|
||||
{
|
||||
using namespace libglabels;
|
||||
|
||||
object->setShadow( XmlUtil::getBoolAttr( node, "shadow", false ) );
|
||||
|
||||
if ( object->shadow() )
|
||||
{
|
||||
object->setShadowX( XmlUtil::getLengthAttr( node, "shadow_x", 0.0 ) );
|
||||
object->setShadowY( XmlUtil::getLengthAttr( node, "shadow_y", 0.0 ) );
|
||||
|
||||
QString key = XmlUtil::getStringAttr( node, "shadow_color_field", "" );
|
||||
bool field_flag = !key.isEmpty();
|
||||
uint32_t color = XmlUtil::getUIntAttr( node, "shadow_color", 0 );
|
||||
|
||||
object->setShadowColorNode( ColorNode( field_flag, color, key ) );
|
||||
|
||||
object->setShadowOpacity( XmlUtil::getLengthAttr( node, "shadow_y", 1.0 ) );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseMergeNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseDataNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parsePixdataNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::parseFileNode( const QDomElement &node, LabelModel* label )
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void glabels::XmlLabel::createDoc( QDomDocument& doc, const LabelModel* label ) {}
|
||||
void glabels::XmlLabel::createRootNode( const LabelModel* label ) {}
|
||||
void glabels::XmlLabel::createObjectsNode( QDomElement &parent, const LabelModel* label ) {}
|
||||
void glabels::XmlLabel::createObjectBoxNode( QDomElement &parent, const LabelModelBoxObject* object ) {}
|
||||
void glabels::XmlLabel::createObjectEllipseNode( QDomElement &parent, const LabelModelEllipseObject* object ) {}
|
||||
void glabels::XmlLabel::createObjectLineNode( QDomElement &parent, const LabelModelLineObject* object ) {}
|
||||
void glabels::XmlLabel::createObjectImageNode( QDomElement &parent, const LabelModelImageObject* object ) {}
|
||||
void glabels::XmlLabel::createObjectBarcodeNode( QDomElement &parent, const LabelModelBarcodeObject* object ) {}
|
||||
void glabels::XmlLabel::createObjectTextNode( QDomElement &parent, const LabelModelTextObject* object ) {}
|
||||
void glabels::XmlLabel::createObjectTopLevelSpanNode( QDomElement &parent, const LabelModelTextObject* object ) {}
|
||||
void glabels::XmlLabel::createffineAttrs( QDomElement &node, const LabelModelObject* object ) {}
|
||||
void glabels::XmlLabel::createShadowAttrs( QDomElement &node, const LabelModelObject* object ) {}
|
||||
void glabels::XmlLabel::createMergeNode( QDomElement &node, LabelModel* label ) {}
|
||||
void glabels::XmlLabel::createDataNode( QDomElement &node, LabelModel* label ) {}
|
||||
void glabels::XmlLabel::createPixdataNode( QDomElement &node, LabelModel* label, const QString& name ) {}
|
||||
void glabels::XmlLabel::createSvgFileNode( QDomElement &node, LabelModel* label, const QString& name ) {}
|
||||
|
||||
@@ -0,0 +1,92 @@
|
||||
/* XmlLabel.h
|
||||
*
|
||||
* Copyright (C) 2014 Jim Evins <evins@snaught.com>
|
||||
*
|
||||
* This file is part of gLabels-qt.
|
||||
*
|
||||
* gLabels-qt is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* gLabels-qt is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with gLabels-qt. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef glabels_XmlLabel_h
|
||||
#define glabels_XmlLabel_h
|
||||
|
||||
|
||||
#include <QObject>
|
||||
#include <QDomElement>
|
||||
|
||||
|
||||
namespace glabels
|
||||
{
|
||||
class LabelModel;
|
||||
class LabelModelObject;
|
||||
class LabelModelBoxObject;
|
||||
class LabelModelEllipseObject;
|
||||
class LabelModelLineObject;
|
||||
class LabelModelImageObject;
|
||||
class LabelModelBarcodeObject;
|
||||
class LabelModelTextObject;
|
||||
|
||||
|
||||
///
|
||||
/// XmlLabel Actions
|
||||
///
|
||||
class XmlLabel : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
static LabelModel* readFile( const QString& fileName );
|
||||
static LabelModel* readBuffer( const QString& buffer );
|
||||
static void writeFile( const LabelModel* label, const QString& fileName );
|
||||
static void writeBuffer( const LabelModel* label, QString& buffer );
|
||||
|
||||
private:
|
||||
static LabelModel* parseRootNode( const QDomElement &node );
|
||||
static void parseObjectsNode( const QDomElement &node, LabelModel* label );
|
||||
static void parseObjectBoxNode( const QDomElement &node, LabelModel* label );
|
||||
static void parseObjectEllipseNode( const QDomElement &node, LabelModel* label );
|
||||
static void parseObjectLineNode( const QDomElement &node, LabelModel* label );
|
||||
static void parseObjectImageNode( const QDomElement &node, LabelModel* label );
|
||||
static void parseObjectBarcodeNode( const QDomElement &node, LabelModel* label );
|
||||
static void parseObjectTextNode( const QDomElement &node, LabelModel* label );
|
||||
static void parseTopLevelSpanNode( const QDomElement &node, LabelModelTextObject* object );
|
||||
static void parseAffineAttrs( const QDomElement &node, LabelModelObject* object );
|
||||
static void parseShadowAttrs( const QDomElement &node, LabelModelObject* object );
|
||||
static void parseMergeNode( const QDomElement &node, LabelModel* label );
|
||||
static void parseDataNode( const QDomElement &node, LabelModel* label );
|
||||
static void parsePixdataNode( const QDomElement &node, LabelModel* label );
|
||||
static void parseFileNode( const QDomElement &node, LabelModel* label );
|
||||
|
||||
static void createDoc( QDomDocument& doc, const LabelModel* label );
|
||||
static void createRootNode( const LabelModel* label );
|
||||
static void createObjectsNode( QDomElement &parent, const LabelModel* label );
|
||||
static void createObjectBoxNode( QDomElement &parent, const LabelModelBoxObject* object );
|
||||
static void createObjectEllipseNode( QDomElement &parent, const LabelModelEllipseObject* object );
|
||||
static void createObjectLineNode( QDomElement &parent, const LabelModelLineObject* object );
|
||||
static void createObjectImageNode( QDomElement &parent, const LabelModelImageObject* object );
|
||||
static void createObjectBarcodeNode( QDomElement &parent, const LabelModelBarcodeObject* object );
|
||||
static void createObjectTextNode( QDomElement &parent, const LabelModelTextObject* object );
|
||||
static void createObjectTopLevelSpanNode( QDomElement &parent, const LabelModelTextObject* object );
|
||||
static void createffineAttrs( QDomElement &node, const LabelModelObject* object );
|
||||
static void createShadowAttrs( QDomElement &node, const LabelModelObject* object );
|
||||
static void createMergeNode( QDomElement &node, LabelModel* label );
|
||||
static void createDataNode( QDomElement &node, LabelModel* label );
|
||||
static void createPixdataNode( QDomElement &node, LabelModel* label, const QString& name );
|
||||
static void createSvgFileNode( QDomElement &node, LabelModel* label, const QString& name );
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // glabels_XmlLabel_h
|
||||
Reference in New Issue
Block a user