/[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 1461 by schoenebeck, Sun Oct 28 23:30:36 2007 UTC revision 1509 by capela, Thu Nov 22 11:10:44 2007 UTC
# Line 1  Line 1 
1  #ifndef QSAMPLER_CHANNEL_STRIP_H  // qsamplerChannelStrip.h
2  #define QSAMPLER_CHANNEL_STRIP_H  //
3    /****************************************************************************
4       Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.
5       Copyright (C) 2007, Christian Schoenebeck
6    
7       This program is free software; you can redistribute it and/or
8       modify it under the terms of the GNU General Public License
9       as published by the Free Software Foundation; either version 2
10       of the License, or (at your option) any later version.
11    
12       This program is distributed in the hope that it will be useful,
13       but WITHOUT ANY WARRANTY; without even the implied warranty of
14       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15       GNU General Public License for more details.
16    
17       You should have received a copy of the GNU General Public License along
18       with this program; if not, write to the Free Software Foundation, Inc.,
19       51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20    
21    *****************************************************************************/
22    
23    #ifndef __qsamplerChannelStrip_h
24    #define __qsamplerChannelStrip_h
25    
26  #include "ui_qsamplerChannelStrip.h"  #include "ui_qsamplerChannelStrip.h"
27    
28  #include "qsamplerChannel.h"  #include "qsamplerChannel.h"
29    
30  #include <QDragEnterEvent>  class QDragEnterEvent;
31    
32    
33  namespace QSampler {  namespace QSampler {
34    
35  class ChannelStrip : public QWidget {  class ChannelStrip : public QWidget
36  Q_OBJECT  {
37            Q_OBJECT
38    
39  public:  public:
40      ChannelStrip(QWidget* parent = 0, Qt::WFlags f = 0);  
41        ChannelStrip(QWidget* pParent = NULL, Qt::WindowFlags wflags = 0);
42     ~ChannelStrip();     ~ChannelStrip();
43    
44      void setup(qsamplerChannel* pChannel);      void setup(qsamplerChannel* pChannel);
45      qsamplerChannel* channel();  
46      QFont displayFont();      qsamplerChannel *channel() const;
47    
48      void setDisplayFont(const QFont& font);      void setDisplayFont(const QFont& font);
49        QFont displayFont() const;
50    
51      void setDisplayEffect(bool bDisplayEffect);      void setDisplayEffect(bool bDisplayEffect);
52      void setDisplayBackground(const QPixmap& pm);  
53      void setMaxVolume(int iMaxVolume);      void setMaxVolume(int iMaxVolume);
54    
55      bool updateInstrumentName(bool bForce);      bool updateInstrumentName(bool bForce);
56      bool updateChannelVolume();      bool updateChannelVolume();
57      bool updateChannelInfo();      bool updateChannelInfo();
58      bool updateChannelUsage();      bool updateChannelUsage();
59    
60      void resetErrorCount();      void resetErrorCount();
61    
62  signals:  signals:
63    
64      void channelChanged(ChannelStrip*);      void channelChanged(ChannelStrip*);
65    
66  public slots:  public slots:
67    
68      bool channelSetup();      bool channelSetup();
69      bool channelMute(bool bMute);      bool channelMute(bool bMute);
70      bool channelSolo(bool bSolo);      bool channelSolo(bool bSolo);
# Line 40  public slots: Line 73  public slots:
73      void volumeChanged(int iVolume);      void volumeChanged(int iVolume);
74    
75  protected:  protected:
76      bool decodeDragFile(const QMimeSource* pEvent, QString& sInstrumentFile);  
77      void dragEnterEvent(QDragEnterEvent* pDragEnterEvent);      void dragEnterEvent(QDragEnterEvent* pDragEnterEvent);
78      void dropEvent(QDropEvent* pDropEvent);      void dropEvent(QDropEvent* pDropEvent);
79      void contextMenuEvent(QContextMenuEvent* pEvent);      void contextMenuEvent(QContextMenuEvent* pEvent);
80    
81  private:  private:
82      Ui::qsamplerChannelStrip ui;  
83        Ui::qsamplerChannelStrip m_ui;
84    
85      qsamplerChannel* m_pChannel;      qsamplerChannel* m_pChannel;
86      int m_iDirtyChange;      int m_iDirtyChange;
# Line 55  private: Line 89  private:
89    
90  } // namespace QSampler  } // namespace QSampler
91    
92  #endif // QSAMPLER_CHANNEL_STRIP_H  #endif // __qsamplerChannelStrip_h
93    
94    
95    // end of qsamplerChannelStrip.h

Legend:
Removed from v.1461  
changed lines
  Added in v.1509

  ViewVC Help
Powered by ViewVC