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

« back to all changes in this revision

Viewing changes to kwin/clients/oxygen/config/oxygenexceptionmodel.cpp

  • 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
// oxygenexceptionmodel.cpp
 
3
// -------------------
 
4
//
 
5
// Copyright (c) 2009 Hugo Pereira Da Costa <hugo.pereira@free.fr>
 
6
//
 
7
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
8
// of this software and associated documentation files (the "Software"), to
 
9
// deal in the Software without restriction, including without limitation the
 
10
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 
11
// sell copies of the Software, and to permit persons to whom the Software is
 
12
// furnished to do so, subject to the following conditions:
 
13
//
 
14
// The above copyright notice and this permission notice shall be included in
 
15
// all copies or substantial portions of the Software.
 
16
//
 
17
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
18
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
19
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
20
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
21
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
22
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 
23
// IN THE SOFTWARE.
 
24
//////////////////////////////////////////////////////////////////////////////
 
25
 
 
26
#include "oxygenexceptionmodel.h"
 
27
#include <KLocale>
 
28
namespace Oxygen
 
29
{
 
30
    
 
31
    //_______________________________________________
 
32
    const QString ExceptionModel::_columnTitles[ ExceptionModel::nColumns ] =
 
33
    {
 
34
        "",
 
35
        i18n("Exception Type"),
 
36
        i18n("Regular Expression")
 
37
    };
 
38
    
 
39
    //__________________________________________________________________
 
40
    QVariant ExceptionModel::data( const QModelIndex& index, int role ) const
 
41
    {
 
42
        
 
43
        // check index, role and column
 
44
        if( !index.isValid() ) return QVariant();
 
45
        
 
46
        // retrieve associated file info
 
47
        const Exception& exception( get(index) );
 
48
        
 
49
        // return text associated to file and column
 
50
        if( role == Qt::DisplayRole )
 
51
        {
 
52
            
 
53
            switch( index.column() )
 
54
            {
 
55
                case TYPE: return exception.typeName( true );
 
56
                case REGEXP: return exception.regExp().pattern();
 
57
                default: return QVariant();
 
58
                break;
 
59
            }
 
60
            
 
61
        } else if( role == Qt::CheckStateRole &&  index.column() == ENABLED ) {
 
62
            
 
63
            return exception.enabled() ? Qt::Checked : Qt::Unchecked;
 
64
            
 
65
        } else if( role == Qt::ToolTipRole &&  index.column() == ENABLED ) {
 
66
            
 
67
            return i18n("Enable/disable this exception");
 
68
            
 
69
        }
 
70
        
 
71
        
 
72
        return QVariant();
 
73
    }
 
74
    
 
75
    //__________________________________________________________________
 
76
    QVariant ExceptionModel::headerData(int section, Qt::Orientation orientation, int role) const
 
77
    {
 
78
        
 
79
        if(
 
80
            orientation == Qt::Horizontal &&
 
81
            role == Qt::DisplayRole &&
 
82
            section >= 0 &&
 
83
            section < nColumns )
 
84
        { return _columnTitles[section]; }
 
85
        
 
86
        // return empty
 
87
        return QVariant();
 
88
        
 
89
    }
 
90
    
 
91
}