MuseScore/mscore/inspector/inspectorFingering.h

39 lines
1 KiB
C
Raw Normal View History

2017-01-05 14:53:21 +01:00
//=============================================================================
// 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"
2017-01-16 20:51:12 +01:00
#include "ui_inspector_text.h"
2017-01-05 14:53:21 +01:00
#include "ui_inspector_fingering.h"
namespace Ms {
//---------------------------------------------------------
// InspectorFingering
//---------------------------------------------------------
class InspectorFingering : public InspectorElementBase {
Q_OBJECT
2017-01-16 20:51:12 +01:00
Ui::InspectorText t;
2017-01-05 14:53:21 +01:00
Ui::InspectorFingering f;
public:
InspectorFingering(QWidget* parent);
};
} // namespace Ms
#endif