OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / bazaar / bazaarcontrol.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2010 Hugues Delorme
6 **
7 ** Contact: Nokia Corporation (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32
33 #ifndef BAZAARCONTROL_H
34 #define BAZAARCONTROL_H
35
36 #include <coreplugin/iversioncontrol.h>
37
38 QT_BEGIN_NAMESPACE
39 class QVariant;
40 QT_END_NAMESPACE
41
42 namespace Bazaar {
43 namespace Internal {
44
45 class BazaarClient;
46
47 //Implements just the basics of the Version Control Interface
48 //BazaarClient handles all the work
49 class BazaarControl: public Core::IVersionControl
50 {
51     Q_OBJECT
52 public:
53     explicit BazaarControl(BazaarClient *bazaarClient);
54
55     QString displayName() const;
56     bool managesDirectory(const QString &filename, QString *topLevel = 0) const;
57     bool supportsOperation(Operation operation) const;
58     bool vcsOpen(const QString &fileName);
59     bool vcsAdd(const QString &filename);
60     bool vcsDelete(const QString &filename);
61     bool vcsMove(const QString &from, const QString &to);
62     bool vcsCreateRepository(const QString &directory);
63     bool vcsCheckout(const QString &directory, const QByteArray &url);
64     QString vcsGetRepositoryURL(const QString &directory);
65     QString vcsCreateSnapshot(const QString &topLevel);
66     QStringList vcsSnapshots(const QString &topLevel);
67     bool vcsRestoreSnapshot(const QString &topLevel, const QString &name);
68     bool vcsRemoveSnapshot(const QString &topLevel, const QString &name);
69     virtual bool vcsAnnotate(const QString &file, int line);
70
71 public slots:
72     // To be connected to the VCSTask's success signal to emit the repository/
73     // files changed signals according to the variant's type:
74     // String -> repository, StringList -> files
75     void changed(const QVariant&);
76
77 private:
78     BazaarClient *m_bazaarClient;
79 };
80
81 } //namespace Internal
82 } //namespace Bazaar
83
84 #endif // BAZAARCONTROL_H