KNewStuff
providerdialog.h
Go to the documentation of this file.00001 /* 00002 This file is part of KNewStuff2. 00003 Copyright (c) 2002 Cornelius Schumacher <schumacher@kde.org> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Lesser General Public 00007 License as published by the Free Software Foundation; either 00008 version 2.1 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Lesser General Public License for more details. 00014 00015 You should have received a copy of the GNU Lesser General Public 00016 License along with this library. If not, see <http://www.gnu.org/licenses/>. 00017 */ 00018 #ifndef KNEWSTUFF2_UI_PROVIDERDIALOG_H 00019 #define KNEWSTUFF2_UI_PROVIDERDIALOG_H 00020 00021 #include <knewstuff2/knewstuff_export.h> 00022 00023 #include <kdialog.h> 00024 00025 class QTreeWidget; 00026 00027 namespace KNS 00028 { 00029 00030 class Provider; 00031 //class Engine; 00032 00046 class ProviderDialog : public KDialog 00047 { 00048 Q_OBJECT 00049 public: 00055 ProviderDialog(QWidget *parent); 00056 00060 void clear(); 00061 00065 void addProvider(Provider *); 00066 00067 Provider *provider() const; 00068 00069 protected Q_SLOTS: 00070 void slotOk(); 00071 00072 private: 00073 // Engine *mEngine; 00074 00075 QTreeWidget *mListWidget; 00076 Provider *m_provider; 00077 }; 00078 00079 } 00080 00081 #endif