1 | /**************************************************************************** |
---|---|
2 | ** |
3 | ** Copyright (C) 2015 The Qt Company Ltd. |
4 | ** Contact: http://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the QtVersitOrganizer module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL21$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see http://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at http://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 2.1 or version 3 as published by the Free |
20 | ** Software Foundation and appearing in the file LICENSE.LGPLv21 and |
21 | ** LICENSE.LGPLv3 included in the packaging of this file. Please review the |
22 | ** following information to ensure the GNU Lesser General Public License |
23 | ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and |
24 | ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
25 | ** |
26 | ** As a special exception, The Qt Company gives you certain additional |
27 | ** rights. These rights are described in The Qt Company LGPL Exception |
28 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
29 | ** |
30 | ** $QT_END_LICENSE$ |
31 | ** |
32 | ****************************************************************************/ |
33 | |
34 | #ifndef QVERSITORGANIZERHANDLER_H |
35 | #define QVERSITORGANIZERHANDLER_H |
36 | |
37 | #include <QtVersitOrganizer/qversitorganizerimporter.h> |
38 | #include <QtVersitOrganizer/qversitorganizerexporter.h> |
39 | |
40 | QT_BEGIN_NAMESPACE_VERSITORGANIZER |
41 | |
42 | // qdoc seems to not find QVersitOrganizerHandler if it is declared first, hence this forward |
43 | // declaration |
44 | class QVersitOrganizerHandler; |
45 | |
46 | class Q_VERSIT_ORGANIZER_EXPORT QVersitOrganizerHandlerFactory |
47 | { |
48 | public: |
49 | virtual ~QVersitOrganizerHandlerFactory() {} |
50 | virtual QSet<QString> profiles() const { return QSet<QString>(); } |
51 | virtual QString name() const = 0; |
52 | virtual int index() const { return 0; } |
53 | virtual QVersitOrganizerHandler* createHandler() const = 0; |
54 | |
55 | inline static const QString ProfileSync() {return QStringLiteral("Sync");}; |
56 | inline static const QString ProfileBackup() {return QStringLiteral("Backup");}; |
57 | }; |
58 | |
59 | class Q_VERSIT_ORGANIZER_EXPORT QVersitOrganizerHandler : public QVersitOrganizerImporterPropertyHandler, |
60 | public QVersitOrganizerExporterDetailHandler |
61 | { |
62 | public: |
63 | virtual ~QVersitOrganizerHandler() {} |
64 | }; |
65 | |
66 | QT_END_NAMESPACE_VERSITORGANIZER |
67 | |
68 | #define QT_VERSIT_ORGANIZER_HANDLER_INTERFACE "org.qt-project.Qt.QVersitOrganizerHandlerFactory" |
69 | QT_BEGIN_NAMESPACE |
70 | Q_DECLARE_INTERFACE(QtVersitOrganizer::QVersitOrganizerHandlerFactory, QT_VERSIT_ORGANIZER_HANDLER_INTERFACE) |
71 | QT_END_NAMESPACE |
72 | |
73 | #endif // QVERSITORGANIZERHANDLER_H |
74 |