/*
Copyright (c) 2007 Paolo Capriotti
Copyright (c) 2008 by Petri Damsten
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 BACKGROUNDDIALOG_H
#define BACKGROUNDDIALOG_H
#include
#include "ui_BackgroundDialog.h"
namespace Plasma {
class Wallpaper;
class Containment;
class View;
}
class ScreenPreviewWidget;
class BackgroundDialog : public KDialog, public Ui::BackgroundDialog
{
Q_OBJECT
public:
BackgroundDialog(const QSize &res, Plasma::Containment *containment,
/*Plasma::View *view,*/ QWidget *parent = 0);
~BackgroundDialog();
void reloadConfig();
public slots:
void saveConfig();
private:
KConfigGroup wallpaperConfig(const QString &plugin);
private slots:
void changeBackgroundMode(int mode);
void cleanup();
private:
Plasma::Wallpaper* m_wallpaper;
//Plasma::View* m_view;
Plasma::Containment* m_containment;
ScreenPreviewWidget* m_preview;
};
#endif // BACKGROUNDDIALOG_H