annotate widgets/NotifyingTabBar.h @ 301:5636eeacc467

* Merge from sv-match-alignment branch (excluding alignment-specific document). - add aggregate wave model (not yet complete enough to be added as a true model in a layer, but there's potential) - add play solo mode - add alignment model -- unused in plain SV - fix two plugin leaks - add m3u playlist support (opens all files at once, potentially hazardous) - fix retrieval of pre-encoded URLs - add ability to resample audio files on import, so as to match rates with other files previously loaded; add preference for same - add preliminary support in transform code for range and rate of transform input - reorganise preferences dialog, move dark-background option to preferences, add option for temporary directory location
author Chris Cannam
date Fri, 28 Sep 2007 13:56:38 +0000
parents 53835534a9d3
children a18e78b9c78b
rev   line source
Chris@190 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@190 2
Chris@190 3 /*
Chris@190 4 Sonic Visualiser
Chris@190 5 An audio file viewer and annotation editor.
Chris@190 6 Centre for Digital Music, Queen Mary, University of London.
Chris@190 7 This file copyright 2007 QMUL.
Chris@190 8
Chris@190 9 This program is free software; you can redistribute it and/or
Chris@190 10 modify it under the terms of the GNU General Public License as
Chris@190 11 published by the Free Software Foundation; either version 2 of the
Chris@190 12 License, or (at your option) any later version. See the file
Chris@190 13 COPYING included with this distribution for more information.
Chris@190 14 */
Chris@190 15
Chris@190 16 #ifndef _NOTIFYING_TAB_BAR_H_
Chris@190 17 #define _NOTIFYING_TAB_BAR_H_
Chris@190 18
Chris@190 19 #include <QTabBar>
Chris@190 20
Chris@190 21 class NotifyingTabBar : public QTabBar
Chris@190 22 {
Chris@190 23 Q_OBJECT
Chris@190 24
Chris@190 25 public:
Chris@190 26 NotifyingTabBar(QWidget *parent = 0);
Chris@190 27 virtual ~NotifyingTabBar();
Chris@190 28
Chris@190 29 signals:
Chris@190 30 void mouseEntered();
Chris@190 31 void mouseLeft();
Chris@190 32 void activeTabClicked();
Chris@190 33
Chris@190 34 protected:
Chris@190 35 virtual void mousePressEvent(QMouseEvent *);
Chris@190 36 virtual void enterEvent(QEvent *);
Chris@190 37 virtual void leaveEvent(QEvent *);
Chris@190 38 };
Chris@190 39
Chris@190 40 #endif