| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 | 
							- /*=========================================================================
 
-   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 <vtkAxis.h>
 
- #include <vtkChartXY.h>
 
- #include <vtkColorTransferFunction.h>
 
- #include <vtkColorTransferFunctionItem.h>
 
- #include <vtkCompositeTransferFunctionItem.h>
 
- #include <vtkLookupTable.h>
 
- #include <vtkLookupTableItem.h>
 
- #include <vtkPiecewiseControlPointsItem.h>
 
- #include <vtkPiecewiseFunction.h>
 
- #include <vtkPiecewiseFunctionItem.h>
 
- //----------------------------------------------------------------------------
 
- 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;
 
- }
 
 
  |