/* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** * Qwt Widget Library * Copyright (C) 1997 Josef Wilgen * Copyright (C) 2002 Uwe Rathmann * * This library is free software; you can redistribute it and/or * modify it under the terms of the Qwt License, Version 1.0 *****************************************************************************/ #if defined(_MSC_VER) /* MSVC Compiler */ #pragma warning ( disable : 4786 ) #endif #include #include #include #include #include #include #include #include #include "qwt_designer_plugin.h" #ifndef NO_QWT_PLOT #include "qwt_designer_plotdialog.h" #include "qwt_plot.h" #include "qwt_plot_canvas.h" #include "qwt_scale_widget.h" #endif #ifndef NO_QWT_WIDGETS #include "qwt_counter.h" #include "qwt_wheel.h" #include "qwt_thermo.h" #include "qwt_knob.h" #include "qwt_slider.h" #include "qwt_dial.h" #include "qwt_dial_needle.h" #include "qwt_analog_clock.h" #include "qwt_compass.h" #endif #include "qwt_text_label.h" using namespace QwtDesignerPlugin; CustomWidgetInterface::CustomWidgetInterface( QObject *parent ): QObject( parent ), d_isInitialized( false ) { } bool CustomWidgetInterface::isContainer() const { return false; } bool CustomWidgetInterface::isInitialized() const { return d_isInitialized; } QIcon CustomWidgetInterface::icon() const { return d_icon; } QString CustomWidgetInterface::codeTemplate() const { return d_codeTemplate; } QString CustomWidgetInterface::domXml() const { return d_domXml; } QString CustomWidgetInterface::group() const { return "Qwt Widgets"; } QString CustomWidgetInterface::includeFile() const { return d_include; } QString CustomWidgetInterface::name() const { return d_name; } QString CustomWidgetInterface::toolTip() const { return d_toolTip; } QString CustomWidgetInterface::whatsThis() const { return d_whatsThis; } void CustomWidgetInterface::initialize( QDesignerFormEditorInterface *formEditor ) { if ( d_isInitialized ) return; QExtensionManager *manager = formEditor->extensionManager(); if ( manager ) { manager->registerExtensions( new TaskMenuFactory( manager ), Q_TYPEID( QDesignerTaskMenuExtension ) ); } d_isInitialized = true; } #ifndef NO_QWT_PLOT PlotInterface::PlotInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtPlot"; d_include = "qwt_plot.h"; d_icon = QPixmap( ":/pixmaps/qwtplot.png" ); d_domXml = "\n" " \n" " \n" " 0\n" " 0\n" " 400\n" " 200\n" " \n" " \n" "\n"; } QWidget *PlotInterface::createWidget( QWidget *parent ) { return new QwtPlot( parent ); } PlotCanvasInterface::PlotCanvasInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtPlotCanvas"; d_include = "qwt_plot_canvas.h"; d_icon = QPixmap( ":/pixmaps/qwtplot.png" ); d_domXml = "\n" " \n" " \n" " 0\n" " 0\n" " 400\n" " 200\n" " \n" " \n" "\n"; } QWidget *PlotCanvasInterface::createWidget( QWidget *parent ) { return new QwtPlotCanvas( qobject_cast( parent ) ); } #endif #ifndef NO_QWT_WIDGETS AnalogClockInterface::AnalogClockInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtAnalogClock"; d_include = "qwt_analog_clock.h"; d_icon = QPixmap( ":/pixmaps/qwtanalogclock.png" ); d_domXml = "\n" " \n" " \n" " 0\n" " 0\n" " 200\n" " 200\n" " \n" " \n" " \n" " 4\n" " \n" "\n"; } QWidget *AnalogClockInterface::createWidget( QWidget *parent ) { return new QwtAnalogClock( parent ); } #endif #ifndef NO_QWT_WIDGETS CompassInterface::CompassInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtCompass"; d_include = "qwt_compass.h"; d_icon = QPixmap( ":/pixmaps/qwtcompass.png" ); d_domXml = "\n" " \n" " \n" " 0\n" " 0\n" " 200\n" " 200\n" " \n" " \n" " \n" " 4\n" " \n" "\n"; } QWidget *CompassInterface::createWidget( QWidget *parent ) { QwtCompass *compass = new QwtCompass( parent ); compass->setNeedle( new QwtCompassMagnetNeedle( QwtCompassMagnetNeedle::TriangleStyle, compass->palette().color( QPalette::Mid ), compass->palette().color( QPalette::Dark ) ) ); return compass; } #endif #ifndef NO_QWT_WIDGETS CounterInterface::CounterInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtCounter"; d_include = "qwt_counter.h"; d_icon = QPixmap( ":/pixmaps/qwtcounter.png" ); d_domXml = "\n" "\n"; } QWidget *CounterInterface::createWidget( QWidget *parent ) { return new QwtCounter( parent ); } #endif #ifndef NO_QWT_WIDGETS DialInterface::DialInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtDial"; d_include = "qwt_dial.h"; d_icon = QPixmap( ":/pixmaps/qwtdial.png" ); d_domXml = "\n" " \n" " \n" " 0\n" " 0\n" " 200\n" " 200\n" " \n" " \n" " \n" " 4\n" " \n" "\n"; } QWidget *DialInterface::createWidget( QWidget *parent ) { QwtDial *dial = new QwtDial( parent ); dial->setNeedle( new QwtDialSimpleNeedle( QwtDialSimpleNeedle::Arrow, true, dial->palette().color( QPalette::Dark ), dial->palette().color( QPalette::Mid ) ) ); return dial; } #endif #ifndef NO_QWT_WIDGETS KnobInterface::KnobInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtKnob"; d_include = "qwt_knob.h"; d_icon = QPixmap( ":/pixmaps/qwtknob.png" ); d_domXml = "\n" " \n" " \n" " 0\n" " 0\n" " 150\n" " 150\n" " \n" " \n" "\n"; } QWidget *KnobInterface::createWidget( QWidget *parent ) { return new QwtKnob( parent ); } #endif #ifndef NO_QWT_PLOT ScaleWidgetInterface::ScaleWidgetInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtScaleWidget"; d_include = "qwt_scale_widget.h"; d_icon = QPixmap( ":/pixmaps/qwtscale.png" ); d_domXml = "\n" " \n" " \n" " 0\n" " 0\n" " 60\n" " 250\n" " \n" " \n" "\n"; } QWidget *ScaleWidgetInterface::createWidget( QWidget *parent ) { return new QwtScaleWidget( QwtScaleDraw::LeftScale, parent ); } #endif #ifndef NO_QWT_WIDGETS SliderInterface::SliderInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtSlider"; d_include = "qwt_slider.h"; d_icon = QPixmap( ":/pixmaps/qwtslider.png" ); d_domXml = "\n" " \n" " \n" " 0\n" " 0\n" " 60\n" " 250\n" " \n" " \n" "\n"; } QWidget *SliderInterface::createWidget( QWidget *parent ) { return new QwtSlider( parent ); } #endif TextLabelInterface::TextLabelInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtTextLabel"; d_include = "qwt_text_label.h"; d_icon = QPixmap( ":/pixmaps/qwtwidget.png" ); d_domXml = "\n" " \n" " \n" " 0\n" " 0\n" " 100\n" " 20\n" " \n" " \n" "\n"; } QWidget *TextLabelInterface::createWidget( QWidget *parent ) { return new QwtTextLabel( QwtText( "Label" ), parent ); } #ifndef NO_QWT_WIDGETS ThermoInterface::ThermoInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtThermo"; d_include = "qwt_thermo.h"; d_icon = QPixmap( ":/pixmaps/qwtthermo.png" ); d_domXml = "\n" " \n" " \n" " 0\n" " 0\n" " 60\n" " 250\n" " \n" " \n" "\n"; } QWidget *ThermoInterface::createWidget( QWidget *parent ) { return new QwtThermo( parent ); } #endif #ifndef NO_QWT_WIDGETS WheelInterface::WheelInterface( QObject *parent ): CustomWidgetInterface( parent ) { d_name = "QwtWheel"; d_include = "qwt_wheel.h"; d_icon = QPixmap( ":/pixmaps/qwtwheel.png" ); d_domXml = "\n" "\n"; } QWidget *WheelInterface::createWidget( QWidget *parent ) { return new QwtWheel( parent ); } #endif CustomWidgetCollectionInterface::CustomWidgetCollectionInterface( QObject *parent ): QObject( parent ) { #ifndef NO_QWT_PLOT d_plugins.append( new PlotInterface( this ) ); #if 0 // better not: the designer crashes TODO .. d_plugins.append( new PlotCanvasInterface( this ) ); #endif d_plugins.append( new ScaleWidgetInterface( this ) ); #endif #ifndef NO_QWT_WIDGETS d_plugins.append( new AnalogClockInterface( this ) ); d_plugins.append( new CompassInterface( this ) ); d_plugins.append( new CounterInterface( this ) ); d_plugins.append( new DialInterface( this ) ); d_plugins.append( new KnobInterface( this ) ); d_plugins.append( new SliderInterface( this ) ); d_plugins.append( new ThermoInterface( this ) ); d_plugins.append( new WheelInterface( this ) ); #endif d_plugins.append( new TextLabelInterface( this ) ); } QList CustomWidgetCollectionInterface::customWidgets( void ) const { return d_plugins; } TaskMenuFactory::TaskMenuFactory( QExtensionManager *parent ): QExtensionFactory( parent ) { } QObject *TaskMenuFactory::createExtension( QObject *object, const QString &iid, QObject *parent ) const { if ( iid == Q_TYPEID( QDesignerTaskMenuExtension ) ) { #ifndef NO_QWT_PLOT if ( QwtPlot *plot = qobject_cast( object ) ) return new TaskMenuExtension( plot, parent ); #endif #ifndef NO_QWT_WIDGETS if ( QwtDial *dial = qobject_cast( object ) ) return new TaskMenuExtension( dial, parent ); #endif } return QExtensionFactory::createExtension( object, iid, parent ); } TaskMenuExtension::TaskMenuExtension( QWidget *widget, QObject *parent ): QObject( parent ), d_widget( widget ) { d_editAction = new QAction( tr( "Edit Qwt Attributes ..." ), this ); connect( d_editAction, SIGNAL( triggered() ), this, SLOT( editProperties() ) ); } QList TaskMenuExtension::taskActions() const { QList list; list.append( d_editAction ); return list; } QAction *TaskMenuExtension::preferredEditAction() const { return d_editAction; } void TaskMenuExtension::editProperties() { const QVariant v = d_widget->property( "propertiesDocument" ); if ( v.type() != QVariant::String ) return; #ifndef NO_QWT_PLOT QString properties = v.toString(); if ( qobject_cast( d_widget ) ) { PlotDialog dialog( properties ); connect( &dialog, SIGNAL( edited( const QString& ) ), SLOT( applyProperties( const QString & ) ) ); ( void )dialog.exec(); return; } #endif static QErrorMessage *errorMessage = NULL; if ( errorMessage == NULL ) errorMessage = new QErrorMessage(); errorMessage->showMessage( "Not implemented yet." ); } void TaskMenuExtension::applyProperties( const QString &properties ) { QDesignerFormWindowInterface *formWindow = QDesignerFormWindowInterface::findFormWindow( d_widget ); if ( formWindow && formWindow->cursor() ) formWindow->cursor()->setProperty( "propertiesDocument", properties ); } #if QT_VERSION < 0x050000 Q_EXPORT_PLUGIN2( QwtDesignerPlugin, CustomWidgetCollectionInterface ) #endif