annotate src/hgtabwidget.h @ 484:896b7903e8f2

Make "Show all files" persistent (fixing #203), and rationalise some config group names (noting that "General" is actually the default group "" as it appears in the config file, not the name of a group called "General": that appears as "%General")
author Chris Cannam
date Wed, 17 Aug 2011 16:09:04 +0100
parents ad106f5fe75f
children 1c05e7576ea5
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@425 63 bool canIgnore() const;
Chris@172 64 bool haveChangesToCommit() const;
Chris@95 65
Chris@103 66 QStringList getAllCommittableFiles() const;
Chris@109 67 QStringList getAllRevertableFiles() const;
Chris@326 68 QStringList getAllUnresolvedFiles() const;
Chris@109 69
Chris@95 70 QStringList getSelectedAddableFiles() const;
Chris@95 71 QStringList getSelectedRemovableFiles() const;
Chris@163 72
Chris@484 73 bool shouldShowAll() const;
Chris@484 74
Chris@95 75 signals:
Chris@95 76 void selectionChanged();
Chris@484 77 void showAllChanged();
jtkorhonen@0 78
Chris@141 79 void commit();
Chris@141 80 void revert();
Chris@141 81 void diffWorkingFolder();
Chris@168 82 void showSummary();
Chris@311 83 void newBranch();
Chris@311 84 void noBranch();
Chris@141 85
Chris@141 86 void updateTo(QString id);
Chris@148 87 void diffToParent(QString id, QString parent);
Chris@289 88 void showSummary(Changeset *);
Chris@141 89 void diffToCurrent(QString id);
Chris@141 90 void mergeFrom(QString id);
Chris@278 91 void newBranch(QString id);
Chris@141 92 void tag(QString id);
Chris@141 93
Chris@326 94 void annotateFiles(QStringList);
Chris@326 95 void diffFiles(QStringList);
Chris@326 96 void commitFiles(QStringList);
Chris@326 97 void revertFiles(QStringList);
Chris@361 98 void renameFiles(QStringList);
Chris@361 99 void copyFiles(QStringList);
Chris@326 100 void addFiles(QStringList);
Chris@326 101 void removeFiles(QStringList);
Chris@326 102 void redoFileMerges(QStringList);
Chris@326 103 void markFilesResolved(QStringList);
Chris@326 104 void ignoreFiles(QStringList);
Chris@326 105 void unIgnoreFiles(QStringList);
Chris@326 106
Chris@94 107 public slots:
Chris@94 108 void clearSelections();
Chris@153 109 void showWorkTab();
Chris@153 110 void showHistoryTab();
Chris@94 111
jtkorhonen@0 112 private:
Chris@116 113 FileStatusWidget *m_fileStatusWidget;
Chris@116 114 HistoryWidget *m_historyWidget;
Chris@116 115 FileStates m_fileStates;
jtkorhonen@0 116
Chris@91 117 Changesets parseChangeSets(QString changeSetsStr);
jtkorhonen@0 118 };
jtkorhonen@0 119
Chris@96 120 #endif // HGTABWIDGET_H