Newer
Older
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
#ifndef MERCURIALCONTROL_H
#define MERCURIALCONTROL_H
#include <coreplugin/iversioncontrol.h>
namespace Mercurial {
namespace Internal {
class MercurialClient;
//Implements just the basics of the Version Control Interface
//MercurialClient handles all the work
class MercurialControl: public Core::IVersionControl
{
Q_OBJECT
public:
explicit MercurialControl(MercurialClient *mercurialClient);
QString name() const;
bool isEnabled() const;
void setEnabled(bool enabled);
bool managesDirectory(const QString &filename) const;
QString findTopLevelForDirectory(const QString &directory) const;
bool supportsOperation(Operation operation) const;
bool vcsOpen(const QString &fileName);
bool vcsAdd(const QString &filename);
bool vcsDelete(const QString &filename);
bool sccManaged(const QString &filename);
signals:
void enabledChanged(bool);
private:
MercurialClient *mercurialClient;
bool mercurialEnabled;
};
} //namespace Internal
} //namespace Mercurial
#endif // MERCURIALCONTROL_H