~ubuntu-branches/ubuntu/oneiric/lmms/oneiric

« back to all changes in this revision

Viewing changes to include/instrument_midi_io_view.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-12 13:32:32 UTC
  • mfrom: (1.1.9 upstream) (3.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20101112133232-vdld83iyji8srqti
Tags: 0.4.7-2ubuntu1
* Re-sync with Debian (LP: #606533):
  - Replace build-dep on libwine-dev with libwine-dev-unstable to build
    against the newer Wine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * instrument_midi_io_view.h - tab-widget in instrument-track-window for setting
3
 
 *                             up MIDI-related stuff
4
 
 *
5
 
 * Copyright (c) 2005-2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
6
 
 * 
7
 
 * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
8
 
 *
9
 
 * This program is free software; you can redistribute it and/or
10
 
 * modify it under the terms of the GNU General Public
11
 
 * License as published by the Free Software Foundation; either
12
 
 * version 2 of the License, or (at your option) any later version.
13
 
 *
14
 
 * This program is distributed in the hope that it will be useful,
15
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17
 
 * General Public License for more details.
18
 
 *
19
 
 * You should have received a copy of the GNU General Public
20
 
 * License along with this program (see COPYING); if not, write to the
21
 
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22
 
 * Boston, MA 02110-1301 USA.
23
 
 *
24
 
 */
25
 
 
26
 
 
27
 
#ifndef _INSTRUMENT_MIDI_IO_VIEW_H
28
 
#define _INSTRUMENT_MIDI_IO_VIEW_H
29
 
 
30
 
#include <QtGui/QWidget>
31
 
 
32
 
#include "mv_base.h"
33
 
 
34
 
 
35
 
class groupBox;
36
 
class lcdSpinBox;
37
 
class midiPortMenu;
38
 
class QToolButton;
39
 
 
40
 
 
41
 
class instrumentMidiIOView : public QWidget, public modelView
42
 
{
43
 
public:
44
 
        instrumentMidiIOView( QWidget * _parent );
45
 
        virtual ~instrumentMidiIOView();
46
 
 
47
 
 
48
 
private:
49
 
        virtual void modelChanged( void );
50
 
 
51
 
        groupBox * m_midiInputGroupBox;
52
 
        lcdSpinBox * m_inputChannelSpinBox;
53
 
        lcdSpinBox * m_fixedInputVelocitySpinBox;
54
 
        QToolButton * m_rpBtn;
55
 
 
56
 
        groupBox * m_midiOutputGroupBox;
57
 
        lcdSpinBox * m_outputChannelSpinBox;
58
 
        lcdSpinBox * m_fixedOutputVelocitySpinBox;
59
 
        lcdSpinBox * m_outputProgramSpinBox;
60
 
        QToolButton * m_wpBtn;
61
 
 
62
 
} ;
63
 
 
64
 
 
65
 
#endif