summaryrefslogtreecommitdiffstats
path: root/pyuic2/domtool.h
diff options
context:
space:
mode:
authoraneejit1 <aneejit1@gmail.com>2022-07-28 15:46:19 +0000
committeraneejit1 <aneejit1@gmail.com>2022-07-30 17:54:15 +0000
commite602246539fd7435aaeb440fcb7f852c92c8426b (patch)
tree35e09f5d93c67158e6c1160d6d9b27ae8a0bf966 /pyuic2/domtool.h
parentb34531364d5c0d3be7056d87011afd8bd538a0e7 (diff)
downloadpytqt-e602246539fd7435aaeb440fcb7f852c92c8426b.tar.gz
pytqt-e602246539fd7435aaeb440fcb7f852c92c8426b.zip
Remove Qt V2 support and example files
Build files for pyuic2 have been removed along with the examples for version 2 of Qt and the build/configure scripts have been amended accordingly. The "examples3" directory has been renamed to just "examples". Signed-off-by: aneejit1 <aneejit1@gmail.com>
Diffstat (limited to 'pyuic2/domtool.h')
-rw-r--r--pyuic2/domtool.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/pyuic2/domtool.h b/pyuic2/domtool.h
deleted file mode 100644
index b3f833c..0000000
--- a/pyuic2/domtool.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/**********************************************************************
-** 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 TQt 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 TQt
-{
-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