Added support for tagging revisions

FossilOrigin-Name: 579a9a1fb06478cd37359eb106dcabc9c9c5fa5c
This commit is contained in:
kostas
2015-05-02 18:23:46 +00:00
parent 3c1ca98ca6
commit 3987a35083
8 changed files with 180 additions and 62 deletions

View File

@ -115,6 +115,14 @@ private slots:
void on_actionUpdateRevision_triggered();
void on_actionNewTag_triggered();
void on_actionDeleteTag_triggered();
void on_actionNewBranch_triggered();
void on_actionMergeBranch_triggered();
private:
class MainWinUICallback : public UICallback
{
@ -151,9 +159,12 @@ private:
class QShortcut *abortShortcut;
QMenu *menuWorkspace;
QMenu *menuStashes;
QMenu *menuTags;
//QMenu *menuBranches;
bool operationAborted;
stringset_t selectedDirs; // The directory selected in the tree
QStringList versionList;
Workspace workspace;
Workspace & getWorkspace() { return workspace; }