Mercurial > hg > easyhg
annotate changesetscene.h @ 119:005a54380502
* Make scene remember which item has its details showing, and remove the previous one when a new one is clicked
author | Chris Cannam |
---|---|
date | Sun, 28 Nov 2010 21:52:00 +0000 |
parents | |
children | e6c6b88d19b9 |
rev | line source |
---|---|
Chris@119 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@119 | 2 |
Chris@119 | 3 /* |
Chris@119 | 4 EasyMercurial |
Chris@119 | 5 |
Chris@119 | 6 Based on HgExplorer by Jari Korhonen |
Chris@119 | 7 Copyright (c) 2010 Jari Korhonen |
Chris@119 | 8 Copyright (c) 2010 Chris Cannam |
Chris@119 | 9 Copyright (c) 2010 Queen Mary, University of London |
Chris@119 | 10 |
Chris@119 | 11 This program is free software; you can redistribute it and/or |
Chris@119 | 12 modify it under the terms of the GNU General Public License as |
Chris@119 | 13 published by the Free Software Foundation; either version 2 of the |
Chris@119 | 14 License, or (at your option) any later version. See the file |
Chris@119 | 15 COPYING included with this distribution for more information. |
Chris@119 | 16 */ |
Chris@119 | 17 |
Chris@119 | 18 #ifndef CHANGESETSCENE_H |
Chris@119 | 19 #define CHANGESETSCENE_H |
Chris@119 | 20 |
Chris@119 | 21 #include <QGraphicsScene> |
Chris@119 | 22 |
Chris@119 | 23 class ChangesetItem; |
Chris@119 | 24 |
Chris@119 | 25 class ChangesetScene : public QGraphicsScene |
Chris@119 | 26 { |
Chris@119 | 27 Q_OBJECT |
Chris@119 | 28 |
Chris@119 | 29 public: |
Chris@119 | 30 ChangesetScene(); |
Chris@119 | 31 |
Chris@119 | 32 public slots: |
Chris@119 | 33 void changesetDetailShown(); |
Chris@119 | 34 |
Chris@119 | 35 private: |
Chris@119 | 36 ChangesetItem *m_detailShown; |
Chris@119 | 37 }; |
Chris@119 | 38 |
Chris@119 | 39 #endif |