~ubuntu-branches/ubuntu/oneiric/pykde4/oneiric-proposed

« back to all changes in this revision

Viewing changes to sip/kio/kdirsortfilterproxymodel.sip

  • Committer: Bazaar Package Importer
  • Author(s): Romain Perier
  • Date: 2011-07-11 12:42:17 UTC
  • Revision ID: james.westby@ubuntu.com-20110711124217-stfa5thgiyis668w
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
//     Copyright 2008 Jim Bublitz <jbublitz@nwinternet.com>
 
3
//     Earlier copyrights 1998 - 2007 Jim Bublitz also apply
 
4
 
 
5
//                 Generated by twine
 
6
 
 
7
// This file is part of PyKDE4.
 
8
 
 
9
// PyKDE4 is free software; you can redistribute it and/or modify
 
10
// it under the terms of the GNU Lesser General Public License as
 
11
// published by the Free Software Foundation; either version 2.1 of
 
12
// the License, or (at your option) any later version.
 
13
 
 
14
// PyKDE4 is distributed in the hope that it will be useful,
 
15
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
// GNU General Public License for more details.
 
18
 
 
19
// You should have received a copy of the GNU General Public License
 
20
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
21
 
 
22
 
 
23
class KDirSortFilterProxyModel : KCategorizedSortFilterProxyModel
 
24
{
 
25
%TypeHeaderCode
 
26
#include <kdirsortfilterproxymodel.h>
 
27
%End
 
28
 
 
29
 
 
30
public:
 
31
                            KDirSortFilterProxyModel (QObject* parent /TransferThis/ = 0);
 
32
    virtual bool            hasChildren (const QModelIndex& parent = QModelIndex()) const;
 
33
    virtual bool            canFetchMore (const QModelIndex& parent) const;
 
34
    static int              pointsForPermissions (const QFileInfo& info);
 
35
    void                    setSortFoldersFirst (bool foldersFirst);
 
36
    bool                    sortFoldersFirst () const;
 
37
 
 
38
protected:
 
39
    virtual bool            subSortLessThan (const QModelIndex& left, const QModelIndex& right) const;
 
40
public:
 
41
    ~KDirSortFilterProxyModel ();
 
42
};
 
43
// KDirSortFilterProxyModel
 
44
 
 
45