Chris@119: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@119: Chris@119: /* Chris@119: EasyMercurial Chris@119: Chris@119: Based on HgExplorer by Jari Korhonen Chris@119: Copyright (c) 2010 Jari Korhonen Chris@119: Copyright (c) 2010 Chris Cannam Chris@119: Copyright (c) 2010 Queen Mary, University of London Chris@119: Chris@119: This program is free software; you can redistribute it and/or Chris@119: modify it under the terms of the GNU General Public License as Chris@119: published by the Free Software Foundation; either version 2 of the Chris@119: License, or (at your option) any later version. See the file Chris@119: COPYING included with this distribution for more information. Chris@119: */ Chris@119: Chris@119: #ifndef CHANGESETSCENE_H Chris@119: #define CHANGESETSCENE_H Chris@119: Chris@119: #include Chris@119: Chris@119: class ChangesetItem; Chris@119: Chris@119: class ChangesetScene : public QGraphicsScene Chris@119: { Chris@119: Q_OBJECT Chris@119: Chris@119: public: Chris@119: ChangesetScene(); Chris@119: Chris@119: public slots: Chris@119: void changesetDetailShown(); Chris@119: Chris@119: private: Chris@119: ChangesetItem *m_detailShown; Chris@119: }; Chris@119: Chris@119: #endif