MuseScore  3.4
Music composition and notation
inspectorGroupElement.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseScore
3 // Music Composition & Notation
4 //
5 // Copyright (C) 2012 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_GROUP_ELEMENT_H__
14 #define __INSPECTOR_GROUP_ELEMENT_H__
15 
16 #include "inspectorBase.h"
17 #include "ui_inspector_group_element.h"
18 
19 namespace Ms {
20 
21 //---------------------------------------------------------
22 // InspectorGroupElement
23 //---------------------------------------------------------
24 
26  Q_OBJECT
27 
28  Ui::InspectorGroupElement ge;
29  QPushButton* notes;
30  QPushButton* graceNotes;
31  QPushButton* rests;
32 
33  private slots:
34  void setColor();
35  void setVisible();
36  void setInvisible();
37  void enableAutoplace();
38  void disableAutoplace();
39  void notesClicked();
40  void graceNotesClicked();
41  void restsClicked();
42 
43  public:
44  InspectorGroupElement(QWidget* parent);
45  };
46 
47 
48 } // namespace Ms
49 #endif
50 
51 
void setInvisible()
Definition: inspectorGroupElement.cpp:115
Definition: inspectorGroupElement.h:25
void notesClicked()
Definition: inspectorGroupElement.cpp:166
void setVisible()
Definition: inspectorGroupElement.cpp:98
Ui::InspectorGroupElement ge
Definition: inspectorGroupElement.h:28
void setColor()
Definition: inspectorGroupElement.cpp:81
QPushButton * notes
Definition: inspectorGroupElement.h:29
void restsClicked()
Definition: inspectorGroupElement.cpp:214
void graceNotesClicked()
Definition: inspectorGroupElement.cpp:190
InspectorGroupElement(QWidget *parent)
Definition: inspectorGroupElement.cpp:25
Definition: inspectorBase.h:49
Definition: aeolus.cpp:26
QPushButton * rests
Definition: inspectorGroupElement.h:31
void enableAutoplace()
Definition: inspectorGroupElement.cpp:132
QPushButton * graceNotes
Definition: inspectorGroupElement.h:30
void disableAutoplace()
Definition: inspectorGroupElement.cpp:149