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

« back to all changes in this revision

Viewing changes to libs/oxygen/oxygenitemmodel.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 ItemModel_h
 
2
#define ItemModel_h
 
3
 
 
4
//////////////////////////////////////////////////////////////////////////////
 
5
// itemmodel.h
 
6
// -------------------
 
7
//
 
8
// Copyright (c) 2009-2010 Hugo Pereira Da Costa <hugo.pereira@free.fr>
 
9
//
 
10
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
11
// of this software and associated documentation files (the "Software"), to
 
12
// deal in the Software without restriction, including without limitation the
 
13
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 
14
// sell copies of the Software, and to permit persons to whom the Software is
 
15
// furnished to do so, subject to the following conditions:
 
16
//
 
17
// The above copyright notice and this permission notice shall be included in
 
18
// all copies or substantial portions of the Software.
 
19
//
 
20
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
21
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
22
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
23
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
24
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
25
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 
26
// IN THE SOFTWARE.
 
27
//////////////////////////////////////////////////////////////////////////////
 
28
 
 
29
#include "oxygen_export.h"
 
30
 
 
31
#include <QtCore/QAbstractItemModel>
 
32
 
 
33
namespace Oxygen
 
34
{
 
35
 
 
36
    //! Job model. Stores job information for display in lists
 
37
    class OXYGEN_EXPORT ItemModel : public QAbstractItemModel
 
38
    {
 
39
        
 
40
        public:
 
41
        
 
42
        //! constructor
 
43
        explicit ItemModel(QObject *parent = 0);
 
44
        
 
45
        //! destructor
 
46
        virtual ~ItemModel()
 
47
        {}
 
48
        
 
49
        //! return all indexes in model starting from parent [recursive]
 
50
        QModelIndexList indexes( int column = 0, const QModelIndex& parent = QModelIndex() ) const;
 
51
        
 
52
        //!@name sorting
 
53
        //@{
 
54
        
 
55
        //! sort
 
56
        virtual void sort( void )
 
57
        { sort( sortColumn(), sortOrder() ); }
 
58
        
 
59
        //! sort
 
60
        virtual void sort( int column, Qt::SortOrder order = Qt::AscendingOrder );
 
61
        
 
62
        //! current sorting column
 
63
        const int& sortColumn( void ) const
 
64
        { return _sortColumn; }
 
65
        
 
66
        //! current sort order
 
67
        const Qt::SortOrder& sortOrder( void ) const
 
68
        { return _sortOrder; }
 
69
        
 
70
        //@}
 
71
        
 
72
        protected:
 
73
        
 
74
        //! this sort columns without calling the layout changed callbacks
 
75
        void privateSort( void )
 
76
        { privateSort( sortColumn(), sortOrder() ); }
 
77
        
 
78
        //! private sort, with no signals emmitted
 
79
        virtual void privateSort( int column, Qt::SortOrder order ) = 0;
 
80
        
 
81
        //! used to sort items in list
 
82
        class SortFTor
 
83
        {
 
84
            
 
85
            public:
 
86
            
 
87
            //! constructor
 
88
            explicit SortFTor( const int& type, Qt::SortOrder order = Qt::AscendingOrder ):
 
89
                _type( type ),
 
90
                _order( order )
 
91
            {}
 
92
            
 
93
            protected:
 
94
            
 
95
            //! column
 
96
            int _type;
 
97
            
 
98
            //! order
 
99
            Qt::SortOrder _order;
 
100
            
 
101
        };
 
102
        
 
103
        private:
 
104
        
 
105
        //! sorting column
 
106
        int _sortColumn;
 
107
        
 
108
        //! sorting order
 
109
        Qt::SortOrder _sortOrder;
 
110
        
 
111
    };
 
112
    
 
113
}
 
114
 
 
115
#endif