summaryrefslogtreecommitdiffstats
path: root/languages/cpp/qtbuildconfig.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:56:07 +0000
commitd6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch)
treed109539636691d7b03036ca1c0ed29dbae6577cf /languages/cpp/qtbuildconfig.h
parent3331a47a9cad24795c7440ee8107143ce444ef34 (diff)
downloadtdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz
tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'languages/cpp/qtbuildconfig.h')
-rw-r--r--languages/cpp/qtbuildconfig.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/languages/cpp/qtbuildconfig.h b/languages/cpp/qtbuildconfig.h
index 6042281d..d9790111 100644
--- a/languages/cpp/qtbuildconfig.h
+++ b/languages/cpp/qtbuildconfig.h
@@ -18,8 +18,8 @@
#ifndef QTBUILDCONFIG_H
#define QTBUILDCONFIG_H
-#include <qobject.h>
-#include <qstringlist.h>
+#include <tqobject.h>
+#include <tqstringlist.h>
class CppSupportPart;
class QDomDocument;
@@ -34,26 +34,26 @@ class QtBuildConfig : public QObject
Q_OBJECT
public:
- QtBuildConfig( CppSupportPart* part, QDomDocument* dom );
+ QtBuildConfig( CppSupportPart* part, TQDomDocument* dom );
virtual ~QtBuildConfig();
inline bool isUsed() const { return m_used; }
inline int version() const { return m_version; }
inline int includeStyle() const { return m_includeStyle; }
- inline const QString& root() const { return m_root; }
- inline const QString& qmakePath() const { return m_qmakePath; }
- inline const QString& designerPath() const { return m_designerPath; }
- inline const QStringList& designerPluginPaths() const { return m_designerPluginPaths; }
- inline const QString& designerIntegration() const { return m_designerIntegration; }
+ inline const TQString& root() const { return m_root; }
+ inline const TQString& qmakePath() const { return m_qmakePath; }
+ inline const TQString& designerPath() const { return m_designerPath; }
+ inline const TQStringList& designerPluginPaths() const { return m_designerPluginPaths; }
+ inline const TQString& designerIntegration() const { return m_designerIntegration; }
void setUsed( bool used );
void setVersion( int version );
void setIncludeStyle( int style );
- void setRoot( const QString& root );
- void setDesignerPath( const QString& path );
- void setDesignerPluginPaths( const QStringList& pfx );
- void setQMakePath( const QString& path );
- void setDesignerIntegration( const QString& designerIntegration );
+ void setRoot( const TQString& root );
+ void setDesignerPath( const TQString& path );
+ void setDesignerPluginPaths( const TQStringList& pfx );
+ void setQMakePath( const TQString& path );
+ void setDesignerIntegration( const TQString& designerIntegration );
void init();
public slots:
@@ -64,25 +64,25 @@ signals:
private:
- bool isValidQtDir( const QString& ) const;
+ bool isValidQtDir( const TQString& ) const;
void findQtDir();
- QString findExecutable( const QString& ) const;
- void buildBinDirs( QStringList& ) const;
- bool isExecutable( const QString& ) const;
+ TQString findExecutable( const TQString& ) const;
+ void buildBinDirs( TQStringList& ) const;
+ bool isExecutable( const TQString& ) const;
CppSupportPart* m_part; ///< The cpp support part
- QDomDocument* m_dom; ///< The project configuration
+ TQDomDocument* m_dom; ///< The project configuration
bool m_used; ///< Flag if qt is used in this project.
int m_version; ///< The major version of the qt library (3 or 4)
int m_includeStyle; ///< The type of include style used (qt 3 or 4)
- QString m_root; ///< The root directory of the used qt installation for Qt3
- QString m_designerPath; ///< The path including the binary name of Qt Designer
- QString m_qmakePath; ///< The path including the binary name of QMake
- QStringList m_designerPluginPaths; ///< The Prefix for Designer
- QString m_designerIntegration; ///< The type of designer used, kdevdesigner or qt designer
+ TQString m_root; ///< The root directory of the used qt installation for Qt3
+ TQString m_designerPath; ///< The path including the binary name of Qt Designer
+ TQString m_qmakePath; ///< The path including the binary name of QMake
+ TQStringList m_designerPluginPaths; ///< The Prefix for Designer
+ TQString m_designerIntegration; ///< The type of designer used, kdevdesigner or qt designer
- static const QString m_configRoot; ///< The root path of the configuration
+ static const TQString m_configRoot; ///< The root path of the configuration
};
#endif