annotate widgets/ActivityLog.h @ 1447:8afea53332f3 single-point

Add option to make pane sizes auto-resize-only (i.e. remove user control via a splitter); also place alignment views above panes instead of below, meaning the extra bit of space that we currently have for the pane without one at least goes to the primary pane
author Chris Cannam
date Tue, 30 Apr 2019 15:53:21 +0100
parents 05d614f6e46d
children
rev   line source
Chris@502 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@502 2
Chris@502 3 /*
Chris@502 4 Sonic Visualiser
Chris@502 5 An audio file viewer and annotation editor.
Chris@502 6 Centre for Digital Music, Queen Mary, University of London.
Chris@502 7 This file copyright 2009 QMUL.
Chris@502 8
Chris@502 9 This program is free software; you can redistribute it and/or
Chris@502 10 modify it under the terms of the GNU General Public License as
Chris@502 11 published by the Free Software Foundation; either version 2 of the
Chris@502 12 License, or (at your option) any later version. See the file
Chris@502 13 COPYING included with this distribution for more information.
Chris@502 14 */
Chris@502 15
Chris@1407 16 #ifndef SV_ACTIVITY_LOG_H
Chris@1407 17 #define SV_ACTIVITY_LOG_H
Chris@502 18
Chris@502 19 #include <QDialog>
Chris@502 20 #include <QString>
Chris@502 21
Chris@502 22 class QListView;
Chris@502 23 class QStringListModel;
Chris@502 24
Chris@502 25 class ActivityLog : public QDialog
Chris@502 26 {
Chris@502 27 Q_OBJECT
Chris@502 28
Chris@502 29 public:
Chris@502 30 ActivityLog();
Chris@502 31 ~ActivityLog();
Chris@502 32
Chris@502 33 public slots:
Chris@502 34 void activityHappened(QString);
Chris@505 35 void scrollToEnd();
Chris@502 36
Chris@502 37 private:
Chris@502 38 QListView *m_listView;
Chris@502 39 QStringListModel *m_model;
Chris@503 40 QString m_prevName;
Chris@502 41 };
Chris@502 42
Chris@502 43 #endif