MuseScore  3.4
Music composition and notation
inspectorTextLineBase.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseScore
3 // Music Composition & Notation
4 //
5 // Copyright (C) 2017 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_TEXT_LINE_BASE_H__
14 #define __INSPECTOR_TEXT_LINE_BASE_H__
15 
16 #include "inspectorElementBase.h"
17 #include "ui_inspector_line.h"
18 #include "ui_inspector_textlinebase.h"
19 
20 namespace Ms {
21 
22 //---------------------------------------------------------
23 // InspectorTextBase
24 //---------------------------------------------------------
25 
27  Q_OBJECT
28 
29  void updateBeginHookType();
30  void updateEndHookType();
31  void updateLineType();
32 
33  protected:
34  Ui::InspectorLine l;
35  Ui::InspectorTextLineBase tl;
36 
37  public:
38  InspectorTextLineBase(QWidget* parent);
39  virtual void setElement() override;
40  virtual void valueChanged(int) override;
41  };
42 
43 } // namespace Ms
44 
45 
46 #endif
47 
48 
49 
virtual void setElement() override
Definition: inspectorTextLineBase.cpp:114
InspectorTextLineBase(QWidget *parent)
Definition: inspectorTextLineBase.cpp:49
Ui::InspectorLine l
Definition: inspectorTextLineBase.h:34
void updateEndHookType()
Definition: inspectorTextLineBase.cpp:173
Definition: aeolus.cpp:26
void updateLineType()
Definition: inspectorTextLineBase.cpp:141
Ui::InspectorTextLineBase tl
Definition: inspectorTextLineBase.h:35
void updateBeginHookType()
Definition: inspectorTextLineBase.cpp:159
virtual void valueChanged(int) override
Definition: inspectorTextLineBase.cpp:187
Definition: inspectorElementBase.h:34
Definition: inspectorTextLineBase.h:26