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

Contents of /qsampler/trunk/src/qsamplerChannelFxForm.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: 1602 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 // qsamplerInstrumentListForm.h
2 //
3 /****************************************************************************
4 Copyright (C) 2008, Christian Schoenebeck
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 *****************************************************************************/
21
22 #ifndef __qsamplerChannelFxForm_h
23 #define __qsamplerChannelFxForm_h
24
25 #include "ui_qsamplerChannelFxForm.h"
26
27 #include <QDialog>
28
29 namespace QSampler {
30
31 class ChannelFxForm : public QDialog {
32 Q_OBJECT
33 public:
34 ChannelFxForm(int SamplerChannelID, QWidget* pParent = NULL, Qt::WindowFlags wflags = 0);
35 ~ChannelFxForm();
36
37 protected slots:
38 void onFxSendSelection(const QModelIndex& index);
39 void onButtonClicked(QAbstractButton* button);
40 void onCreateFxSend();
41 void onDestroyFxSend();
42
43 private:
44 Ui::qsamplerChannelFxForm m_ui;
45
46 int m_SamplerChannelID;
47 };
48
49 } // namespace QSampler
50
51 #endif // __qsamplerChannelFxForm_h
52
53 // end of qsamplerChannelFxForm.h

  ViewVC Help
Powered by ViewVC