blob: b2b5dc126aaac3315fd9bac2a73437c18a17cda9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//=========================================================
// MusE
// Linux Music Editor
//
// (C) Copyright 2008 Robert Jonsson (rj@spamatica.se)
// (C) Copyright 2005- Werner Schweer (ws@seh.de)
// Copyright: See COPYING file that comes with this distribution
//=========================================================
#ifndef __OUTPUTINSTRUMENTVIEW_H__
#define __OUTPUTINSTRUMENTVIEW_H__
#include "ui_outputinstrumentview.h"
#include "drumglue.h"
//---------------------------------------------------------
// OutputInstrumentView
//---------------------------------------------------------
class DrumGlue;
class OutputInstrumentView : public QDialog, public Ui::OutputInstrumentViewBase {
Q_OBJECT
DrumOutputInstrument *outputInstrument;
public:
OutputInstrumentView(DrumOutputInstrument*, QWidget* parent);
private slots:
void update();
};
#endif
|