KIMAP Library
20 #ifndef KIMAP_LISTJOB_H
21 #define KIMAP_LISTJOB_H
23 #include "kimap_export.h"
33 struct KIMAP_EXPORT MailBoxDescriptor
38 inline bool operator==(
const MailBoxDescriptor &other)
const
40 return other.name == name && other.separator == separator;
43 inline bool operator<(
const MailBoxDescriptor &other)
const
45 return other.name < name || ( other.name == name && other.separator < separator );
49 class KIMAP_EXPORT ListJob :
public Job
52 Q_DECLARE_PRIVATE( ListJob )
54 friend class SessionPrivate;
60 IncludeFolderRoleFlags
64 explicit ListJob( Session *session );
67 KIMAP_DEPRECATED
void setIncludeUnsubscribed(
bool include );
68 KIMAP_DEPRECATED
bool isIncludeUnsubscribed()
const;
70 void setOption( Option option );
71 Option option()
const;
84 virtual void doStart();
85 virtual void handleResponse(
const Message &response);
88 Q_PRIVATE_SLOT( d_func(),
void emitPendings() )
96 void convertInboxName( KIMAP::MailBoxDescriptor &descriptor );
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:37:03 by
doxygen 1.8.7 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.