Mercurial > hg > svgui
diff widgets/UnitConverter.h @ 885:6778a82d6b76
Adding the unit converter code might have enhanced the previous commit a little
author | Chris Cannam |
---|---|
date | Tue, 02 Dec 2014 13:30:24 +0000 |
parents | |
children | cd59f6e1aa26 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/widgets/UnitConverter.h Tue Dec 02 13:30:24 2014 +0000 @@ -0,0 +1,51 @@ +/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ + +/* + Sonic Visualiser + An audio file viewer and annotation editor. + Centre for Digital Music, Queen Mary, University of London. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. See the file + COPYING included with this distribution for more information. +*/ + +#ifndef UNIT_CONVERTER_H +#define UNIT_CONVERTER_H + +#include <QDialog> + +class QSpinBox; +class QDoubleSpinBox; +class QComboBox; + +class UnitConverter : public QDialog +{ + Q_OBJECT + +public: + UnitConverter(QWidget *parent = 0); + virtual ~UnitConverter(); + +private slots: + void hzChanged(double); + void midiChanged(int); + void noteChanged(int); + void octaveChanged(int); + void centsChanged(double); + void pianoChanged(int); + +private: + QDoubleSpinBox *m_hz; + QSpinBox *m_midi; + QComboBox *m_note; + QSpinBox *m_octave; + QDoubleSpinBox *m_cents; + QSpinBox *m_piano; + + void updateAllFromHz(); +}; + +#endif