MuseScore  3.4
Music composition and notation
synthesizergui.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseSynth
3 // Music Software Synthesizer
4 //
5 // Copyright (C) 2013 Werner Schweer
6 //
7 // This program is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License version 2
9 // as published by the Free Software Foundation and appearing in
10 // the file LICENCE.GPL
11 //=============================================================================
12 
13 #ifndef __SYNTHESIZERGUI_H__
14 #define __SYNTHESIZERGUI_H__
15 
16 namespace Ms {
17 
18 class Synthesizer;
19 
20 //---------------------------------------------------------
21 // SynthesizerGui
22 //---------------------------------------------------------
23 
24 class SynthesizerGui : public QWidget {
25  Q_OBJECT
27 
28  signals:
29  void sfChanged();
30  void valueChanged();
31 
32  public slots:
33  virtual void synthesizerChanged() {}
34 
35  public:
38  };
39 
40 }
41 #endif
42 
Definition: synthesizer.h:41
virtual void synthesizerChanged()
Definition: synthesizergui.h:33
Definition: synthesizergui.h:24
Definition: aeolus.cpp:26
Synthesizer * synthesizer()
Definition: synthesizergui.h:37
Synthesizer * _synthesizer
Definition: synthesizergui.h:26
SynthesizerGui(Synthesizer *)
Definition: synthesizergui.cpp:22