123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /*=========================================================================
- Library: CTK
-
- Copyright (c) 2010 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
- #include <QColor>
- #include <QDebug>
- #include <QLinearGradient>
- #include <QGraphicsSceneMouseEvent>
- #include <QPainter>
- #include <QtGlobal>
- #include <QVariant>
- /// CTK includes
- #include "ctkTransferFunction.h"
- #include "ctkTransferFunctionGradientItem.h"
- #include "ctkTransferFunctionRepresentation.h"
- #include "ctkTransferFunctionScene.h"
- //-----------------------------------------------------------------------------
- class ctkTransferFunctionGradientItemPrivate:public ctkPrivate<ctkTransferFunctionGradientItem>
- {
- public:
- ctkTransferFunctionGradientItemPrivate();
- bool Mask;
- };
- //-----------------------------------------------------------------------------
- ctkTransferFunctionGradientItemPrivate::ctkTransferFunctionGradientItemPrivate()
- {
- this->Mask = true;
- }
- //-----------------------------------------------------------------------------
- ctkTransferFunctionGradientItem::ctkTransferFunctionGradientItem(QGraphicsItem* parentGraphicsItem)
- :ctkTransferFunctionItem(parentGraphicsItem)
- {
- CTK_INIT_PRIVATE(ctkTransferFunctionGradientItem);
- }
- //-----------------------------------------------------------------------------
- ctkTransferFunctionGradientItem::ctkTransferFunctionGradientItem(
- ctkTransferFunction* transferFunction, QGraphicsItem* parentItem)
- :ctkTransferFunctionItem(transferFunction, parentItem)
- {
- }
- //-----------------------------------------------------------------------------
- ctkTransferFunctionGradientItem::~ctkTransferFunctionGradientItem()
- {
- }
- //-----------------------------------------------------------------------------
- void ctkTransferFunctionGradientItem::paint(
- QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * widget)
- {
- Q_UNUSED(option);
- Q_UNUSED(widget);
- if (this->transferFunction()->count() <= 0)
- {
- return;
- }
- //ctkTransferFunctionScene* tfScene = dynamic_cast<ctkTransferFunctionScene*>(this->scene());
- //Q_ASSERT(tfScene);
- ctkTransferFunctionRepresentation* tfRep = this->transferFunction()->representation();
- const QGradient& gradient = tfRep->gradient();
- if ( this->mask() )
- {
- QPainterPath closedPath = tfRep->curve();
- QRectF position = this->rect();
- // link to last point
- closedPath.lineTo(position.x() + position.width(), position.y() + position.height());
- // link to first point
- closedPath.lineTo(position.x(), position.y() + position.height());
- //Don,t need to close because automatic
- QPen pen(QColor(255, 255, 255, 191), 1);
- pen.setCosmetic(true);
- painter->setPen(pen);
- painter->setBrush(gradient);
- painter->drawPath(closedPath);
- }
- else
- {
- painter->fillRect(this->rect(), gradient);
- }
- }
- //-----------------------------------------------------------------------------
- bool ctkTransferFunctionGradientItem::mask() const
- {
- CTK_D( const ctkTransferFunctionGradientItem );
- return d->Mask;
- }
- //-----------------------------------------------------------------------------
- void ctkTransferFunctionGradientItem::setMask( bool mask )
- {
- CTK_D( ctkTransferFunctionGradientItem );
- d->Mask = mask;
- }
|