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

« back to all changes in this revision

Viewing changes to kwin/clients/oxygen/config/oxygenshadowconfigurationui.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
#ifndef ShadowConfigurationUi_h
 
2
#define ShadowConfigurationUi_h
 
3
//////////////////////////////////////////////////////////////////////////////
 
4
// ShadowConfigurationUi.h
 
5
// -------------------
 
6
//
 
7
// Copyright (c) 2009 Hugo Pereira Da Costa <hugo.pereira@free.fr>
 
8
//
 
9
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
10
// of this software and associated documentation files (the "Software"), to
 
11
// deal in the Software without restriction, including without limitation the
 
12
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 
13
// sell copies of the Software, and to permit persons to whom the Software is
 
14
// furnished to do so, subject to the following conditions:
 
15
//
 
16
// The above copyright notice and this permission notice shall be included in
 
17
// all copies or substantial portions of the Software.
 
18
//
 
19
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
20
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
21
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
22
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
24
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 
25
// IN THE SOFTWARE.
 
26
//////////////////////////////////////////////////////////////////////////////
 
27
 
 
28
#include <QtGui/QCheckBox>
 
29
#include <QtGui/QGroupBox>
 
30
#include <ui_oxygenshadowconfigurationui.h>
 
31
namespace Oxygen
 
32
{
 
33
 
 
34
    //_____________________________________________
 
35
    class ShadowConfigurationUi: public QGroupBox
 
36
    {
 
37
 
 
38
        Q_OBJECT
 
39
 
 
40
        public:
 
41
 
 
42
        //! constructor
 
43
        ShadowConfigurationUi( QWidget* );
 
44
        Ui_ShadowConfiguraionUI ui;
 
45
 
 
46
        signals:
 
47
 
 
48
        //! emmitted when configuration is changed
 
49
        void changed( void );
 
50
 
 
51
        protected slots:
 
52
 
 
53
        //! update enable state of outer color chooser
 
54
        void enableOuterColor( void )
 
55
        { ui.outerColor->setEnabled( isChecked() && ui.useOuterColor->isChecked() ); }
 
56
 
 
57
    };
 
58
 
 
59
}
 
60
 
 
61
#endif