MuseScore/mscore/inspector/inspectorVolta.h

45 lines
1.1 KiB
C
Raw Normal View History

2012-09-17 15:37:31 +02:00
//=============================================================================
// MuseScore
// Music Composition & Notation
// $Id:$
//
// Copyright (C) 2012 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_VOLTA_H__
#define __INSPECTOR_VOLTA_H__
#include "inspector.h"
#include "inspectorBase.h"
#include "ui_inspector_line.h"
2013-05-02 16:12:17 +02:00
#include "ui_inspector_textline.h"
2012-09-17 15:37:31 +02:00
#include "ui_inspector_volta.h"
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-09-17 15:37:31 +02:00
//---------------------------------------------------------
// InspectorVolta
//---------------------------------------------------------
class InspectorVolta : public InspectorBase {
Q_OBJECT
Ui::InspectorElement e;
Ui::InspectorLine l;
Ui::InspectorTextLine tl;
Ui::InspectorVolta v;
2012-09-17 15:37:31 +02:00
public:
InspectorVolta(QWidget* parent);
};
2013-05-13 18:49:17 +02:00
} // namespace Ms
2012-09-17 15:37:31 +02:00
#endif