diff mainwindow.h @ 11:45c4ac1323b2

Version 0.4.2: Added hg serve. Can commit one file.
author Jari Korhonen <jtkorhonen@gmail.com>
date Sat, 15 May 2010 17:34:23 +0300
parents 81a32fffee8f
children 9b52042baf39
line wrap: on
line diff
--- a/mainwindow.h	Sat May 15 17:32:45 2010 +0300
+++ b/mainwindow.h	Sat May 15 17:34:23 2010 +0300
@@ -77,6 +77,7 @@
     ACT_REVERT,
     ACT_MERGE,
     ACT_RESOLVE_LIST,
+    ACT_SERVE,
     ACT_RESOLVE_MARK
 };
 
@@ -129,6 +130,7 @@
     void hgAnnotate();
     void hgResolveList();
     void hgResolveMark();
+    void hgServe();
 
 private:
     void hgHeads();
@@ -147,6 +149,7 @@
     bool isSelectedModified(QListWidget *workList);
     bool isSelectedUntracked(QListWidget *workList);
     bool isSelectedDeletable(QListWidget *workList);
+    bool isSelectedCommitable(QListWidget *workList);
 
 
     //Actions enabled flags
@@ -176,6 +179,7 @@
     QAction *hgAnnotateAct;
     QAction *hgResolveListAct;
     QAction *hgResolveMarkAct;
+    QAction *hgServeAct;
 
     //Menus
     QMenu   *fileMenu;