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

akonadi

  • sources
  • kde-4.14
  • kdepimlibs
  • akonadi
tagfetchscope.cpp
1 /*
2  Copyright (c) 2014 Christian Mollekopf <mollekopf@kolabsys.com>
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 "tagfetchscope.h"
21 #include <QSet>
22 
23 using namespace Akonadi;
24 
25 struct Akonadi::TagFetchScope::Private
26 {
27  Private()
28  : mFetchIdOnly(false)
29  {
30  }
31 
32  QSet<QByteArray> mAttributes;
33  bool mFetchIdOnly;
34 };
35 
36 TagFetchScope::TagFetchScope()
37  : d(new Private)
38 {
39 
40 }
41 
42 TagFetchScope::~TagFetchScope()
43 {
44 }
45 
46 TagFetchScope::TagFetchScope(const TagFetchScope &other)
47  : d(new Private)
48 {
49  operator=(other);
50 }
51 
52 TagFetchScope &TagFetchScope::operator=(const TagFetchScope &other)
53 {
54  d->mAttributes = other.d->mAttributes;
55  d->mFetchIdOnly = other.d->mFetchIdOnly;
56  return *this;
57 }
58 
59 QSet<QByteArray> TagFetchScope::attributes() const
60 {
61  return d->mAttributes;
62 }
63 
64 void TagFetchScope::fetchAttribute(const QByteArray &type, bool fetch)
65 {
66  if (fetch) {
67  d->mAttributes.insert(type);
68  } else {
69  d->mAttributes.remove(type);
70  }
71 }
72 
73 void TagFetchScope::setFetchIdOnly(bool idOnly)
74 {
75  d->mFetchIdOnly = idOnly;
76  d->mAttributes.clear();
77 }
78 
79 bool TagFetchScope::fetchIdOnly() const
80 {
81  return d->mFetchIdOnly;
82 }
83 
QByteArray
Akonadi::TagFetchScope
Specifies which parts of a tag should be fetched from the Akonadi storage.
Definition: tagfetchscope.h:33
Akonadi::TagFetchScope::fetchAttribute
void fetchAttribute(const QByteArray &type, bool fetch=true)
Sets whether the attribute of the given type should be fetched.
Definition: tagfetchscope.cpp:64
Akonadi::TagFetchScope::setFetchIdOnly
void setFetchIdOnly(bool fetchIdOnly)
Sets wether only the id or the complete tag should be fetched.
Definition: tagfetchscope.cpp:73
Akonadi::TagFetchScope::fetchIdOnly
bool fetchIdOnly() const
Sets wether only the id of the tags should be retieved or the complete tag.
Definition: tagfetchscope.cpp:79
Akonadi::TagFetchScope::TagFetchScope
TagFetchScope()
Creates an empty tag fetch scope.
Definition: tagfetchscope.cpp:36
QSet< QByteArray >
Akonadi::TagFetchScope::attributes
QSet< QByteArray > attributes() const
Returns all explicitly fetched attributes.
Definition: tagfetchscope.cpp:59
Akonadi::TagFetchScope::operator=
TagFetchScope & operator=(const TagFetchScope &other)
Assigns the other to this scope and returns a reference to this scope.
Definition: tagfetchscope.cpp:52
Akonadi::TagFetchScope::~TagFetchScope
~TagFetchScope()
Destroys the tag fetch scope.
Definition: tagfetchscope.cpp:42
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:38:03 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
  • kioslave
  •   imap4
  •   mbox
  •   nntp
  • kldap
  • kmbox
  • kmime
  • kontactinterface
  • kpimidentities
  • kpimtextedit
  • kpimutils
  • kresources
  • ktnef
  • kxmlrpcclient
  • mailtransport
  • microblog
  • qgpgme
  • syndication
  •   atom
  •   rdf
  •   rss2

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