• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdepimlibs API Reference
  • KDE Home
  • Contact Us
 

akonadi

  • sources
  • kde-4.12
  • kdepimlibs
  • akonadi
agentfilterproxymodel.cpp
1 /*
2  Copyright (c) 2007 Volker Krause <vkrause@kde.org>
3 
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.
8 
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.
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 the
16  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  02110-1301, USA.
18 */
19 
20 #include "agentfilterproxymodel.h"
21 
22 #include "agenttypemodel.h"
23 #include "agentinstancemodel.h"
24 
25 #include <kdebug.h>
26 #include <kmimetype.h>
27 
28 #include <QtCore/QStringList>
29 
30 #include <boost/static_assert.hpp>
31 
32 using namespace Akonadi;
33 
34 // ensure the role numbers are equivalent for both source models
35 BOOST_STATIC_ASSERT( (int)AgentTypeModel::CapabilitiesRole == (int)AgentInstanceModel::CapabilitiesRole );
36 BOOST_STATIC_ASSERT( (int)AgentTypeModel::MimeTypesRole == (int)AgentInstanceModel::MimeTypesRole );
37 
41 class AgentFilterProxyModel::Private
42 {
43  public:
44  QStringList mimeTypes;
45  QStringList capabilities;
46  QStringList excludeCapabilities;
47 };
48 
49 AgentFilterProxyModel::AgentFilterProxyModel( QObject *parent )
50  : QSortFilterProxyModel( parent ),
51  d( new Private )
52 {
53  setDynamicSortFilter( true );
54 }
55 
56 AgentFilterProxyModel::~AgentFilterProxyModel()
57 {
58  delete d;
59 }
60 
61 void AgentFilterProxyModel::addMimeTypeFilter( const QString &mimeType )
62 {
63  d->mimeTypes << mimeType;
64  invalidateFilter();
65 }
66 
67 void AgentFilterProxyModel::addCapabilityFilter( const QString &capability )
68 {
69  d->capabilities << capability;
70  invalidateFilter();
71 }
72 
73 void AgentFilterProxyModel::excludeCapabilities( const QString &capability )
74 {
75  d->excludeCapabilities << capability;
76  invalidateFilter();
77 }
78 
79 void AgentFilterProxyModel::clearFilters()
80 {
81  d->capabilities.clear();
82  d->mimeTypes.clear();
83  d->excludeCapabilities.clear();
84  invalidateFilter();
85 }
86 
87 bool AgentFilterProxyModel::filterAcceptsRow( int row, const QModelIndex& ) const
88 {
89  const QModelIndex index = sourceModel()->index( row, 0 );
90 
91  // First see if the name matches a set regexp filter.
92  if ( !filterRegExp().isEmpty() ) {
93  if ( index.data( AgentTypeModel::IdentifierRole ).toString().contains( filterRegExp() ))
94  return true;
95  else if ( index.data().toString().contains( filterRegExp() ) )
96  return true;
97  else
98  return false;
99  }
100 
101  if ( !d->mimeTypes.isEmpty() ) {
102  bool found = false;
103  foreach ( const QString &mimeType, index.data( AgentTypeModel::MimeTypesRole ).toStringList() ) {
104  if ( d->mimeTypes.contains( mimeType ) ) {
105  found = true;
106  } else {
107  KMimeType::Ptr mimeTypePtr = KMimeType::mimeType( mimeType, KMimeType::ResolveAliases );
108  if ( !mimeTypePtr.isNull() ) {
109  foreach ( const QString &type, d->mimeTypes ) {
110  if ( mimeTypePtr->is( type ) ) {
111  found = true;
112  break;
113  }
114  }
115  }
116  }
117 
118  if ( found ) {
119  break;
120  }
121  }
122 
123  if ( !found ) {
124  return false;
125  }
126  }
127 
128  if ( !d->capabilities.isEmpty() ) {
129  bool found = false;
130  foreach ( const QString &capability, index.data( AgentTypeModel::CapabilitiesRole ).toStringList() ) {
131  if ( d->capabilities.contains( capability ) ) {
132  found = true;
133  break;
134  }
135  }
136 
137  if ( !found ) {
138  return false;
139  }
140 
141  if ( found && !d->excludeCapabilities.isEmpty() ) {
142  foreach ( const QString &capability, index.data( AgentTypeModel::CapabilitiesRole ).toStringList() ) {
143  if ( d->excludeCapabilities.contains( capability ) ) {
144  found = false;
145  break;
146  }
147  }
148 
149  if ( !found ) {
150  return false;
151  }
152  }
153  }
154 
155  return true;
156 }
157 
Akonadi::AgentFilterProxyModel::~AgentFilterProxyModel
~AgentFilterProxyModel()
Destroys the agent filter proxy model.
Definition: agentfilterproxymodel.cpp:56
Akonadi::AgentFilterProxyModel::addMimeTypeFilter
void addMimeTypeFilter(const QString &mimeType)
Accept agents supporting mimeType.
Definition: agentfilterproxymodel.cpp:61
Akonadi::AgentFilterProxyModel::excludeCapabilities
void excludeCapabilities(const QString &capability)
Excludes agents with the given capability.
Definition: agentfilterproxymodel.cpp:73
Akonadi::AgentFilterProxyModel::AgentFilterProxyModel
AgentFilterProxyModel(QObject *parent=0)
Create a new agent filter proxy model.
Definition: agentfilterproxymodel.cpp:49
Akonadi::AgentTypeModel::IdentifierRole
The identifier of the agent type.
Definition: agenttypemodel.h:60
Akonadi::AgentInstanceModel::CapabilitiesRole
A list of supported capabilities.
Definition: agentinstancemodel.h:63
Akonadi::AgentTypeModel::CapabilitiesRole
A list of supported capabilities.
Definition: agenttypemodel.h:63
Akonadi::AgentFilterProxyModel::addCapabilityFilter
void addCapabilityFilter(const QString &capability)
Accept agents with the given capability.
Definition: agentfilterproxymodel.cpp:67
Akonadi::AgentFilterProxyModel::clearFilters
void clearFilters()
Clear the filters ( mimeTypes & capabilities ).
Definition: agentfilterproxymodel.cpp:79
Akonadi::AgentInstanceModel::MimeTypesRole
A list of supported mimetypes.
Definition: agentinstancemodel.h:62
Akonadi::AgentTypeModel::MimeTypesRole
A list of supported mimetypes.
Definition: agenttypemodel.h:62
This file is part of the KDE documentation.
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 23:00:26 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

akonadi

Skip menu "akonadi"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • Modules
  • Related Pages

kdepimlibs API Reference

Skip menu "kdepimlibs API Reference"
  • akonadi
  •   contact
  •   kmime
  •   socialutils
  • kabc
  • kalarmcal
  • kblog
  • kcal
  • kcalcore
  • kcalutils
  • kholidays
  • kimap
  • kldap
  • kmbox
  • kmime
  • kpimidentities
  • kpimtextedit
  • kresources
  • ktnef
  • kxmlrpcclient
  • microblog

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal