MuseScore/mscore/inspector/inspectorFingering.h
2017-01-16 20:59:21 +01:00

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