~ubuntu-branches/ubuntu/gutsy/kdebase-workspace/gutsy-backports

« back to all changes in this revision

Viewing changes to kwin/effects/maketransparent_config.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-10-31 19:16:54 UTC
  • Revision ID: james.westby@ubuntu.com-20071031191654-xuof6e1jg6uxqaze
Tags: 3.95.0-0ubuntu1~gutsy1
New upstream release

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) 2007 Rivo Laks <rivolaks@hot.ee>
 
6
 
 
7
You can Freely distribute this program under the GNU General Public
 
8
License. See the file "COPYING" for the exact licensing terms.
 
9
******************************************************************/
 
10
 
 
11
#ifndef KWIN_MAKETRANSPARENT_CONFIG_H
 
12
#define KWIN_MAKETRANSPARENT_CONFIG_H
 
13
 
 
14
#define KDE3_SUPPORT
 
15
#include <kcmodule.h>
 
16
#undef KDE3_SUPPORT
 
17
 
 
18
class QSpinBox;
 
19
 
 
20
namespace KWin
 
21
{
 
22
 
 
23
class MakeTransparentEffectConfig : public KCModule
 
24
    {
 
25
    Q_OBJECT
 
26
    public:
 
27
        explicit MakeTransparentEffectConfig(QWidget* parent = 0, const QVariantList& args = QVariantList());
 
28
 
 
29
        virtual void save();
 
30
        virtual void load();
 
31
        virtual void defaults();
 
32
 
 
33
    private:
 
34
        QSpinBox* mDecoration;
 
35
        QSpinBox* mMoveResize;
 
36
        QSpinBox* mDialogs;
 
37
    };
 
38
 
 
39
} // namespace
 
40
 
 
41
#endif