/*========================================================================= Library: CTK Copyright (c) Kitware Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.commontk.org/LICENSE Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =========================================================================*/ // Qt includes // CTK includes #include "ctkLogger.h" #include "ctkVTKScalarsToColorsView.h" #include "ctkVTKScalarsToColorsWidget.h" #include "ui_ctkVTKScalarsToColorsWidget.h" // VTK includes #include #include #include #include #include #include #include #include #include #include //---------------------------------------------------------------------------- static ctkLogger logger("org.commontk.visualization.vtk.widgets.ctkVTKScalarsToColorsWidget"); //---------------------------------------------------------------------------- class ctkVTKScalarsToColorsWidgetPrivate: public Ui_ctkVTKScalarsToColorsWidget { public: ctkVTKScalarsToColorsWidgetPrivate(); void setupUi(QWidget* widget); }; // ---------------------------------------------------------------------------- // ctkVTKScalarsToColorsWidgetPrivate methods // ---------------------------------------------------------------------------- ctkVTKScalarsToColorsWidgetPrivate::ctkVTKScalarsToColorsWidgetPrivate() { } // ---------------------------------------------------------------------------- void ctkVTKScalarsToColorsWidgetPrivate::setupUi(QWidget* widget) { this->Ui_ctkVTKScalarsToColorsWidget::setupUi(widget); this->PSpinBox->setValue(0.4); this->VSpinBox->setValue(0.87); } // ---------------------------------------------------------------------------- // ctkVTKScalarsToColorsWidget methods // ---------------------------------------------------------------------------- ctkVTKScalarsToColorsWidget::ctkVTKScalarsToColorsWidget(QWidget* parentWidget) :QWidget(parentWidget) , d_ptr(new ctkVTKScalarsToColorsWidgetPrivate) { Q_D(ctkVTKScalarsToColorsWidget); d->setupUi(this); } // ---------------------------------------------------------------------------- ctkVTKScalarsToColorsWidget::~ctkVTKScalarsToColorsWidget() { } // ---------------------------------------------------------------------------- ctkVTKScalarsToColorsView* ctkVTKScalarsToColorsWidget::view()const { Q_D(const ctkVTKScalarsToColorsWidget); return d->View; }