/usr/include/KF5/akonadi/contact/contactsearchjob.h is in libkf5akonadicontact-dev 4:17.12.3-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | /*
This file is part of Akonadi Contact.
Copyright (c) 2009 Tobias Koenig <tokoe@kde.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#ifndef AKONADI_CONTACTSEARCHJOB_H
#define AKONADI_CONTACTSEARCHJOB_H
#include "akonadi-contact_export.h"
#include <itemsearchjob.h>
#include <kcontacts/addressee.h>
namespace Akonadi {
/**
* @short Job that searches for contacts in the Akonadi storage.
*
* This job searches for contacts that match given search criteria and returns
* the list of contacts.
*
* Examples:
*
* @code
*
* // Search all contacts with email address tokoe@kde.org
* Akonadi::ContactSearchJob *job = new Akonadi::ContactSearchJob();
* job->setQuery( Akonadi::ContactSearchJob::Email, "tokoe@kde.org" );
* connect( job, SIGNAL(result(KJob*)), this, SLOT(searchResult(KJob*)) );
*
* ...
*
* MyClass::searchResult( KJob *job )
* {
* Akonadi::ContactSearchJob *searchJob = qobject_cast<Akonadi::ContactSearchJob*>( job );
* const KContacts::Addressee::List contacts = searchJob->contacts();
* // do something with the contacts
* }
*
* @endcode
*
* @code
*
* // Search for all existing contacts
* Akonadi::ContactSearchJob *job = new Akonadi::ContactSearchJob();
* connect( job, SIGNAL(result(KJob*)), this, SLOT(searchResult(KJob*)) );
*
* ...
*
* MyClass::searchResult( KJob *job )
* {
* Akonadi::ContactSearchJob *searchJob = qobject_cast<Akonadi::ContactSearchJob*>( job );
* const KContacts::Addressee::List contacts = searchJob->contacts();
* // do something with the contacts
* }
*
* @endcode
*
* @author Tobias Koenig <tokoe@kde.org>
* @since 4.4
*/
class AKONADI_CONTACT_EXPORT ContactSearchJob : public ItemSearchJob
{
Q_OBJECT
public:
/**
* Creates a new contact search job.
*
* @param parent The parent object.
*/
explicit ContactSearchJob(QObject *parent = nullptr);
/**
* Destroys the contact search job.
*/
~ContactSearchJob();
/**
* Describes the criteria that can be searched for.
*/
enum Criterion {
Name, ///< The name of the contact.
Email, ///< The email address of the contact.
NickName, ///< The nickname of the contact.
NameOrEmail, ///< The name or email address of the contact. @since 4.5
ContactUid ///< The global unique identifier of the contact. @since 4.5
};
/**
* Describes the type of pattern matching that shall be used.
*
* @since 4.5
*/
enum Match {
ExactMatch, ///< The result must match exactly the pattern (case sensitive).
StartsWithMatch, ///< The result must start with the pattern (case insensitive).
ContainsMatch, ///< The result must contain the pattern (case insensitive).
ContainsWordBoundaryMatch ///< The result must contain a word starting with the pattern (case insensitive).
};
/**
* Sets the @p criterion and @p value for the search with @p match.
* @param criterion the query criterion to compare with
* @param value the value to match against
* @param match how to match the given value
* @since 4.5
*/
void setQuery(Criterion criterion, const QString &value, Match match = ExactMatch);
/**
* Sets a @p limit on how many results will be returned by this search job.
*
* This is useful in situation where for example only the first search result is needed anyway,
* setting a limit of 1 here will greatly reduce the resource usage during the
* search.
* This needs to be called before calling setQuery() to have an effect.
* By default, the number of results is unlimited.
* @param limit the upper limit for number of search results
*/
void setLimit(int limit);
/**
* Returns the contacts that matched the search criteria.
*/
KContacts::Addressee::List contacts() const;
private:
//@cond PRIVATE
class Private;
Private *const d;
//@endcond
};
}
#endif
|