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

« back to all changes in this revision

Viewing changes to kwin/clients/oxygen/config/oxygenexceptionmodel.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 oxygenexceptionmodel_h
 
2
#define oxygenexceptionmodel_h
 
3
//////////////////////////////////////////////////////////////////////////////
 
4
// oxygenexceptionmodel.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 "oxygenlistmodel.h"
 
29
#include "../oxygenexception.h"
 
30
 
 
31
namespace Oxygen
 
32
{
 
33
    
 
34
    //! qlistview for object counters
 
35
    class ExceptionModel: public ListModel<Exception>
 
36
    {
 
37
        
 
38
        public:
 
39
        
 
40
        //! number of columns
 
41
        enum { nColumns = 3 };
 
42
        
 
43
        //! column type enumeration
 
44
        enum ColumnType {
 
45
            ENABLED,
 
46
            TYPE,
 
47
            REGEXP
 
48
        };
 
49
        
 
50
        
 
51
        //!@name methods reimplemented from base class
 
52
        //@{
 
53
        
 
54
        // return data for a given index
 
55
        virtual QVariant data(const QModelIndex &index, int role) const;
 
56
        
 
57
        //! header data
 
58
        virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
 
59
        
 
60
        //! number of columns for a given index
 
61
        virtual int columnCount(const QModelIndex& ) const
 
62
        { return nColumns; }
 
63
        
 
64
        //@}
 
65
        
 
66
        protected:
 
67
        
 
68
        //! sort
 
69
        virtual void privateSort( int, Qt::SortOrder )
 
70
        {}
 
71
        
 
72
        private:
 
73
        
 
74
        //! column titles
 
75
        static const QString _columnTitles[ nColumns ];
 
76
        
 
77
    };
 
78
    
 
79
}
 
80
#endif