MuseScore  3.4
Music composition and notation
inspectorNote.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_NOTE_H__
14 #define __INSPECTOR_NOTE_H__
15 
16 #include "inspector.h"
17 #include "inspectorBase.h"
18 #include "ui_inspector_note.h"
19 #include "ui_inspector_chord.h"
20 #include "ui_inspector_segment.h"
21 
22 namespace Ms {
23 
24 //---------------------------------------------------------
25 // InspectorNote
26 //---------------------------------------------------------
27 
29  Q_OBJECT
30 
31  Ui::InspectorNote n;
32  Ui::InspectorChord c;
33  Ui::InspectorSegment s;
34 
35  void block(bool);
36 
37  private slots:
38  void dot1Clicked();
39  void dot2Clicked();
40  void dot3Clicked();
41  void dot4Clicked();
42  void hookClicked();
43  void stemClicked();
44  void beamClicked();
45  void tupletClicked();
46 
47  public:
48  InspectorNote(QWidget* parent);
49  virtual void setElement() override;
50  };
51 
52 
53 } // namespace Ms
54 #endif
55 
InspectorNote(QWidget *parent)
Definition: inspectorNote.cpp:31
virtual void setElement() override
Definition: inspectorNote.cpp:118
void dot1Clicked()
Definition: inspectorNote.cpp:156
void block(bool)
void dot2Clicked()
Definition: inspectorNote.cpp:173
void hookClicked()
Definition: inspectorNote.cpp:224
void dot4Clicked()
Definition: inspectorNote.cpp:207
Ui::InspectorSegment s
Definition: inspectorNote.h:33
void tupletClicked()
Definition: inspectorNote.cpp:275
void stemClicked()
Definition: inspectorNote.cpp:241
Ui::InspectorChord c
Definition: inspectorNote.h:32
Ui::InspectorNote n
Definition: inspectorNote.h:31
Definition: inspectorNote.h:28
Definition: aeolus.cpp:26
void beamClicked()
Definition: inspectorNote.cpp:258
void dot3Clicked()
Definition: inspectorNote.cpp:190
Definition: inspectorElementBase.h:34