Chris@954: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@954: Chris@954: /* Chris@954: Sonic Visualiser Chris@954: An audio file viewer and annotation editor. Chris@954: Centre for Digital Music, Queen Mary, University of London. Chris@954: Chris@954: This program is free software; you can redistribute it and/or Chris@954: modify it under the terms of the GNU General Public License as Chris@954: published by the Free Software Foundation; either version 2 of the Chris@954: License, or (at your option) any later version. See the file Chris@954: COPYING included with this distribution for more information. Chris@954: */ Chris@954: Chris@954: #ifndef SV_SPLASH_H Chris@954: #define SV_SPLASH_H Chris@954: Chris@954: #include Chris@954: Chris@954: class QPixmap; Chris@954: Chris@954: class SVSplash : public QSplashScreen Chris@954: { Chris@954: Q_OBJECT Chris@954: Chris@954: public: Chris@954: SVSplash(); Chris@954: virtual ~SVSplash(); Chris@954: Chris@954: public slots: Chris@954: void finishSplash(QWidget *); Chris@954: Chris@954: protected: Chris@954: void drawContents(QPainter *); Chris@954: QPixmap *m_pixmap; Chris@954: }; Chris@954: Chris@954: #endif Chris@954: