You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
454 lines
14 KiB
C++
454 lines
14 KiB
C++
/**********************************************************************
|
|
** Copyright (C) 2000 Trolltech AS. All rights reserved.
|
|
**
|
|
** This file is part of Qt Designer.
|
|
**
|
|
** This file may be distributed and/or modified under the terms of the
|
|
** GNU General Public License version 2 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
** packaging of this file.
|
|
**
|
|
** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
|
|
** licenses may use this file in accordance with the Qt Commercial License
|
|
** Agreement provided with the Software.
|
|
**
|
|
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
|
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
**
|
|
** See http://www.trolltech.com/gpl/ for GPL licensing information.
|
|
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
|
|
** information about Qt Commercial License Agreements.
|
|
**
|
|
** Contact info@trolltech.com if any conditions of this licensing are
|
|
** not clear to you.
|
|
**
|
|
**********************************************************************/
|
|
|
|
#include "domtool.h"
|
|
|
|
#include <tqsizepolicy.h>
|
|
#include <tqcolor.h>
|
|
#include <tqcursor.h>
|
|
#include <tqdatetime.h>
|
|
#include <tqrect.h>
|
|
#include <tqsize.h>
|
|
#include <tqfont.h>
|
|
#include <tqdom.h>
|
|
|
|
/*!
|
|
\class DomTool domtool.h
|
|
\brief Tools for the dom
|
|
|
|
A collection of static functions used by Resource (part of the
|
|
designer) and Uic.
|
|
|
|
*/
|
|
|
|
/*!
|
|
Returns the contents of property \a name of object \a e as
|
|
variant or the variant passed as \a defValue if the property does
|
|
not exist.
|
|
|
|
\sa hasProperty()
|
|
*/
|
|
TTQVariant DomTool::readProperty( const TTQDomElement& e, const TTQString& name, const TTQVariant& defValue, TTQString& comment )
|
|
{
|
|
TTQDomElement n;
|
|
for ( n = e.firstChild().toElement(); !n.isNull(); n = n.nextSibling().toElement() ) {
|
|
if ( n.tagName() == "property" ) {
|
|
if ( n.attribute( "name" ) != name )
|
|
continue;
|
|
return elementToVariant( n.firstChild().toElement(), defValue, comment );
|
|
}
|
|
}
|
|
return defValue;
|
|
}
|
|
|
|
|
|
/*!
|
|
\overload
|
|
*/
|
|
TTQVariant DomTool::readProperty( const TTQDomElement& e, const TTQString& name, const TTQVariant& defValue )
|
|
{
|
|
TTQString comment;
|
|
return readProperty( e, name, defValue, comment );
|
|
}
|
|
|
|
/*!
|
|
Returns wheter object \a e defines property \a name or not.
|
|
|
|
\sa readProperty()
|
|
*/
|
|
bool DomTool::hasProperty( const TTQDomElement& e, const TTQString& name )
|
|
{
|
|
TTQDomElement n;
|
|
for ( n = e.firstChild().toElement(); !n.isNull(); n = n.nextSibling().toElement() ) {
|
|
if ( n.tagName() == "property" ) {
|
|
if ( n.attribute( "name" ) != name )
|
|
continue;
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
TTQStringList DomTool::propertiesOfType( const TTQDomElement& e, const TTQString& type )
|
|
{
|
|
TTQStringList result;
|
|
TTQDomElement n;
|
|
for ( n = e.firstChild().toElement(); !n.isNull(); n = n.nextSibling().toElement() ) {
|
|
if ( n.tagName() == "property" ) {
|
|
TTQDomElement n2 = n.firstChild().toElement();
|
|
if ( n2.tagName() == type )
|
|
result += n.attribute( "name" );
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
TTQVariant DomTool::elementToVariant( const TTQDomElement& e, const TTQVariant& defValue )
|
|
{
|
|
TTQString dummy;
|
|
return elementToVariant( e, defValue, dummy );
|
|
}
|
|
|
|
/*!
|
|
Interprets element \a e as variant and returns the result of the interpretation.
|
|
*/
|
|
TTQVariant DomTool::elementToVariant( const TTQDomElement& e, const TTQVariant& defValue, TTQString &comment )
|
|
{
|
|
TTQVariant v;
|
|
if ( e.tagName() == "rect" ) {
|
|
TTQDomElement n3 = e.firstChild().toElement();
|
|
int x = 0, y = 0, w = 0, h = 0;
|
|
while ( !n3.isNull() ) {
|
|
if ( n3.tagName() == "x" )
|
|
x = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "y" )
|
|
y = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "width" )
|
|
w = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "height" )
|
|
h = n3.firstChild().toText().data().toInt();
|
|
n3 = n3.nextSibling().toElement();
|
|
}
|
|
v = TTQVariant( TTQRect( x, y, w, h ) );
|
|
} else if ( e.tagName() == "point" ) {
|
|
TTQDomElement n3 = e.firstChild().toElement();
|
|
int x = 0, y = 0;
|
|
while ( !n3.isNull() ) {
|
|
if ( n3.tagName() == "x" )
|
|
x = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "y" )
|
|
y = n3.firstChild().toText().data().toInt();
|
|
n3 = n3.nextSibling().toElement();
|
|
}
|
|
v = TTQVariant( TTQPoint( x, y ) );
|
|
} else if ( e.tagName() == "size" ) {
|
|
TTQDomElement n3 = e.firstChild().toElement();
|
|
int w = 0, h = 0;
|
|
while ( !n3.isNull() ) {
|
|
if ( n3.tagName() == "width" )
|
|
w = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "height" )
|
|
h = n3.firstChild().toText().data().toInt();
|
|
n3 = n3.nextSibling().toElement();
|
|
}
|
|
v = TTQVariant( TTQSize( w, h ) );
|
|
} else if ( e.tagName() == "color" ) {
|
|
v = TTQVariant( readColor( e ) );
|
|
} else if ( e.tagName() == "font" ) {
|
|
TTQDomElement n3 = e.firstChild().toElement();
|
|
TTQFont f( defValue.toFont() );
|
|
while ( !n3.isNull() ) {
|
|
if ( n3.tagName() == "family" )
|
|
f.setFamily( n3.firstChild().toText().data() );
|
|
else if ( n3.tagName() == "pointsize" )
|
|
f.setPointSize( n3.firstChild().toText().data().toInt() );
|
|
else if ( n3.tagName() == "bold" )
|
|
f.setBold( n3.firstChild().toText().data().toInt() );
|
|
else if ( n3.tagName() == "italic" )
|
|
f.setItalic( n3.firstChild().toText().data().toInt() );
|
|
else if ( n3.tagName() == "underline" )
|
|
f.setUnderline( n3.firstChild().toText().data().toInt() );
|
|
else if ( n3.tagName() == "strikeout" )
|
|
f.setStrikeOut( n3.firstChild().toText().data().toInt() );
|
|
n3 = n3.nextSibling().toElement();
|
|
}
|
|
v = TTQVariant( f );
|
|
} else if ( e.tagName() == "string" ) {
|
|
v = TTQVariant( e.firstChild().toText().data() );
|
|
TTQDomElement n = e;
|
|
n = n.nextSibling().toElement();
|
|
if ( n.tagName() == "comment" )
|
|
comment = n.firstChild().toText().data();
|
|
} else if ( e.tagName() == "cstring" ) {
|
|
v = TTQVariant( TTQCString( e.firstChild().toText().data() ) );
|
|
} else if ( e.tagName() == "number" ) {
|
|
bool ok = true;
|
|
v = TTQVariant( e.firstChild().toText().data().toInt( &ok ) );
|
|
if ( !ok )
|
|
v = TTQVariant( e.firstChild().toText().data().toDouble() );
|
|
} else if ( e.tagName() == "bool" ) {
|
|
TTQString t = e.firstChild().toText().data();
|
|
v = TTQVariant( t == "true" || t == "1", 0 );
|
|
} else if ( e.tagName() == "pixmap" ) {
|
|
v = TTQVariant( e.firstChild().toText().data() );
|
|
} else if ( e.tagName() == "iconset" ) {
|
|
v = TTQVariant( e.firstChild().toText().data() );
|
|
} else if ( e.tagName() == "image" ) {
|
|
v = TTQVariant( e.firstChild().toText().data() );
|
|
} else if ( e.tagName() == "enum" ) {
|
|
v = TTQVariant( e.firstChild().toText().data() );
|
|
} else if ( e.tagName() == "set" ) {
|
|
v = TTQVariant( e.firstChild().toText().data() );
|
|
} else if ( e.tagName() == "sizepolicy" ) {
|
|
TTQDomElement n3 = e.firstChild().toElement();
|
|
TTQSizePolicy sp;
|
|
while ( !n3.isNull() ) {
|
|
if ( n3.tagName() == "hsizetype" )
|
|
sp.setHorData( (TTQSizePolicy::SizeType)n3.firstChild().toText().data().toInt() );
|
|
else if ( n3.tagName() == "vsizetype" )
|
|
sp.setVerData( (TTQSizePolicy::SizeType)n3.firstChild().toText().data().toInt() );
|
|
else if ( n3.tagName() == "horstretch" )
|
|
sp.setHorStretch( n3.firstChild().toText().data().toInt() );
|
|
else if ( n3.tagName() == "verstretch" )
|
|
sp.setVerStretch( n3.firstChild().toText().data().toInt() );
|
|
n3 = n3.nextSibling().toElement();
|
|
}
|
|
v = TTQVariant( sp );
|
|
} else if ( e.tagName() == "cursor" ) {
|
|
v = TTQVariant( TTQCursor( e.firstChild().toText().data().toInt() ) );
|
|
} else if ( e.tagName() == "stringlist" ) {
|
|
TTQStringList lst;
|
|
TTQDomElement n;
|
|
for ( n = e.firstChild().toElement(); !n.isNull(); n = n.nextSibling().toElement() )
|
|
lst << n.firstChild().toText().data();
|
|
v = TTQVariant( lst );
|
|
} else if ( e.tagName() == "date" ) {
|
|
TTQDomElement n3 = e.firstChild().toElement();
|
|
int y, m, d;
|
|
y = m = d = 0;
|
|
while ( !n3.isNull() ) {
|
|
if ( n3.tagName() == "year" )
|
|
y = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "month" )
|
|
m = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "day" )
|
|
d = n3.firstChild().toText().data().toInt();
|
|
n3 = n3.nextSibling().toElement();
|
|
}
|
|
v = TTQVariant( TTQDate( y, m, d ) );
|
|
} else if ( e.tagName() == "time" ) {
|
|
TTQDomElement n3 = e.firstChild().toElement();
|
|
int h, m, s;
|
|
h = m = s = 0;
|
|
while ( !n3.isNull() ) {
|
|
if ( n3.tagName() == "hour" )
|
|
h = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "minute" )
|
|
m = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "second" )
|
|
s = n3.firstChild().toText().data().toInt();
|
|
n3 = n3.nextSibling().toElement();
|
|
}
|
|
v = TTQVariant( TTQTime( h, m, s ) );
|
|
} else if ( e.tagName() == "datetime" ) {
|
|
TTQDomElement n3 = e.firstChild().toElement();
|
|
int h, mi, s, y, mo, d ;
|
|
h = mi = s = y = mo = d = 0;
|
|
while ( !n3.isNull() ) {
|
|
if ( n3.tagName() == "hour" )
|
|
h = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "minute" )
|
|
mi = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "second" )
|
|
s = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "year" )
|
|
y = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "month" )
|
|
mo = n3.firstChild().toText().data().toInt();
|
|
else if ( n3.tagName() == "day" )
|
|
d = n3.firstChild().toText().data().toInt();
|
|
n3 = n3.nextSibling().toElement();
|
|
}
|
|
v = TTQVariant( TTQDateTime( TTQDate( y, mo, d ), TTQTime( h, mi, s ) ) );
|
|
}
|
|
return v;
|
|
}
|
|
|
|
|
|
/*! Returns the color which is returned in the dom element \a e.
|
|
*/
|
|
|
|
TTQColor DomTool::readColor( const TTQDomElement &e )
|
|
{
|
|
TTQDomElement n = e.firstChild().toElement();
|
|
int r= 0, g = 0, b = 0;
|
|
while ( !n.isNull() ) {
|
|
if ( n.tagName() == "red" )
|
|
r = n.firstChild().toText().data().toInt();
|
|
else if ( n.tagName() == "green" )
|
|
g = n.firstChild().toText().data().toInt();
|
|
else if ( n.tagName() == "blue" )
|
|
b = n.firstChild().toText().data().toInt();
|
|
n = n.nextSibling().toElement();
|
|
}
|
|
|
|
return TTQColor( r, g, b );
|
|
}
|
|
|
|
/*!
|
|
Returns the contents of attribute \a name of object \a e as
|
|
variant or the variant passed as \a defValue if the attribute does
|
|
not exist.
|
|
|
|
\sa hasAttribute()
|
|
*/
|
|
TTQVariant DomTool::readAttribute( const TTQDomElement& e, const TTQString& name, const TTQVariant& defValue, TTQString& comment )
|
|
{
|
|
TTQDomElement n;
|
|
for ( n = e.firstChild().toElement(); !n.isNull(); n = n.nextSibling().toElement() ) {
|
|
if ( n.tagName() == "attribute" ) {
|
|
if ( n.attribute( "name" ) != name )
|
|
continue;
|
|
return elementToVariant( n.firstChild().toElement(), defValue, comment );
|
|
}
|
|
}
|
|
return defValue;
|
|
}
|
|
|
|
/*!
|
|
\overload
|
|
*/
|
|
TTQVariant DomTool::readAttribute( const TTQDomElement& e, const TTQString& name, const TTQVariant& defValue )
|
|
{
|
|
TTQString comment;
|
|
return readAttribute( e, name, defValue, comment );
|
|
}
|
|
|
|
/*!
|
|
Returns wheter object \a e defines attribute \a name or not.
|
|
|
|
\sa readAttribute()
|
|
*/
|
|
bool DomTool::hasAttribute( const TTQDomElement& e, const TTQString& name )
|
|
{
|
|
TTQDomElement n;
|
|
for ( n = e.firstChild().toElement(); !n.isNull(); n = n.nextSibling().toElement() ) {
|
|
if ( n.tagName() == "attribute" ) {
|
|
if ( n.attribute( "name" ) != name )
|
|
continue;
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
static bool toBool( const TTQString& s )
|
|
{
|
|
return s == "true" || s.toInt() != 0;
|
|
}
|
|
|
|
/*!
|
|
Convert Qt 2.x format to Qt 3.0 format if necessary
|
|
*/
|
|
void DomTool::fixDocument( TTQDomDocument& doc )
|
|
{
|
|
TTQDomElement e;
|
|
TTQDomNode n;
|
|
TTQDomNodeList nl;
|
|
int i = 0;
|
|
|
|
e = doc.firstChild().toElement();
|
|
if ( e.tagName() != "UI" )
|
|
return;
|
|
|
|
// latest version, don't do anything
|
|
if ( e.hasAttribute("version") && e.attribute("version").toDouble() > 3.0 )
|
|
return;
|
|
|
|
nl = doc.elementsByTagName( "property" );
|
|
|
|
// in 3.0, we need to fix a spelling error
|
|
if ( e.hasAttribute("version") && e.attribute("version").toDouble() == 3.0 ) {
|
|
for ( i = 0; i < (int) nl.length(); i++ ) {
|
|
TTQDomElement el = nl.item(i).toElement();
|
|
TTQString s = el.attribute( "name" );
|
|
if ( s == "resizeable" ) {
|
|
el.removeAttribute( "name" );
|
|
el.setAttribute( "name", "resizable" );
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
|
|
// in versions smaller than 3.0 we need to change more
|
|
e.setAttribute( "version", 3.0 );
|
|
|
|
e.setAttribute("stdsetdef", 1 );
|
|
for ( i = 0; i < (int) nl.length(); i++ ) {
|
|
e = nl.item(i).toElement();
|
|
TTQString name;
|
|
TTQDomElement n2 = e.firstChild().toElement();
|
|
if ( n2.tagName() == "name" ) {
|
|
name = n2.firstChild().toText().data();
|
|
if ( name == "resizeable" )
|
|
e.setAttribute( "name", "resizable" );
|
|
else
|
|
e.setAttribute( "name", name );
|
|
e.removeChild( n2 );
|
|
}
|
|
bool stdset = toBool( e.attribute( "stdset" ) );
|
|
if ( stdset || name == "toolTip" || name == "whatsThis" ||
|
|
name == "buddy" ||
|
|
e.parentNode().toElement().tagName() == "item" ||
|
|
e.parentNode().toElement().tagName() == "spacer" ||
|
|
e.parentNode().toElement().tagName() == "column"
|
|
)
|
|
e.removeAttribute( "stdset" );
|
|
else
|
|
e.setAttribute( "stdset", 0 );
|
|
}
|
|
|
|
nl = doc.elementsByTagName( "attribute" );
|
|
for ( i = 0; i < (int) nl.length(); i++ ) {
|
|
e = nl.item(i).toElement();
|
|
TTQString name;
|
|
TTQDomElement n2 = e.firstChild().toElement();
|
|
if ( n2.tagName() == "name" ) {
|
|
name = n2.firstChild().toText().data();
|
|
e.setAttribute( "name", name );
|
|
e.removeChild( n2 );
|
|
}
|
|
}
|
|
|
|
nl = doc.elementsByTagName( "image" );
|
|
for ( i = 0; i < (int) nl.length(); i++ ) {
|
|
e = nl.item(i).toElement();
|
|
TTQString name;
|
|
TTQDomElement n2 = e.firstChild().toElement();
|
|
if ( n2.tagName() == "name" ) {
|
|
name = n2.firstChild().toText().data();
|
|
e.setAttribute( "name", name );
|
|
e.removeChild( n2 );
|
|
}
|
|
}
|
|
|
|
nl = doc.elementsByTagName( "widget" );
|
|
for ( i = 0; i < (int) nl.length(); i++ ) {
|
|
e = nl.item(i).toElement();
|
|
TTQString name;
|
|
TTQDomElement n2 = e.firstChild().toElement();
|
|
if ( n2.tagName() == "class" ) {
|
|
name = n2.firstChild().toText().data();
|
|
e.setAttribute( "class", name );
|
|
e.removeChild( n2 );
|
|
}
|
|
}
|
|
|
|
}
|
|
|