Allow to create doc

wilder
Laurent Montel 6 years ago
parent b2f4f44ecd
commit 9e946f8e2f
  1. 5
      src/collectionpage/collectionexpirypage.h
  2. 4
      src/collectionpage/collectiongeneralpage.h
  3. 4
      src/filter/filterimporter/filterimportergmail.h
  4. 5
      src/filter/filterimporter/filterimporterthunderbird.h
  5. 4
      src/filter/filterimporterpathcache.h
  6. 4
      src/filter/invalidfilters/invalidfilterwidget.h
  7. 3
      src/filter/mailfilter.h
  8. 4
      src/folder/accountconfigorderdialog.h
  9. 4
      src/folder/foldercollectionmonitor.h
  10. 4
      src/folder/foldersettings.h
  11. 4
      src/folder/foldertreewidgetproxymodel.h
  12. 3
      src/job/folderjob.h
  13. 9
      src/snippets/snippetsmanager.h
  14. 9
      src/snippets/snippetsmodel.h
  15. 4
      src/snippets/snippetwidget.h
  16. 4
      src/widgets/favoritecollectionwidget.h

@ -33,7 +33,10 @@ class QRadioButton;
namespace MailCommon {
class FolderRequester;
/**
* @brief The CollectionExpiryPage class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT CollectionExpiryPage : public Akonadi::CollectionPropertiesPage
{
Q_OBJECT

@ -38,6 +38,10 @@ class IdentityCombo;
class QVBoxLayout;
namespace MailCommon {
class FolderSettings;
/**
* @brief The CollectionGeneralPage class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT CollectionGeneralPage : public Akonadi::CollectionPropertiesPage
{
Q_OBJECT

@ -22,6 +22,10 @@
#include "filter/filterimporter/filterimporterabstract.h"
class QFile;
namespace MailCommon {
/**
* @brief The FilterImporterGmail class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT FilterImporterGmail : public FilterImporterAbstract
{
public:

@ -27,7 +27,10 @@ class QFile;
namespace MailCommon {
class MailFilter;
/**
* @brief The FilterImporterThunderbird class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT FilterImporterThunderbird : public FilterImporterAbstract
{
public:

@ -24,6 +24,10 @@
#include <AkonadiCore/Collection>
#include "mailcommon_export.h"
namespace MailCommon {
/**
* @brief The FilterImporterPathCache class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT FilterImporterPathCache : public QObject
{
Q_OBJECT

@ -25,6 +25,10 @@
namespace MailCommon {
class InvalidFilterListView;
/**
* @brief The InvalidFilterWidget class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT InvalidFilterWidget : public QWidget
{
Q_OBJECT

@ -36,6 +36,9 @@
class KConfigGroup;
namespace MailCommon {
/**
* @brief The MailFilter class
*/
class MAILCOMMON_EXPORT MailFilter
{
friend MAILCOMMON_EXPORT QDataStream &operator<<(QDataStream &stream, const MailFilter &filter);

@ -25,6 +25,10 @@
namespace MailCommon {
class AccountConfigOrderDialogPrivate;
class MailCommonSettings;
/**
* @brief The AccountConfigOrderDialog class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT AccountConfigOrderDialog : public QDialog
{
Q_OBJECT

@ -37,6 +37,10 @@ class Session;
namespace MailCommon {
class FolderCollectionMonitorPrivate;
/**
* @brief The FolderCollectionMonitor class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT FolderCollectionMonitor : public QObject
{
Q_OBJECT

@ -33,6 +33,10 @@ using MessageCore::MailingList;
#include <KIO/Job>
namespace MailCommon {
/**
* @brief The FolderSettings class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT FolderSettings : public QObject
{
Q_OBJECT

@ -25,6 +25,10 @@
#include "mailcommon_export.h"
namespace MailCommon {
/**
* @brief The FolderTreeWidgetProxyModel class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT FolderTreeWidgetProxyModel : public Akonadi::EntityRightsFilterModel
{
Q_OBJECT

@ -35,6 +35,9 @@
#include "mailcommon_export.h"
namespace MailCommon {
/**
* @brief The FolderJob class
*/
class MAILCOMMON_EXPORT FolderJob : public QObject
{
Q_OBJECT

@ -32,6 +32,10 @@ class QAbstractItemModel;
class QAction;
class QItemSelectionModel;
namespace MailCommon {
/**
* @brief The SnippetInfo struct
* @author Laurent Montel <montel@kde.org>
*/
struct MAILCOMMON_EXPORT SnippetInfo {
SnippetInfo(const QString &_subject, const QString &_text, const QString &_to, const QString &_cc, const QString &_bcc, const QString &_attachment)
: subject(_subject)
@ -50,7 +54,10 @@ struct MAILCOMMON_EXPORT SnippetInfo {
QString bcc;
QString attachment;
};
/**
* @brief The SnippetsManager class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT SnippetsManager : public QObject
{
Q_OBJECT

@ -27,7 +27,10 @@
#include "mailcommon_export.h"
namespace MailCommon {
class SnippetItem;
/**
* @brief The SnippetsInfo struct
* @author Laurent Montel <montel@kde.org>
*/
struct MAILCOMMON_EXPORT SnippetsInfo
{
QString newName;
@ -41,6 +44,10 @@ struct MAILCOMMON_EXPORT SnippetsInfo
QString attachment;
};
/**
* @brief The SnippetsModel class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT SnippetsModel : public QAbstractItemModel
{
Q_OBJECT

@ -27,6 +27,10 @@
class KActionCollection;
class SnippetWidgetPrivate;
namespace MailCommon {
/**
* @brief The SnippetWidget class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT SnippetWidget : public QWidget
{
Q_OBJECT

@ -29,6 +29,10 @@ class KActionCollection;
namespace MailCommon {
class MailCommonSettings;
/**
* @brief The FavoriteCollectionWidget class
* @author Laurent Montel <montel@kde.org>
*/
class MAILCOMMON_EXPORT FavoriteCollectionWidget : public Akonadi::EntityListView
{
Q_OBJECT

Loading…
Cancel
Save