00001 /*************************************************************************** 00002 debugviewlayer.h - description 00003 ------------------- 00004 begin : Sun Nov 24 2002 00005 copyright : (C) 2002 by Peter Eschler 00006 email : eschler@users.sourceforge.net 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef QwavDEBUGLAYER_H 00019 #define QwavDEBUGLAYER_H 00020 00021 #include "qwavviewlayer.h" 00022 00023 Qwav_BEGIN_NAMESPACE 00024 00030 class QWAV_EXPORTIMPORT QwavDebugLayer : public QwavViewLayer 00031 { 00032 public: 00033 QwavDebugLayer(); 00034 ~QwavDebugLayer(); 00035 00036 virtual void paintLayer(QwavWaveView* v, const QRect& rect ); 00037 00038 inline virtual const string getName() const { return "DebugViewLayer"; } 00039 00040 }; 00041 00042 Qwav_END_NAMESPACE 00043 00044 #endif // QwavDEBUGLAYER_H