annotate hgtabwidget.h @ 320:67feb05754ee

Added tag easyhg_v0.4 for changeset 124a3ea9fafb
author Chris Cannam
date Wed, 02 Mar 2011 13:27:32 +0000
parents 4811eb34e819
children 6e1fdda1dff2
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@244 8 Copyright (c) 2011 Chris Cannam
Chris@244 9 Copyright (c) 2011 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@116 34 class HistoryWidget;
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@287 41 HgTabWidget(QWidget *parent, QString workFolderPath);
Chris@91 42
jtkorhonen@0 43 void updateWorkFolderFileList(QString fileList);
Chris@120 44
Chris@120 45 void setNewLog(QString hgLogList);
Chris@120 46 void addIncrementalLog(QString hgLogList);
Chris@120 47
Chris@287 48 void setLocalPath(QString workFolderPath);
jtkorhonen@0 49
Chris@153 50 void setCurrent(QStringList ids, QString branch);
Chris@128 51
Chris@230 52 void updateFileStates();
Chris@154 53 void updateHistory();
Chris@154 54
Chris@116 55 FileStates getFileStates() { return m_fileStates; }
Chris@90 56
Chris@163 57 bool canDiff() const;
Chris@90 58 bool canCommit() const;
Chris@109 59 bool canRevert() const;
Chris@92 60 bool canAdd() const;
Chris@92 61 bool canRemove() const;
Chris@163 62 bool canResolve() const;
Chris@172 63 bool haveChangesToCommit() const;
Chris@95 64
Chris@95 65 QStringList getAllSelectedFiles() const;
Chris@103 66
Chris@95 67 QStringList getSelectedCommittableFiles() const;
Chris@103 68 QStringList getAllCommittableFiles() const;
Chris@103 69
Chris@109 70 QStringList getSelectedRevertableFiles() const;
Chris@109 71 QStringList getAllRevertableFiles() const;
Chris@109 72
Chris@95 73 QStringList getSelectedAddableFiles() const;
Chris@103 74 QStringList getAllAddableFiles() const;
Chris@103 75
Chris@95 76 QStringList getSelectedRemovableFiles() const;
Chris@103 77 QStringList getAllRemovableFiles() const;
Chris@95 78
Chris@163 79 QStringList getSelectedUnresolvedFiles() const;
Chris@163 80 QStringList getAllUnresolvedFiles() const;
Chris@163 81
Chris@95 82 signals:
Chris@95 83 void selectionChanged();
Chris@199 84 void showAllChanged(bool);
jtkorhonen@0 85
Chris@141 86 void commit();
Chris@141 87 void revert();
Chris@141 88 void diffWorkingFolder();
Chris@168 89 void showSummary();
Chris@311 90 void newBranch();
Chris@311 91 void noBranch();
Chris@141 92
Chris@141 93 void updateTo(QString id);
Chris@148 94 void diffToParent(QString id, QString parent);
Chris@289 95 void showSummary(Changeset *);
Chris@141 96 void diffToCurrent(QString id);
Chris@141 97 void mergeFrom(QString id);
Chris@278 98 void newBranch(QString id);
Chris@141 99 void tag(QString id);
Chris@141 100
Chris@94 101 public slots:
Chris@94 102 void clearSelections();
Chris@153 103 void showWorkTab();
Chris@153 104 void showHistoryTab();
Chris@94 105
jtkorhonen@0 106 private:
Chris@116 107 FileStatusWidget *m_fileStatusWidget;
Chris@116 108 HistoryWidget *m_historyWidget;
Chris@116 109 FileStates m_fileStates;
jtkorhonen@0 110
Chris@91 111 Changesets parseChangeSets(QString changeSetsStr);
jtkorhonen@0 112 };
jtkorhonen@0 113
Chris@96 114 #endif // HGTABWIDGET_H