annotate view/PaneStack.h @ 561:aced8ec09bc8

* Complete the overhaul of CSV file import; now you can pick the purpose for each column in the file, and SV should do the rest. The most significant practical improvement here is that we can now handle files in which time and duration do not necessarily appear in known columns.
author Chris Cannam
date Mon, 19 Jul 2010 17:08:56 +0000
parents 566787389e59
children a7a89ebe4b02
rev   line source
Chris@127 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@127 2
Chris@127 3 /*
Chris@127 4 Sonic Visualiser
Chris@127 5 An audio file viewer and annotation editor.
Chris@127 6 Centre for Digital Music, Queen Mary, University of London.
Chris@182 7 This file copyright 2006 Chris Cannam and QMUL.
Chris@127 8
Chris@127 9 This program is free software; you can redistribute it and/or
Chris@127 10 modify it under the terms of the GNU General Public License as
Chris@127 11 published by the Free Software Foundation; either version 2 of the
Chris@127 12 License, or (at your option) any later version. See the file
Chris@127 13 COPYING included with this distribution for more information.
Chris@127 14 */
Chris@127 15
Chris@127 16 #ifndef _PANESTACK_H_
Chris@127 17 #define _PANESTACK_H_
Chris@127 18
Chris@127 19 #include <QFrame>
Chris@127 20
Chris@323 21 #include <map>
Chris@323 22
Chris@127 23 class QWidget;
Chris@127 24 class QLabel;
Chris@127 25 class QStackedWidget;
Chris@127 26 class QSplitter;
Chris@495 27 class QGridLayout;
Chris@127 28 class View;
Chris@127 29 class Pane;
Chris@127 30 class Layer;
Chris@127 31 class ViewManager;
Chris@127 32 class PropertyContainer;
Chris@127 33 class PropertyStack;
Chris@127 34
Chris@127 35 class PaneStack : public QFrame
Chris@127 36 {
Chris@127 37 Q_OBJECT
Chris@127 38
Chris@127 39 public:
Chris@127 40 PaneStack(QWidget *parent, ViewManager *viewManager);
Chris@127 41
Chris@127 42 Pane *addPane(bool suppressPropertyBox = false); // I own the returned value
Chris@539 43 Pane *insertPane(int index, bool suppressPropertyBox = false); // I own the returned value
Chris@127 44 void deletePane(Pane *pane); // Deletes the pane, but _not_ its layers
Chris@127 45
Chris@127 46 int getPaneCount() const; // Returns only count of visible panes
Chris@127 47 Pane *getPane(int n); // Of visible panes; I own the returned value
Chris@277 48 int getPaneIndex(Pane *pane); // so getPane(index)==pane; -1 if absent
Chris@127 49
Chris@127 50 void hidePane(Pane *pane); // Also removes pane from getPane/getPaneCount
Chris@127 51 void showPane(Pane *pane); // Returns pane to getPane/getPaneCount
Chris@127 52
Chris@127 53 int getHiddenPaneCount() const;
Chris@127 54 Pane *getHiddenPane(int n); // I own the returned value
Chris@127 55
Chris@127 56 void setCurrentPane(Pane *pane);
Chris@127 57 void setCurrentLayer(Pane *pane, Layer *layer);
Chris@127 58 Pane *getCurrentPane();
Chris@127 59
Chris@127 60 enum LayoutStyle {
Chris@179 61 NoPropertyStacks = 0,
Chris@127 62 SinglePropertyStackLayout = 1,
Chris@127 63 PropertyStackPerPaneLayout = 2
Chris@127 64 };
Chris@127 65
Chris@127 66 LayoutStyle getLayoutStyle() const { return m_layoutStyle; }
Chris@127 67 void setLayoutStyle(LayoutStyle style);
Chris@127 68
Chris@235 69 void setPropertyStackMinWidth(int mw);
Chris@235 70
Chris@320 71 void sizePanesEqually();
Chris@320 72
Chris@127 73 signals:
Chris@127 74 void currentPaneChanged(Pane *pane);
Chris@127 75 void currentLayerChanged(Pane *pane, Layer *layer);
Chris@127 76 void rightButtonMenuRequested(Pane *pane, QPoint position);
Chris@363 77 void propertyStacksResized(int width);
Chris@180 78 void propertyStacksResized();
Chris@189 79 void contextHelpChanged(const QString &);
Chris@127 80
Chris@271 81 void paneAdded(Pane *pane);
Chris@271 82 void paneAdded();
Chris@319 83 void paneHidden(Pane *pane);
Chris@319 84 void paneHidden();
Chris@271 85 void paneAboutToBeDeleted(Pane *pane);
Chris@271 86 void paneDeleted();
Chris@271 87
Chris@312 88 void dropAccepted(Pane *pane, QStringList uriList);
Chris@312 89 void dropAccepted(Pane *pane, QString text);
Chris@312 90
Chris@323 91 void paneDeleteButtonClicked(Pane *pane);
Chris@323 92
Chris@127 93 public slots:
Chris@127 94 void propertyContainerAdded(PropertyContainer *);
Chris@127 95 void propertyContainerRemoved(PropertyContainer *);
Chris@127 96 void propertyContainerSelected(View *client, PropertyContainer *);
Chris@190 97 void viewSelected(View *v);
Chris@127 98 void paneInteractedWith();
Chris@127 99 void rightButtonMenuRequested(QPoint);
Chris@312 100 void paneDropAccepted(QStringList);
Chris@312 101 void paneDropAccepted(QString);
Chris@323 102 void paneDeleteButtonClicked();
Chris@500 103 void indicatorClicked();
Chris@127 104
Chris@127 105 protected:
Chris@127 106 Pane *m_currentPane;
Chris@127 107
Chris@127 108 struct PaneRec
Chris@127 109 {
Chris@127 110 Pane *pane;
Chris@127 111 QWidget *propertyStack;
Chris@127 112 QLabel *currentIndicator;
Chris@127 113 QFrame *frame;
Chris@495 114 QGridLayout *layout;
Chris@127 115 };
Chris@127 116
Chris@127 117 std::vector<PaneRec> m_panes;
Chris@127 118 std::vector<PaneRec> m_hiddenPanes;
Chris@127 119
Chris@323 120 std::map<QWidget *, Pane *> m_xButtonMap;
Chris@323 121
Chris@127 122 QSplitter *m_splitter;
Chris@127 123 QStackedWidget *m_propertyStackStack;
Chris@127 124
Chris@127 125 ViewManager *m_viewManager; // I don't own this
Chris@235 126 int m_propertyStackMinWidth;
Chris@127 127 void sizePropertyStacks();
Chris@127 128
Chris@127 129 LayoutStyle m_layoutStyle;
Chris@127 130 };
Chris@127 131
Chris@127 132 #endif
Chris@127 133