Fix multiple retrieval race.
[kdepim.git] / mailcommon / readablecollectionproxymodel.h
blobe411f28c977c0f73e1c456d7f482617145c5ce30
1 /*
2 Copyright (c) 2009, 2010 Laurent Montel <montel@kde.org>
4 This library is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or (at your
7 option) any later version.
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12 License for more details.
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 the
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 02110-1301, USA.
20 #ifndef MAILCOMMON_READABLECOLLECTIONPROXYMODEL_H
21 #define MAILCOMMON_READABLECOLLECTIONPROXYMODEL_H
23 #include "akonadi/entityrightsfiltermodel.h"
24 #include <akonadi/collection.h>
26 namespace MailCommon {
28 class Kernel;
30 class ReadableCollectionProxyModel : public Akonadi::EntityRightsFilterModel
32 Q_OBJECT
34 public:
35 enum ReadableCollectionOption
37 None = 0,
38 HideVirtualFolder = 1,
39 HideSpecificFolder = 2,
40 HideOutboxFolder = 4,
41 HideImapFolder = 8
43 Q_DECLARE_FLAGS( ReadableCollectionOptions, ReadableCollectionOption )
45 explicit ReadableCollectionProxyModel( QObject *parent = 0, ReadableCollectionOptions = ReadableCollectionProxyModel::None );
47 virtual ~ReadableCollectionProxyModel();
49 virtual Qt::ItemFlags flags ( const QModelIndex & index ) const;
51 void setEnabledCheck( bool enable );
52 bool enabledCheck() const;
54 void setHideVirtualFolder( bool exclude );
55 bool hideVirtualFolder() const;
58 void setHideSpecificFolder( bool hide );
59 bool hideSpecificFolder() const;
62 void setHideOutboxFolder( bool hide );
63 bool hideOutboxFolder() const;
65 void setHideImapFolder( bool hide );
66 bool hideImapFolder() const;
68 protected:
69 virtual bool acceptRow( int sourceRow, const QModelIndex &sourceParent ) const;
71 private:
72 class Private;
73 Private* const d;
78 #endif