languages/cpp/pcsimporter/kdelibsimporter/kdevkdelibsimporter.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2003 by Roberto Raggi * 00003 * roberto@kdevelop.org * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 ***************************************************************************/ 00011 00012 #ifndef KDEVQTIMPORTER_H 00013 #define KDEVQTIMPORTER_H 00014 00015 #include <kdevpcsimporter.h> 00016 #include <qguardedptr.h> 00017 00018 class SettingsDialog; 00019 00020 class KDevKDELibsImporter : public KDevPCSImporter 00021 { 00022 Q_OBJECT 00023 public: 00024 KDevKDELibsImporter( QObject* parent=0, const char* name=0, const QStringList& args=QStringList() ); 00025 virtual ~KDevKDELibsImporter(); 00026 00027 virtual QString dbName() const { return QString::fromLatin1("KDElibs"); } 00028 virtual QStringList fileList(); 00029 virtual QStringList includePaths(); 00030 00031 virtual QWidget* createSettingsPage( QWidget* parent, const char* name=0 ); 00032 00033 private: 00034 QStringList fileList( const QString& path ); 00035 00036 private: 00037 QGuardedPtr<SettingsDialog> m_settings; 00038 }; 00039 00040 #endif