blob: 9d31897ba432f42f426e11866773d01636ea6628 (
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
|
/**********************************************************************
** Copyright (C) 2000 Troll Tech AS. All rights reserved.
** Copyright (C) 2000, 2001 Phil Thompson <phil@river-bank.demon.co.uk>
**
** This file is part of Qt GUI Designer.
**
** This file may be distributed under the terms of the GNU General
** Public License version 2 as published by the Free Software
** Foundation and appearing in the file COPYING included in the
** packaging of this file. If you did not get the file, send email
** to info@trolltech.com
**
** The file is provided AS IS with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE.
**
**********************************************************************/
#ifndef DOMTOOL_H
#define DOMTOOL_H
#include <tqnamespace.h>
#include <tqvariant.h>
#include <tqdom.h>
class DomTool : public Qt
{
public:
static TQVariant readProperty( const TQDomElement& e, const TQString& name, const TQVariant& defValue );
static bool hasProperty( const TQDomElement& e, const TQString& name );
static TQVariant elementToVariant( const TQDomElement& e, const TQVariant& defValue );
static TQVariant elementToVariant( const TQDomElement& e, const TQVariant& defValue, TQString &comment );
static TQVariant readAttribute( const TQDomElement& e, const TQString& name, const TQVariant& defValue );
static bool hasAttribute( const TQDomElement& e, const TQString& name );
static TQColor readColor( const TQDomElement &e );
};
#endif // DOMTOOL_H
|