mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 2004-2007 Matthias Kretz <kretz@kde.org>
|
|
|
|
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 <QWidget>
|
|
#include <QtCore/QHash>
|
|
|
|
|
|
#include <kservice.h>
|
|
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<QString, KService::Ptr> m_services;
|
|
QHash<QString, KCModuleProxy *> m_kcms;
|
|
int m_emptyPage;
|
|
};
|
|
|
|
// vim: sw=4 ts=4 tw=80
|
|
#endif // BACKENDSELECTION_H
|