MuseScore  3.4
Music composition and notation
inspectorAmbitus.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseScore
3 // Music Composition & Notation
4 //
5 // Copyright (C) 2011-2013 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_PARTRANGE_H__
14 #define __INSPECTOR_PARTRANGE_H__
15 
16 #include "inspector.h"
17 #include "inspectorBase.h"
18 #include "ui_inspector_ambitus.h"
19 #include "ui_inspector_segment.h"
20 
21 namespace Ms {
22 
23 //---------------------------------------------------------
24 // InspectorAmbitus
25 //---------------------------------------------------------
26 
28  Q_OBJECT
29 
30  Ui::InspectorAmbitus r;
31  Ui::InspectorSegment s;
32 
33  public:
34  InspectorAmbitus(QWidget* parent);
35  virtual void setElement() override;
36 
37  protected slots:
38  void updateRange();
39  virtual void valueChanged(int idx) override;
40  };
41 
42 
43 } // namespace Ms
44 #endif
45 
virtual void setElement() override
Definition: inspectorAmbitus.cpp:123
InspectorAmbitus(QWidget *parent)
Definition: inspectorAmbitus.cpp:33
Ui::InspectorSegment s
Definition: inspectorAmbitus.h:31
Ui::InspectorAmbitus r
Definition: inspectorAmbitus.h:30
virtual void valueChanged(int idx) override
Definition: inspectorAmbitus.cpp:137
Definition: inspectorAmbitus.h:27
Definition: aeolus.cpp:26
void updateRange()
Definition: inspectorAmbitus.cpp:153
Definition: inspectorElementBase.h:34