kde-workspace/plasma/shells/plasma-overlay/backgrounddialog.h
Ivailo Monev efbde9e504 plasma: organize sub-directories
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2015-12-24 22:48:47 +02:00

52 lines
1.2 KiB
C++

/*
Copyright (c) 2007 Paolo Capriotti <p.capriotti@gmail.com>
Copyright (c) 2008 by Petri Damsten <damu@iki.fi>
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 <KDialog>
#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