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
20 #ifndef READABLECOLLECTIONPROXYMODEL_H
21 #define READABLECOLLECTIONPROXYMODEL_H
24 #include "akonadi/entityrightsfiltermodel.h"
25 #include <akonadi/collection.h>
27 class ReadableCollectionProxyModel
: public Akonadi::EntityRightsFilterModel
32 enum ReadableCollectionOption
35 HideVirtualFolder
= 1,
36 HideSpecificFolder
= 2,
40 Q_DECLARE_FLAGS( ReadableCollectionOptions
, ReadableCollectionOption
)
42 explicit ReadableCollectionProxyModel( QObject
*parent
= 0, ReadableCollectionOptions
= ReadableCollectionProxyModel::None
);
44 virtual ~ReadableCollectionProxyModel();
46 virtual Qt::ItemFlags
flags ( const QModelIndex
& index
) const;
48 void setEnabledCheck( bool enable
);
49 bool enabledCheck() const;
51 void setHideVirtualFolder( bool exclude
);
52 bool hideVirtualFolder() const;
55 void setHideSpecificFolder( bool hide
);
56 bool hideSpecificFolder() const;
59 void setHideOutboxFolder( bool hide
);
60 bool hideOutboxFolder() const;
62 void setHideImapFolder( bool hide
);
63 bool hideImapFolder() const;
66 virtual bool acceptRow( int sourceRow
, const QModelIndex
&sourceParent
) const;