Mercurial > hg > svgui
annotate widgets/NotifyingCheckBox.cpp @ 296:ea37c229a578
* Fix #1757772 tempo, dynamic related plug-ins bug -- make auto-align
only auto-align if there is a unit involved
* Fix #1755366 text layer bug in retrieved session
* Fix input model selection in plugin parameter dialog (was being ignored)
* Use lighter background than the standard widget one for panes (assuming the
widget background is light but not white) -- similarly darker if dark
* Fix colour reference counting in loaded session in SingleColourLayer
* Reset overview pane colour when switching dark background on or off
author | Chris Cannam |
---|---|
date | Tue, 14 Aug 2007 13:58:53 +0000 |
parents | 5b7472db612b |
children |
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 #include "NotifyingCheckBox.h" |
Chris@189 | 17 |
Chris@189 | 18 NotifyingCheckBox::~NotifyingCheckBox() |
Chris@189 | 19 { |
Chris@189 | 20 } |
Chris@189 | 21 |
Chris@189 | 22 void |
Chris@189 | 23 NotifyingCheckBox::enterEvent(QEvent *e) |
Chris@189 | 24 { |
Chris@189 | 25 QCheckBox::enterEvent(e); |
Chris@189 | 26 emit mouseEntered(); |
Chris@189 | 27 } |
Chris@189 | 28 |
Chris@189 | 29 void |
Chris@189 | 30 NotifyingCheckBox::leaveEvent(QEvent *e) |
Chris@189 | 31 { |
Chris@189 | 32 QCheckBox::enterEvent(e); |
Chris@189 | 33 emit mouseLeft(); |
Chris@189 | 34 } |
Chris@189 | 35 |