Mercurial > hg > svgui
annotate widgets/WindowShapePreview.h @ 224:9465b5375235
* Fix #1672407 confused by plugin-named files in cwd (or home?)
* Fix #1491848 crash when loading new file while transform plugin runs
* Fix #1502287 Background remains black after spectrogram layer deleted
* Fix #1604477 Replacing the main audio file silences secondary audio file
* Fix failure to initialise property box layout to last preference on startup
* Fix resample/wrong-rate display in Pane, ensure that right rate is chosen
if all current models have an acceptable rate even if previous main model
had a different one
* Fix "global zoom" broken in previous commit
* Some fixes to spectrogram cache area updating (makes spectrogram appear
more quickly, previously it had a tendency to refresh with empty space)
* Fixes to colour 3d plot normalization
author | Chris Cannam |
---|---|
date | Thu, 08 Mar 2007 16:53:08 +0000 |
parents | 5ec6b60658d8 |
children | 05d614f6e46d |
rev | line source |
---|---|
Chris@139 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@139 | 2 |
Chris@139 | 3 /* |
Chris@139 | 4 Sonic Visualiser |
Chris@139 | 5 An audio file viewer and annotation editor. |
Chris@139 | 6 Centre for Digital Music, Queen Mary, University of London. |
Chris@139 | 7 This file copyright 2006 Chris Cannam. |
Chris@139 | 8 |
Chris@139 | 9 This program is free software; you can redistribute it and/or |
Chris@139 | 10 modify it under the terms of the GNU General Public License as |
Chris@139 | 11 published by the Free Software Foundation; either version 2 of the |
Chris@139 | 12 License, or (at your option) any later version. See the file |
Chris@139 | 13 COPYING included with this distribution for more information. |
Chris@139 | 14 */ |
Chris@139 | 15 |
Chris@139 | 16 #ifndef _WINDOW_SHAPE_PREVIEW_H_ |
Chris@139 | 17 #define _WINDOW_SHAPE_PREVIEW_H_ |
Chris@139 | 18 |
Chris@139 | 19 #include <QFrame> |
Chris@139 | 20 |
Chris@139 | 21 #include "base/Window.h" |
Chris@139 | 22 |
Chris@139 | 23 class QLabel; |
Chris@139 | 24 |
Chris@139 | 25 class WindowShapePreview : public QFrame |
Chris@139 | 26 { |
Chris@139 | 27 Q_OBJECT |
Chris@139 | 28 |
Chris@139 | 29 public: |
Chris@139 | 30 WindowShapePreview(QWidget *parent = 0); |
Chris@139 | 31 virtual ~WindowShapePreview(); |
Chris@139 | 32 |
Chris@139 | 33 public slots: |
Chris@139 | 34 void setWindowType(WindowType type); |
Chris@139 | 35 |
Chris@139 | 36 protected: |
Chris@139 | 37 QLabel *m_windowTimeExampleLabel; |
Chris@139 | 38 QLabel *m_windowFreqExampleLabel; |
Chris@139 | 39 WindowType m_windowType; |
Chris@139 | 40 |
Chris@139 | 41 void updateLabels(); |
Chris@139 | 42 }; |
Chris@139 | 43 |
Chris@139 | 44 #endif |