MuseScore/mscore/inspector/inspectorHarmony.h

39 lines
996 B
C
Raw Normal View History

2018-07-12 10:15:56 +02:00
//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2011 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_HARMONY_H__
#define __INSPECTOR_HARMONY_H__
#include "inspector.h"
#include "ui_inspector_harmony.h"
#include "libmscore/property.h"
namespace Ms {
//---------------------------------------------------------
// InspectorHarmony
//---------------------------------------------------------
2018-07-13 17:24:26 +02:00
class InspectorHarmony : public InspectorTextBase {
2018-07-12 10:15:56 +02:00
Q_OBJECT
2018-07-13 17:24:26 +02:00
Ui::InspectorHarmony h;
2018-07-12 10:15:56 +02:00
public:
InspectorHarmony(QWidget* parent);
};
} // namespace Ms
#endif