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__
|
|
|
|
|
2013-06-28 19:41:54 +02:00
|
|
|
#include "inspector.h"
|
2013-03-07 20:01:22 +01:00
|
|
|
#include "inspectorBase.h"
|
2013-08-08 11:38:32 +02:00
|
|
|
#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
|
|
|
|
|
2013-03-07 20:01:22 +01:00
|
|
|
Ui::InspectorElement e;
|
2013-08-08 11:38:32 +02:00
|
|
|
Ui::InspectorLine l;
|
|
|
|
Ui::InspectorTextLine tl;
|
2013-03-07 20:01:22 +01:00
|
|
|
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
|
|
|
|
|