MuseScore  3.4
Music composition and notation
inspectorBend.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_BEND_H__
14 #define __INSPECTOR_BEND_H__
15 
16 #include "inspector.h"
17 #include "ui_inspector_bend.h"
18 #include "libmscore/pitchvalue.h"
19 
20 namespace Ms {
21 
22 //---------------------------------------------------------
23 // InspectorBend
24 //---------------------------------------------------------
25 
27  Q_OBJECT
28 
29  Ui::InspectorBend g;
30 
31  private slots:
32  void bendTypeChanged(int);
33  void updateBend();
34 
35  public:
36  InspectorBend(QWidget* parent);
37  virtual void setElement() override;
38  };
39 
40 } // namespace Ms
41 #endif
InspectorBend(QWidget *parent)
Definition: inspectorBend.cpp:44
void updateBend()
Definition: inspectorBend.cpp:134
Definition: inspectorBend.h:26
void bendTypeChanged(int)
Definition: inspectorBend.cpp:103
Definition: aeolus.cpp:26
Ui::InspectorBend g
Definition: inspectorBend.h:29
Definition: inspectorElementBase.h:34
virtual void setElement() override
Definition: inspectorBend.cpp:78