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

« back to all changes in this revision

Viewing changes to kwin/clients/oxygen/config/oxygenexceptiondialog.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 oxygenexceptiondialog_h
 
2
#define oxygenexceptiondialog_h
 
3
//////////////////////////////////////////////////////////////////////////////
 
4
// oxygenexceptiondialog.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 <KDialog>
 
29
#include <KLineEdit>
 
30
#include <KComboBox>
 
31
#include <QtGui/QCheckBox>
 
32
 
 
33
#include <map>
 
34
 
 
35
#include "../oxygenexception.h"
 
36
#include "ui_oxygenexceptiondialog.h"
 
37
 
 
38
namespace Oxygen
 
39
{
 
40
 
 
41
    class DetectDialog;
 
42
 
 
43
    //! oxygen exceptions list
 
44
    class ExceptionDialog: public KDialog
 
45
    {
 
46
 
 
47
        Q_OBJECT
 
48
 
 
49
        public:
 
50
 
 
51
        //! constructor
 
52
        ExceptionDialog( QWidget* parent );
 
53
 
 
54
        //! set exception
 
55
        void setException( Exception );
 
56
 
 
57
        //! get exception
 
58
        Exception exception( void ) const;
 
59
 
 
60
        private slots:
 
61
 
 
62
        void selectWindowProperties( void );
 
63
 
 
64
        void readWindowProperties( bool );
 
65
 
 
66
        private:
 
67
 
 
68
        Ui_OxygenExceptionWidget ui;
 
69
 
 
70
        //! map mask and checkbox
 
71
        typedef std::map< Exception::AttributesMask, QCheckBox*> CheckBoxMap;
 
72
 
 
73
        //! map mask and checkbox
 
74
        CheckBoxMap _checkBoxes;
 
75
 
 
76
        //! internal exception
 
77
        Exception _exception;
 
78
 
 
79
        //! detection dialog
 
80
        DetectDialog* _detectDialog;
 
81
 
 
82
    };
 
83
 
 
84
}
 
85
 
 
86
#endif