annotate hgtabwidget.h @ 106:729438d70af8

* Retrieve and store current branch and heads; some refactoring
author Chris Cannam
date Thu, 25 Nov 2010 17:54:35 +0000
parents 0bd32aedc6f6
children 1721c580c10e
rev   line source
Chris@57 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@57 2
Chris@57 3 /*
Chris@57 4 EasyMercurial
Chris@57 5
Chris@57 6 Based on HgExplorer by Jari Korhonen
Chris@57 7 Copyright (c) 2010 Jari Korhonen
Chris@57 8 Copyright (c) 2010 Chris Cannam
Chris@57 9 Copyright (c) 2010 Queen Mary, University of London
Chris@57 10
Chris@57 11 This program is free software; you can redistribute it and/or
Chris@57 12 modify it under the terms of the GNU General Public License as
Chris@57 13 published by the Free Software Foundation; either version 2 of the
Chris@57 14 License, or (at your option) any later version. See the file
Chris@57 15 COPYING included with this distribution for more information.
Chris@57 16 */
Chris@57 17
Chris@96 18 #ifndef HGTABWIDGET_H
Chris@96 19 #define HGTABWIDGET_H
jtkorhonen@0 20
Chris@43 21 #include "changeset.h"
jtkorhonen@0 22 #include "common.h"
Chris@92 23 #include "filestates.h"
jtkorhonen@0 24
Chris@50 25 #include <QMenu>
Chris@50 26 #include <QListWidget>
Chris@50 27 #include <QGroupBox>
Chris@50 28 #include <QVBoxLayout>
Chris@50 29 #include <QCheckBox>
Chris@50 30 #include <QLabel>
Chris@88 31 #include <QTabWidget>
Chris@86 32
Chris@88 33 class FileStatusWidget;
Chris@88 34
jtkorhonen@0 35
Chris@96 36 class HgTabWidget: public QTabWidget
jtkorhonen@0 37 {
jtkorhonen@0 38 Q_OBJECT
jtkorhonen@0 39
jtkorhonen@0 40 public:
Chris@96 41 HgTabWidget(QWidget *parent, QString remoteRepo, QString workFolderPath);
Chris@91 42
jtkorhonen@0 43 void updateWorkFolderFileList(QString fileList);
jtkorhonen@0 44 void updateLocalRepoHgLogList(QString hgLogList);
jtkorhonen@0 45 void setWorkFolderAndRepoNames(QString workFolderPath, QString remoteRepoPath);
Chris@106 46 void setBranch(QString branch);
jtkorhonen@0 47
Chris@92 48 FileStates getFileStates() { return fileStates; }
Chris@90 49
Chris@90 50 bool canCommit() const;
Chris@92 51 bool canAdd() const;
Chris@92 52 bool canRemove() const;
Chris@95 53 bool canDoDiff() const;
Chris@95 54
Chris@95 55 QStringList getAllSelectedFiles() const;
Chris@103 56
Chris@95 57 QStringList getSelectedCommittableFiles() const;
Chris@103 58 QStringList getAllCommittableFiles() const;
Chris@103 59
Chris@95 60 QStringList getSelectedAddableFiles() const;
Chris@103 61 QStringList getAllAddableFiles() const;
Chris@103 62
Chris@95 63 QStringList getSelectedRemovableFiles() const;
Chris@103 64 QStringList getAllRemovableFiles() const;
Chris@95 65
Chris@95 66 signals:
Chris@95 67 void selectionChanged();
jtkorhonen@0 68
Chris@94 69 public slots:
Chris@94 70 void clearSelections();
Chris@94 71
jtkorhonen@0 72 private:
Chris@88 73 FileStatusWidget *fileStatusWidget;
Chris@88 74
Chris@91 75 QWidget *historyGraphPageWidget;
Chris@91 76 QWidget *historyGraphWidget;
Chris@91 77 QWidget *historyGraphPanner;
Chris@91 78 QWidget *historyPageWidget;
jtkorhonen@0 79
Chris@92 80 FileStates fileStates;
jtkorhonen@0 81
Chris@91 82 Changesets parseChangeSets(QString changeSetsStr);
jtkorhonen@0 83 };
jtkorhonen@0 84
Chris@96 85 #endif // HGTABWIDGET_H