summaryrefslogtreecommitdiffstats
path: root/languages/cpp/pcsimporter/qt4importer/tdevqt4importer.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/pcsimporter/qt4importer/tdevqt4importer.h')
-rw-r--r--languages/cpp/pcsimporter/qt4importer/tdevqt4importer.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/languages/cpp/pcsimporter/qt4importer/tdevqt4importer.h b/languages/cpp/pcsimporter/qt4importer/tdevqt4importer.h
new file mode 100644
index 00000000..53f6a18e
--- /dev/null
+++ b/languages/cpp/pcsimporter/qt4importer/tdevqt4importer.h
@@ -0,0 +1,40 @@
+/***************************************************************************
+ * Copyright (C) 2003 by Roberto Raggi *
+ * roberto@kdevelop.org *
+ * *
+ * This program 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 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#ifndef TDEVTQTIMPORTER_H
+#define TDEVTQTIMPORTER_H
+
+#include <tdevpcsimporter.h>
+#include <tqguardedptr.h>
+
+class SettingsDialog;
+class KTempFile;
+
+class TDevQt4Importer : public TDevPCSImporter
+{
+ Q_OBJECT
+
+public:
+ TDevQt4Importer( TQObject* parent=0, const char* name=0, const TQStringList& args=TQStringList() );
+ virtual ~TDevQt4Importer();
+
+ virtual TQString dbName() const { return TQString::fromLatin1("TQt4"); }
+ virtual TQStringList fileList();
+ virtual TQStringList includePaths();
+
+ virtual TQWidget* createSettingsPage( TQWidget* parent, const char* name=0 );
+
+private:
+ TQGuardedPtr<SettingsDialog> m_settings;
+ KTempFile *m_qtfile;
+};
+
+#endif