/* * Copyright 2004 Sandia Corporation. * Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive * license for use of this work by or on behalf of the * U.S. Government. Redistribution and use in source and binary forms, with * or without modification, are permitted provided that this Notice and any * statement of authorship are reproduced on all copies. */ /*======================================================================== For general information about using VTK and Qt, see: http://www.trolltech.com/products/3rdparty/vtksupport.html =========================================================================*/ /*======================================================================== !!! WARNING for those who want to contribute code to this file. !!! If you use a commercial edition of Qt, you can modify this code. !!! If you use an open source version of Qt, you are free to modify !!! and use this code within the guidelines of the GPL license. !!! Unfortunately, you cannot contribute the changes back into this !!! file. Doing so creates a conflict between the GPL and BSD-like VTK !!! license. =========================================================================*/ // Disable warnings that Qt headers give. #ifdef _MSC_VER #pragma warning(disable:4127) #pragma warning(disable:4512) #endif #if !defined(_DEBUG) # if !defined(QT_NO_DEBUG) # define QT_NO_DEBUG # endif #endif #include "Q4VTKWidgetPlugin.h" #include "QVTKWidget.xpm" // macro for debug printing #ifndef qDebug #define qDebug(a) //#define qDebug(a) printf(a) #endif QVTKWidgetPlugin::QVTKWidgetPlugin() { qDebug("QVTKWidgetPlugin instantiated\n"); } QVTKWidgetPlugin::~QVTKWidgetPlugin() { qDebug("QVTKWidgetPlugin destructed\n"); } //! return the name of this widget QString QVTKWidgetPlugin::name() const { qDebug("QVTKWidgetPlugin::name\n"); return "QVTKWidget"; } QString QVTKWidgetPlugin::domXml() const { return QLatin1String("\n" " \n" " \n" " 0\n" " 0\n" " 100\n" " 100\n" " \n" " \n" "\n"); } QWidget* QVTKWidgetPlugin::createWidget(QWidget* parent) { qDebug("QVTKWidgetPlugin::createWidget\n"); QVTKWidget* widget = new QVTKWidget(parent); // make black background QPalette p = widget->palette(); p.setColor(QPalette::Background, QColor("black")); widget->setPalette(p); widget->setAutoFillBackground(true); // return the widget return widget; } QString QVTKWidgetPlugin::group() const { qDebug("QVTKWidgetPlugin::group\n"); return "QVTK"; } QIcon QVTKWidgetPlugin::icon() const { qDebug("QVTKWidgetPlugin::icon\n"); return QIcon( QPixmap( QVTKWidget_image ) ); } //! the name of the include file for building an app with a widget QString QVTKWidgetPlugin::includeFile() const { qDebug("QVTKWidgetPlugin::includeFile\n"); return "QVTKWidget.h"; } //! tool tip text QString QVTKWidgetPlugin::toolTip() const { qDebug("QVTKWidgetPlugin::toolTip\n"); return "Qt VTK Widget"; } //! what's this text QString QVTKWidgetPlugin::whatsThis() const { qDebug("QVTKWidgetPlugin::whatsThis\n"); return "A Qt/VTK Graphics Window"; } //! returns whether widget is a container bool QVTKWidgetPlugin::isContainer() const { qDebug("QVTKWidgetPlugin::isContainer\n"); return false; } QVTKPlugin::QVTKPlugin() { mQVTKWidgetPlugin = new QVTKWidgetPlugin; } QVTKPlugin::~QVTKPlugin() { delete mQVTKWidgetPlugin; } QList QVTKPlugin::customWidgets() const { QList plugins; plugins.append(mQVTKWidgetPlugin); return plugins; } #if QT_VERSION < 0x050000 Q_EXPORT_PLUGIN(QVTKPlugin) #endif