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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1667 - (show annotations) (download) (as text)
Mon Feb 4 23:24:19 2008 UTC (16 years, 2 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 2657 byte(s)
* added FX Sends dialog to channel strips
  (still under construction, so far one can only create, destroy and rename
  FX sends, the rest is still to do)
* bumped version to 0.2.1.3

1 // qsamplerChannelStrip.h
2 //
3 /****************************************************************************
4 Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.
5 Copyright (C) 2007, 2008 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"
27
28 #include "qsamplerChannel.h"
29
30 class QDragEnterEvent;
31
32
33 namespace QSampler {
34
35 //-------------------------------------------------------------------------
36 // QSampler::ChannelStrip -- Channel strip form interface.
37 //
38
39 class ChannelStrip : public QWidget
40 {
41 Q_OBJECT
42
43 public:
44
45 ChannelStrip(QWidget* pParent = NULL, Qt::WindowFlags wflags = 0);
46 ~ChannelStrip();
47
48 void setup(Channel *pChannel);
49
50 Channel *channel() const;
51
52 void setDisplayFont(const QFont& font);
53 QFont displayFont() const;
54
55 void setDisplayEffect(bool bDisplayEffect);
56
57 void setMaxVolume(int iMaxVolume);
58
59 bool updateInstrumentName(bool bForce);
60 bool updateChannelVolume();
61 bool updateChannelInfo();
62 bool updateChannelUsage();
63
64 void resetErrorCount();
65
66 // Channel strip activation/selection.
67 void setSelected(bool bSelected);
68 bool isSelected() const;
69
70 signals:
71
72 void channelChanged(ChannelStrip*);
73
74 public slots:
75
76 bool channelSetup();
77 bool channelMute(bool bMute);
78 bool channelSolo(bool bSolo);
79 void channelEdit();
80 bool channelFxEdit();
81 bool channelReset();
82 void volumeChanged(int iVolume);
83
84 protected:
85
86 void dragEnterEvent(QDragEnterEvent* pDragEnterEvent);
87 void dropEvent(QDropEvent* pDropEvent);
88 void contextMenuEvent(QContextMenuEvent* pEvent);
89
90 private:
91
92 Ui::qsamplerChannelStrip m_ui;
93
94 Channel* m_pChannel;
95 int m_iDirtyChange;
96 int m_iErrorCount;
97
98 // Channel strip activation/selection.
99 static ChannelStrip *g_pSelectedStrip;
100 };
101
102 } // namespace QSampler
103
104 #endif // __qsamplerChannelStrip_h
105
106
107 // end of qsamplerChannelStrip.h

  ViewVC Help
Powered by ViewVC