/[svn]/qsampler/trunk/src/qsamplerChannelStrip.h
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerChannelStrip.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1510 by capela, Thu Nov 22 14:17:24 2007 UTC revision 1691 by schoenebeck, Thu Feb 14 22:31:26 2008 UTC
# Line 2  Line 2 
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007, Christian Schoenebeck     Copyright (C) 2007, 2008 Christian Schoenebeck
6    
7     This program is free software; you can redistribute it and/or     This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License     modify it under the terms of the GNU General Public License
# Line 26  Line 26 
26  #include "ui_qsamplerChannelStrip.h"  #include "ui_qsamplerChannelStrip.h"
27    
28  #include "qsamplerChannel.h"  #include "qsamplerChannel.h"
29    #include <QTimer>
30    
31  class QDragEnterEvent;  class QDragEnterEvent;
32    
33    
34  namespace QSampler {  namespace QSampler {
35    
36    //-------------------------------------------------------------------------
37    // QSampler::ChannelStrip -- Channel strip form interface.
38    //
39    
40  class ChannelStrip : public QWidget  class ChannelStrip : public QWidget
41  {  {
42          Q_OBJECT          Q_OBJECT
# Line 41  public: Line 46  public:
46          ChannelStrip(QWidget* pParent = NULL, Qt::WindowFlags wflags = 0);          ChannelStrip(QWidget* pParent = NULL, Qt::WindowFlags wflags = 0);
47          ~ChannelStrip();          ~ChannelStrip();
48    
49          void setup(qsamplerChannel *pChannel);          void setup(Channel *pChannel);
50    
51          qsamplerChannel *channel() const;          Channel *channel() const;
52    
53          void setDisplayFont(const QFont& font);          void setDisplayFont(const QFont& font);
54          QFont displayFont() const;          QFont displayFont() const;
# Line 59  public: Line 64  public:
64    
65          void resetErrorCount();          void resetErrorCount();
66    
67            // Channel strip activation/selection.
68            void setSelected(bool bSelected);
69            bool isSelected() const;
70    
71  signals:  signals:
72    
73          void channelChanged(ChannelStrip*);          void channelChanged(ChannelStrip*);
# Line 69  public slots: Line 78  public slots:
78          bool channelMute(bool bMute);          bool channelMute(bool bMute);
79          bool channelSolo(bool bSolo);          bool channelSolo(bool bSolo);
80          void channelEdit();          void channelEdit();
81            bool channelFxEdit();
82          bool channelReset();          bool channelReset();
83          void volumeChanged(int iVolume);          void volumeChanged(int iVolume);
84            void midiArrived();
85    
86  protected:  protected:
87    
# Line 78  protected: Line 89  protected:
89          void dropEvent(QDropEvent* pDropEvent);          void dropEvent(QDropEvent* pDropEvent);
90          void contextMenuEvent(QContextMenuEvent* pEvent);          void contextMenuEvent(QContextMenuEvent* pEvent);
91    
92    protected slots:
93    
94            void midiDataCeased();
95    
96  private:  private:
97    
98          Ui::qsamplerChannelStrip m_ui;          Ui::qsamplerChannelStrip m_ui;
99    
100          qsamplerChannel* m_pChannel;          Channel* m_pChannel;
101          int m_iDirtyChange;          int m_iDirtyChange;
102          int m_iErrorCount;          int m_iErrorCount;
103            QTimer* pMidiActivityTimer;
104    
105            // Channel strip activation/selection.
106            static ChannelStrip *g_pSelectedStrip;
107  };  };
108    
109  } // namespace QSampler  } // namespace QSampler

Legend:
Removed from v.1510  
changed lines
  Added in v.1691

  ViewVC Help
Powered by ViewVC