38 lines
1 KiB
C++
38 lines
1 KiB
C++
//=============================================================================
|
|
// MuseScore
|
|
// Music Composition & Notation
|
|
//
|
|
// Copyright (C) 2017 Werner Schweer and others
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2
|
|
// as published by the Free Software Foundation and appearing in
|
|
// the file LICENSE.GPL
|
|
//=============================================================================
|
|
|
|
#ifndef __INSPECTOR_FINGERING_H__
|
|
#define __INSPECTOR_FINGERING_H__
|
|
|
|
#include "inspector.h"
|
|
#include "ui_inspector_text.h"
|
|
#include "ui_inspector_fingering.h"
|
|
|
|
namespace Ms {
|
|
|
|
//---------------------------------------------------------
|
|
// InspectorFingering
|
|
//---------------------------------------------------------
|
|
|
|
class InspectorFingering : public InspectorElementBase {
|
|
Q_OBJECT
|
|
|
|
Ui::InspectorText t;
|
|
Ui::InspectorFingering f;
|
|
|
|
public:
|
|
InspectorFingering(QWidget* parent);
|
|
};
|
|
|
|
|
|
} // namespace Ms
|
|
#endif
|