-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtfsconstants.h
59 lines (43 loc) · 1.78 KB
/
tfsconstants.h
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef TFSCONSTANTS_H
#define TFSCONSTANTS_H
#include <QDebug>
namespace VcsBase {
namespace Constants
{
const char VCS_ID_TFS[] = "T.Tfs";
}
}
namespace Tfs {
namespace Constants {
enum { debug = 0 };
const char ACTION_ID[] = "tfs.Action";
const char MENU_ID[] = "tfs.Menu";
const char TFSDEFAULT[] = "tf";
const char TFSREPO[] = "$tf";
const char TFS_CONTEXT[] = "Tfs Context";
//// Base editor parameters
//const char COMMANDLOG_ID[] = "TFS Command Log Editor";
//const char COMMANDLOG_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("VCS", "TFS Command Log Editor");
//const char COMMANDLOG[] = "TFS Command Log Editor";
//const char COMMANDAPP[] = "application/vnd.nokia.text.scs_tfs_commandlog";
//const char COMMANDEXT[] = "vcsTfsCommand";
//const char FILELOG_ID[] = "TFS File Log Editor";
//const char FILELOG_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("VCS", "TFS File Log Editor");
const char FILELOG[] = "TFS File Log Editor";
//const char LOGAPP[] = "application/vnd.nokia.text.scs_tfs_log";
//const char LOGEXT[] = "vcsTfsLog";
//const char ANNOTATELOG_ID[] = "TFS Annotation Editor";
//const char ANNOTATELOG_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("VCS", "TFS Annotation Editor");
const char ANNOTATELOG[] = "TFS Annotation Editor";
//const char ANNOTATEAPP[] = "application/vnd.nokia.text.scs_tfs_annotatelog";
//const char ANNOTATEEXT[] = "vcsTfsAnnotate";
//const char DIFFLOG_ID[] = "TFS Diff Editor";
//const char DIFFLOG_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("VCS", "TFS Diff Editor");
const char DIFFLOG[] = "TFS Diff Editor";
//const char DIFFAPP[] = "text/x-patch";
//const char DIFFEXT[] = "diff";
// Repository menu actions
const char WORKSPACES[] = "Tfs.Action.Workspaces";
} // namespace Constants
} // namespace Tfs
#endif // TFSCONSTANTS_H