annotate widgets/NotifyingComboBox.h @ 1127:9fb8dfd7ce4c spectrogram-minor-refactor

Fix threshold in spectrogram -- it wasn't working in the last release. There is a new protocol for this. Formerly the threshold parameter had a range from -50dB to 0 with the default at -50, and -50 treated internally as "no threshold". However, there was a hardcoded, hidden internal threshold for spectrogram colour mapping at -80dB with anything below this being rounded to zero. Now the threshold parameter has range -81 to -1 with the default at -80, -81 is treated internally as "no threshold", and there is no hidden internal threshold. So the default behaviour is the same as before, an effective -80dB threshold, but it is now possible to change this in both directions. Sessions reloaded from prior versions may look slightly different because, if the session says there should be no threshold, there will now actually be no threshold instead of having the hidden internal one. Still need to do something in the UI to make it apparent that the -81dB setting removes the threshold entirely. This is at least no worse than the previous, also obscured, magic -50dB setting.
author Chris Cannam
date Mon, 01 Aug 2016 16:21:01 +0100
parents 5b7472db612b
children b1e3ee5f1be6
rev   line source
Chris@189 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@189 2
Chris@189 3 /*
Chris@189 4 Sonic Visualiser
Chris@189 5 An audio file viewer and annotation editor.
Chris@189 6 Centre for Digital Music, Queen Mary, University of London.
Chris@189 7 This file copyright 2007 QMUL.
Chris@189 8
Chris@189 9 This program is free software; you can redistribute it and/or
Chris@189 10 modify it under the terms of the GNU General Public License as
Chris@189 11 published by the Free Software Foundation; either version 2 of the
Chris@189 12 License, or (at your option) any later version. See the file
Chris@189 13 COPYING included with this distribution for more information.
Chris@189 14 */
Chris@189 15
Chris@189 16 #ifndef _NOTIFYING_COMBO_BOX_H_
Chris@189 17 #define _NOTIFYING_COMBO_BOX_H_
Chris@189 18
Chris@189 19 #include <QComboBox>
Chris@189 20
Chris@189 21 /**
Chris@189 22 * Very trivial enhancement to QComboBox to make it emit signals when
Chris@189 23 * the mouse enters and leaves (for context help).
Chris@189 24 */
Chris@189 25
Chris@189 26 class NotifyingComboBox : public QComboBox
Chris@189 27 {
Chris@189 28 Q_OBJECT
Chris@189 29 public:
Chris@189 30
Chris@189 31 NotifyingComboBox(QWidget *parent = 0) :
Chris@189 32 QComboBox(parent) { }
Chris@189 33
Chris@189 34 virtual ~NotifyingComboBox();
Chris@189 35
Chris@189 36 signals:
Chris@189 37 void mouseEntered();
Chris@189 38 void mouseLeft();
Chris@189 39
Chris@189 40 protected:
Chris@189 41 virtual void enterEvent(QEvent *);
Chris@189 42 virtual void leaveEvent(QEvent *);
Chris@189 43 };
Chris@189 44
Chris@189 45 #endif
Chris@189 46