/usr/include/kimap/searchjob.h is in kdepimlibs5-dev 4:4.8.5-0ubuntu0.3.
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 152 153 154 155 156 157 158 159 160 161 162 | /*
Copyright (c) 2009 Andras Mantia <amantia@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 KIMAP_SEARCHJOB_H
#define KIMAP_SEARCHJOB_H
#include "kimap_export.h"
#include "job.h"
class QDate;
namespace KIMAP {
class Session;
struct Message;
class SearchJobPrivate;
class KIMAP_EXPORT SearchJob : public Job
{
Q_OBJECT
Q_DECLARE_PRIVATE(SearchJob)
friend class SessionPrivate;
public:
enum SearchLogic {
And = 0,
Or,
Not
};
enum SearchCriteria {
All = 0,
Answered,
BCC,
Before,
Body,
CC,
Deleted,
Draft,
Flagged,
From,
Header,
Keyword,
Larger,
New,
Old,
On,
Recent,
Seen,
SentBefore,
SentOn,
SentSince,
Since,
Smaller,
Subject,
Text,
To,
Uid,
Unanswered,
Undeleted,
Undraft,
Unflagged,
Unkeyword,
Unseen
};
explicit SearchJob( Session *session );
virtual ~SearchJob();
void setUidBased(bool uidBased);
bool isUidBased() const;
void setCharset( const QByteArray &charSet );
QByteArray charset() const;
/**
* Get the search result, as a list of sequence numbers or UIDs, based on the isUidBased status
* @return the found items
* @deprecated use results() instead
*/
KDE_DEPRECATED QList<int> foundItems();
/**
* Get the search result, as a list of sequence numbers or UIDs, based on the isUidBased status
* @return the found items
* @since 4.6
*/
QList<qint64> results() const;
/**
* Add a search criteria that doesn't have an argument. Passing a criteria that
* should have an argument will be ignored.
* @param criteria a criteria from SearchCriterias
*/
void addSearchCriteria( SearchCriteria criteria );
/**
* Add a search criteria that has one or more space separate string arguments.
* Passing a criteria that accepts a different type or argument or no
* argument will be ignored.
* @param criteria a criteria from SearchCriterias
* @param argument the arguments
*/
void addSearchCriteria( SearchCriteria criteria, const QByteArray &argument );
/**
* Add a search criteria that has an integer argument.
* Passing a criteria that accepts a different type or argument or no
* argument will be ignored.
* @param criteria a criteria from SearchCriterias
* @param argument a number argument
*/
void addSearchCriteria( SearchCriteria criteria, int argument );
/**
* Add a search criteria that has a date as argument.
* Passing a criteria that accepts a different type or argument or no
* argument will be ignored.
* @param criteria a criteria from SearchCriterias
* @param argument a date
*/
void addSearchCriteria( SearchCriteria criteria, const QDate& argument );
/**
* Add a custom criteria. No checks are done, the data is sent as it is
* to the server.
* @param searchCriteria free form search criteria.
*/
void addSearchCriteria( const QByteArray &searchCriteria );
/**
* Set the logic combining the search criterias.
* @param logic AND (the default), OR, NOT. See SearchLogics.
*/
void setSearchLogic(SearchLogic logic);
protected:
virtual void doStart();
virtual void handleResponse(const Message &response);
};
}
#endif
|