MuseScore/mscore/inspector/inspectorText.h
2017-02-08 11:12:43 +01:00

39 lines
999 B
C++

//=============================================================================
// 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_TEXT_H__
#define __INSPECTOR_TEXT_H__
#include "inspector.h"
#include "inspectorTextBase.h"
#include "ui_inspector_text.h"
#include "ui_inspector_frametext.h"
namespace Ms {
//---------------------------------------------------------
// InspectorText
//---------------------------------------------------------
class InspectorText : public InspectorTextBase {
Q_OBJECT
Ui::InspectorFrameText f;
public:
InspectorText(QWidget* parent);
};
}
#endif