mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
52 lines
1.2 KiB
C++
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
|