/* This file is part of the KDE project Copyright (C) 2004-2007 Matthias Kretz This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) version 3. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef BACKENDSELECTION_H #define BACKENDSELECTION_H #include "ui_backendselection.h" #include #include #include class KCModuleProxy; class BackendSelection : public QWidget, private Ui::BackendSelection { Q_OBJECT public: explicit BackendSelection(QWidget *parent = 0); void load(); void save(); void defaults(); private Q_SLOTS: void selectionChanged(); void up(); void down(); void openWebsite(const QString &url); Q_SIGNALS: void changed(); private: void showBackendKcm(const KService::Ptr &backendService); void loadServices(const KService::List &offers); QHash m_services; QHash m_kcms; int m_emptyPage; }; // vim: sw=4 ts=4 tw=80 #endif // BACKENDSELECTION_H