MuseScore  3.4
Music composition and notation
inspectorTremoloBar.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseScore
3 // Music Composition & Notation
4 //
5 // Copyright (C) 2010-2019 Werner Schweer and others
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 LICENSE.GPL
11 //=============================================================================
12 
13 #ifndef __INSPECTOR_TREMOLO_BAR_H__
14 #define __INSPECTOR_TREMOLO_BAR_H__
15 
16 #include "inspector.h"
17 #include "ui_inspector_tremolobar.h"
18 #include "libmscore/pitchvalue.h"
19 
20 namespace Ms {
21 
22 //---------------------------------------------------------
23 // InspectorTremoloBar
24 //---------------------------------------------------------
25 
27  Q_OBJECT
28 
29  Ui::InspectorTremoloBar g;
30 
31  private slots:
32  void tremoloBarTypeChanged(int);
33  void updateTremoloBar();
34 
35  public:
36  InspectorTremoloBar(QWidget* parent);
37  virtual void setElement() override;
38  };
39 
40 }
41 
42 #endif
void tremoloBarTypeChanged(int)
Definition: inspectorTremoloBar.cpp:106
InspectorTremoloBar(QWidget *parent)
Definition: inspectorTremoloBar.cpp:46
Definition: inspectorTremoloBar.h:26
virtual void setElement() override
Definition: inspectorTremoloBar.cpp:79
void updateTremoloBar()
Definition: inspectorTremoloBar.cpp:140
Definition: aeolus.cpp:26
Definition: inspectorElementBase.h:34
Ui::InspectorTremoloBar g
Definition: inspectorTremoloBar.h:29