/*========================================================================= 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 #include #include // CTK includes #include #include // STD includes #include #include //----------------------------------------------------------------------------- class ctkDummyHistogram: public ctkHistogram { public: ctkDummyHistogram(QObject* parent = 0):ctkHistogram(parent){} virtual ~ctkDummyHistogram(){} virtual ctkControlPoint* controlPoint(int index)const { Q_UNUSED(index); return 0; } virtual QVariant value(qreal pos)const { Q_UNUSED(pos); return 0.; } virtual int count()const { return 0; } virtual bool isDiscrete()const { return true; } virtual bool isEditable()const { return false; } virtual void range(qreal& minRange, qreal& maxRange)const { Q_UNUSED(minRange); Q_UNUSED(maxRange); minRange = 0.; maxRange = 0.; } virtual QVariant minValue()const { return 0; } virtual QVariant maxValue()const { return 0; } /// virtual int insertControlPoint(const ctkControlPoint& cp) { Q_UNUSED(cp); return -1; } virtual int insertControlPoint(qreal pos) { Q_UNUSED(pos); return -1; } virtual void removeControlPoint( qreal pos ) { Q_UNUSED(pos); } /// /// be careful with it, as changing the value might require /// more changes to ctkControlPoint. virtual void setControlPointPos(int index, qreal pos) { Q_UNUSED(pos); Q_UNUSED(index); } /// /// be careful with it, as changing the value might require /// more changes to ctkControlPoint. virtual void setControlPointValue(int index, const QVariant& value) { Q_UNUSED(index); Q_UNUSED(value); } virtual void build() { } protected: }; int ctkHistogramTest1(int argc, char * argv [] ) { Q_UNUSED(argc); Q_UNUSED(argv); ctkDummyHistogram dummyHistogram; if (!dummyHistogram.isDiscrete()) { std::cerr << "Line : " << __LINE__ << " - Problem with ctkHistogram::isDiscrete" <