MuseScore/awl/awlplugin.cpp
2020-05-28 09:50:45 +02:00

113 lines
2.9 KiB
C++

//=============================================================================
// Awl
// Audio Widget Library
//
// Copyright (C) 2002-2009 by 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.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================
#include "volknob.h"
#include "awlplugin.h"
#include "panknob.h"
#include "midipanknob.h"
#include "colorlabel.h"
#include "volslider.h"
#include "mslider.h"
#include "denomspinbox.h"
#include "pitchedit.h"
#include "pitchlabel.h"
#include <QtCore/QtPlugin>
QWidget* KnobPlugin::createWidget(QWidget* parent)
{
return new Awl::Knob(parent);
}
QWidget* VolKnobPlugin::createWidget(QWidget* parent)
{
return new Awl::VolKnob(parent);
}
QWidget* PanKnobPlugin::createWidget(QWidget* parent)
{
return new Awl::PanKnob(parent);
}
QWidget* MidiPanKnobPlugin::createWidget(QWidget* parent)
{
return new Awl::MidiPanKnob(parent);
}
QWidget* ColorLabelPlugin::createWidget(QWidget* parent)
{
QWidget* w = new Awl::ColorLabel(parent);
w->setGeometry(0, 0, 50, 50);
return w;
}
QWidget* SliderPlugin::createWidget(QWidget* parent)
{
return new Awl::Slider(parent);
}
QWidget* VolSliderPlugin::createWidget(QWidget* parent)
{
return new Awl::VolSlider(parent);
}
QWidget* MeterSliderPlugin::createWidget(QWidget* parent)
{
return new Awl::MeterSlider(parent);
}
QWidget* DenominatorSpinBoxPlugin::createWidget(QWidget* parent)
{
return new Awl::DenominatorSpinBox(parent);
}
QWidget* PitchLabelPlugin::createWidget(QWidget* parent)
{
return new Awl::PitchLabel(parent);
}
QWidget* PitchEditPlugin::createWidget(QWidget* parent)
{
return new Awl::PitchEdit(parent);
}
//---------------------------------------------------------
// customWidgets
//---------------------------------------------------------
QList<QDesignerCustomWidgetInterface*> AwlPlugins::customWidgets() const
{
QList<QDesignerCustomWidgetInterface*> plugins;
plugins
<< new VolKnobPlugin
<< new PanKnobPlugin
<< new MidiPanKnobPlugin
<< new KnobPlugin
<< new SliderPlugin
<< new VolSliderPlugin
<< new MeterSliderPlugin
<< new ColorLabelPlugin
<< new DenominatorSpinBoxPlugin
<< new PitchLabelPlugin
<< new PitchEditPlugin
;
return plugins;
}
// Q_EXPORT_PLUGIN(AwlPlugins)