~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to kwin/kcmkwin/kwindecoration/configdialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/********************************************************************
 
2
 KWin - the KDE window manager
 
3
 This file is part of the KDE project.
 
4
 
 
5
Copyright (C) 2009 Martin Gräßlin <kde@martin-graesslin.com>
 
6
 
 
7
This program is free software; you can redistribute it and/or modify
 
8
it under the terms of the GNU General Public License as published by
 
9
the Free Software Foundation; either version 2 of the License, or
 
10
(at your option) any later version.
 
11
 
 
12
This program is distributed in the hope that it will be useful,
 
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
GNU General Public License for more details.
 
16
 
 
17
You should have received a copy of the GNU General Public License
 
18
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
*********************************************************************/
 
20
#ifndef KWINDECORATIONCONFIGDIALOG_H
 
21
#define KWINDECORATIONCONFIGDIALOG_H
 
22
#include <QWidget>
 
23
#include <kdialog.h>
 
24
#include <kdecoration.h>
 
25
#include "ui_config.h"
 
26
#include "ui_auroraeconfig.h"
 
27
 
 
28
namespace KWin
 
29
{
 
30
 
 
31
class KWinAuroraeConfigForm : public QWidget, public Ui::KWinAuroraeConfigForm
 
32
{
 
33
    Q_OBJECT
 
34
 
 
35
public:
 
36
    explicit KWinAuroraeConfigForm(QWidget* parent);
 
37
};
 
38
 
 
39
class KWinDecorationConfigForm : public QWidget, public Ui::KWinDecorationConfigForm
 
40
{
 
41
    Q_OBJECT
 
42
 
 
43
public:
 
44
    explicit KWinDecorationConfigForm(QWidget* parent);
 
45
};
 
46
 
 
47
class KWinDecorationConfigDialog : public KDialog, public KDecorationDefines
 
48
{
 
49
    Q_OBJECT
 
50
public:
 
51
    KWinDecorationConfigDialog(QString decoLib, const QList<QVariant>& borderSizes,
 
52
                               KDecorationDefines::BorderSize size, QWidget* parent = 0,
 
53
                               Qt::WFlags flags = 0);
 
54
    ~KWinDecorationConfigDialog();
 
55
 
 
56
    KDecorationDefines::BorderSize borderSize() const;
 
57
 
 
58
signals:
 
59
    void pluginSave(KConfigGroup& group);
 
60
 
 
61
private slots:
 
62
    void slotSelectionChanged();
 
63
    void slotAccepted();
 
64
    void slotDefault();
 
65
 
 
66
private:
 
67
    int borderSizeToIndex(KDecorationDefines::BorderSize size, const QList<QVariant>& sizes);
 
68
    QString styleToConfigLib(const QString& styleLib) const;
 
69
 
 
70
private:
 
71
    KWinDecorationConfigForm* m_ui;
 
72
    QList<QVariant> m_borderSizes;
 
73
    KSharedConfigPtr m_kwinConfig;
 
74
 
 
75
    QObject*(*allocatePlugin)(KConfigGroup& conf, QWidget* parent);
 
76
    QObject* m_pluginObject;
 
77
    QWidget* m_pluginConfigWidget;
 
78
};
 
79
 
 
80
} // namespace KWin
 
81
 
 
82
#endif // KWINDECORATIONCONFIGDIALOG_H