MuseScore  3.4
Music composition and notation
inspectorImage.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseScore
3 // Music Composition & Notation
4 //
5 // Copyright (C) 2011 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_IMAGE_H__
14 #define __INSPECTOR_IMAGE_H__
15 
16 #include "inspector.h"
17 #include "ui_inspector_image.h"
18 #include "libmscore/property.h"
19 
20 namespace Ms {
21 
22 //---------------------------------------------------------
23 // InspectorImage
24 //---------------------------------------------------------
25 
27  Q_OBJECT
28 
29  Ui::InspectorImage b;
30 
31  virtual void postInit();
32 
33  protected slots:
34  virtual void valueChanged(int idx) override;
35 
36  public:
37  InspectorImage(QWidget* parent);
38  };
39 
40 
41 } // namespace Ms
42 #endif
43 
Ui::InspectorImage b
Definition: inspectorImage.h:29
virtual void valueChanged(int idx) override
Definition: inspectorImage.cpp:57
InspectorImage(QWidget *parent)
Definition: inspectorImage.cpp:22
Definition: aeolus.cpp:26
virtual void postInit()
Definition: inspectorImage.cpp:67
Definition: inspectorElementBase.h:34
Definition: inspectorImage.h:26