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