Mercurial > hg > svgui
annotate widgets/WindowTypeSelector.h @ 1551:e79731086b0f
Fixes to NoteLayer, particularly to calculation of vertical scale when model unit is not Hz. To avoid inconsistency we now behave as if the unit is always Hz from the point of view of the external API and display, converting at the point where we obtain values from the events themselves. Also various fixes to editing.
author | Chris Cannam |
---|---|
date | Thu, 21 Nov 2019 14:02:57 +0000 |
parents | 05d614f6e46d |
children |
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@1407 | 16 #ifndef SV_WINDOW_TYPE_SELECTOR_H |
Chris@1407 | 17 #define SV_WINDOW_TYPE_SELECTOR_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 WindowShapePreview; |
Chris@139 | 24 class QComboBox; |
Chris@139 | 25 |
Chris@139 | 26 class WindowTypeSelector : public QFrame |
Chris@139 | 27 { |
Chris@139 | 28 Q_OBJECT |
Chris@139 | 29 |
Chris@139 | 30 public: |
Chris@908 | 31 WindowTypeSelector(WindowType defaultType); |
Chris@908 | 32 WindowTypeSelector(); // get window type from preferences |
Chris@139 | 33 virtual ~WindowTypeSelector(); |
Chris@139 | 34 |
Chris@139 | 35 WindowType getWindowType() const; |
Chris@139 | 36 |
Chris@139 | 37 signals: |
Chris@139 | 38 void windowTypeChanged(WindowType type); |
Chris@139 | 39 |
Chris@139 | 40 public slots: |
Chris@139 | 41 void setWindowType(WindowType type); |
Chris@139 | 42 |
Chris@139 | 43 protected slots: |
Chris@139 | 44 void windowIndexChanged(int index); |
Chris@139 | 45 |
Chris@139 | 46 protected: |
Chris@139 | 47 QComboBox *m_windowCombo; |
Chris@139 | 48 WindowShapePreview *m_windowShape; |
Chris@139 | 49 WindowType *m_windows; |
Chris@139 | 50 WindowType m_windowType; |
Chris@908 | 51 |
Chris@908 | 52 void init(WindowType type); |
Chris@139 | 53 }; |
Chris@139 | 54 |
Chris@139 | 55 #endif |