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_TRILL_H__
14 #define __INSPECTOR_TRILL_H__
15 
16 #include "inspector.h"
17 #include "inspectorBase.h"
18 #include "ui_inspector_line.h"
19 #include "ui_inspector_trill.h"
20 
21 namespace Ms {
22 
23 //---------------------------------------------------------
24 //   InspectorTrill
25 //---------------------------------------------------------
26 
27 class InspectorTrill : public InspectorElementBase {
28       Q_OBJECT
29 
30       Ui::InspectorTrill t;
31 
32    public:
33       InspectorTrill(QWidget* parent);
34       virtual void setElement() override;
35       };
36 
37 
38 } // namespace Ms
39 #endif
40 
41