~ubuntu-branches/ubuntu/natty/plasma-mobile/natty

« back to all changes in this revision

Viewing changes to containments/mobilelauncher/models/pagedproxymodel.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Belem
  • Date: 2011-01-01 16:58:27 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110101165827-vij700zj247uxcdr
Tags: 0.0~svn20110101-0ubuntu1
* New svn snapshot
* Remove kubuntu_01_library_version.diff and
  debian-changes-0.0~svn20100830-0ubuntu4, they don't apply and aren't
  needed in the current snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright 2010 Marco Martin <notmart@gmail.com>
 
3
 
 
4
    This library is free software; you can redistribute it and/or
 
5
    modify it under the terms of the GNU Library General Public
 
6
    License as published by the Free Software Foundation; either
 
7
    version 2 of the License, or (at your option) any later version.
 
8
 
 
9
    This library is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
    Library General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU Library General Public License
 
15
    along with this library; see the file COPYING.LIB.  If not, write to
 
16
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
    Boston, MA 02110-1301, USA.
 
18
*/
 
19
 
 
20
#ifndef PAGEDPROXYMODEL_H
 
21
#define PAGEDPROXYMODEL_H
 
22
 
 
23
#include <QProxyModel>
 
24
 
 
25
class PagedProxyModel : public QProxyModel
 
26
{
 
27
    Q_OBJECT
 
28
    Q_PROPERTY(int currentPage READ currentPage WRITE setCurrentPage)
 
29
    Q_PROPERTY(int pageSize READ pageSize WRITE setPageSize)
 
30
    Q_PROPERTY(QObject *sourceModel READ sourceModel WRITE setSourceModel)
 
31
 
 
32
public:
 
33
    PagedProxyModel(QObject *parent = 0);
 
34
    ~PagedProxyModel();
 
35
 
 
36
    void setSourceModel(QObject *source);
 
37
    QObject *sourceModel() const;
 
38
 
 
39
    int totalPages();
 
40
 
 
41
    void setCurrentPage(const int page);
 
42
    int currentPage() const;
 
43
 
 
44
    void setPageSize(const int size);
 
45
    int pageSize() const;
 
46
 
 
47
    int rowCount(const QModelIndex &parent = QModelIndex()) const;
 
48
    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
 
49
 
 
50
Q_SIGNALS:
 
51
    void modelReset();
 
52
 
 
53
private:
 
54
    int m_pageSize;
 
55
    int m_currentPage;
 
56
};
 
57
 
 
58
#endif