annotate grapher.h @ 145:644bd31e8301

* Include the uncommitted item in general graph layout (in case it is not at the head, when other items will need to avoid it)
author Chris Cannam
date Wed, 01 Dec 2010 17:41:14 +0000
parents 005a54380502
children 70fe12873106
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@44 18 #ifndef GRAPHER_H
Chris@44 19 #define GRAPHER_H
Chris@44 20
Chris@44 21 #include "changeset.h"
Chris@44 22 #include "changesetitem.h"
Chris@145 23 #include "uncommitteditem.h"
Chris@119 24 #include "changesetscene.h"
Chris@44 25
cannam@45 26 #include <QSet>
cannam@45 27 #include <QMap>
Chris@46 28 #include <QPair>
cannam@45 29
cannam@45 30 #include <exception>
Chris@44 31
Chris@44 32 class Grapher
Chris@44 33 {
Chris@44 34 public:
Chris@119 35 Grapher(ChangesetScene *scene) { m_scene = scene; }
cannam@45 36
Chris@145 37 void layout(Changesets csets, QString uncommittedSproutsFrom = "");
cannam@45 38
Chris@53 39 ChangesetItem *getItemFor(Changeset *cs);
Chris@53 40
Chris@145 41 UncommittedItem *getUncommittedItem() { return m_uncommitted; }
Chris@145 42
cannam@45 43 class LayoutException : public std::exception {
cannam@45 44 public:
cannam@45 45 LayoutException(QString message) throw() : m_message(message) { }
cannam@45 46 virtual ~LayoutException() throw() { }
cannam@45 47 virtual const char *what() const throw() {
cannam@45 48 return m_message.toLocal8Bit().data();
cannam@45 49 }
cannam@45 50 protected:
cannam@45 51 QString m_message;
cannam@45 52 };
cannam@45 53
cannam@45 54 private:
Chris@119 55 ChangesetScene *m_scene;
cannam@45 56
cannam@45 57 typedef QMap<QString, Changeset *> IdChangesetMap;
Chris@46 58 IdChangesetMap m_changesets;
cannam@45 59
cannam@45 60 typedef QMap<QString, ChangesetItem *> IdItemMap;
cannam@45 61 IdItemMap m_items;
cannam@45 62
cannam@45 63 typedef QSet<int> ColumnSet;
cannam@45 64 typedef QMap<int, ColumnSet> GridAlloc;
cannam@45 65 GridAlloc m_alloc;
cannam@45 66
Chris@46 67 typedef QPair<int, int> Range;
Chris@46 68 typedef QMap<QString, Range> BranchRangeMap;
Chris@46 69 BranchRangeMap m_branchRanges;
Chris@46 70
Chris@46 71 typedef QMap<QString, int> BranchColumnMap;
Chris@46 72 BranchColumnMap m_branchHomes;
Chris@46 73
cannam@45 74 typedef QSet<QString> IdSet;
cannam@45 75 IdSet m_handled;
Chris@46 76
Chris@51 77 typedef QMap<int, QString> RowDateMap;
Chris@51 78 RowDateMap m_rowDates;
Chris@51 79
Chris@145 80 QString m_uncommittedParentId;
Chris@145 81 int m_uncommittedParentRow;
Chris@145 82 UncommittedItem *m_uncommitted;
Chris@145 83 bool m_haveAllocatedUncommittedColumn;
Chris@145 84
Chris@46 85 void layoutRow(QString id);
Chris@46 86 void layoutCol(QString id);
Chris@46 87 void allocateBranchHomes(Changesets csets);
Chris@46 88 bool rangesConflict(const Range &r1, const Range &r2);
Chris@46 89 int findAvailableColumn(int row, int parent, bool preferParentCol);
Chris@145 90 bool isAvailable(int row, int col);
Chris@44 91 };
Chris@44 92
Chris@44 93 #endif