/*========================================================================= 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.apache.org/licenses/LICENSE-2.0.txt 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 #include #include // CTK includes #include "ctkWorkflowTabWidget.h" #include "ctkWorkflowButtonBoxWidget.h" // STD includes #include //----------------------------------------------------------------------------- class ctkWorkflowTabWidgetPrivate { public: ctkWorkflowTabWidgetPrivate(); QTabWidget* ClientArea; }; // -------------------------------------------------------------------------- // ctkWorkflowTabWidgetPrivate methods //--------------------------------------------------------------------------- ctkWorkflowTabWidgetPrivate::ctkWorkflowTabWidgetPrivate() { } // -------------------------------------------------------------------------- // ctkWorkflowTabWidget methods // -------------------------------------------------------------------------- ctkWorkflowTabWidget::ctkWorkflowTabWidget(QWidget* newParent) : Superclass(newParent) , d_ptr(new ctkWorkflowTabWidgetPrivate) { Q_D(ctkWorkflowTabWidget); d->ClientArea = 0; } // -------------------------------------------------------------------------- ctkWorkflowTabWidget::~ctkWorkflowTabWidget() { } // -------------------------------------------------------------------------- QWidget* ctkWorkflowTabWidget::clientArea() { Q_D(ctkWorkflowTabWidget); return d->ClientArea; } // -------------------------------------------------------------------------- void ctkWorkflowTabWidget::initClientArea() { Q_D(ctkWorkflowTabWidget); if (!d->ClientArea) { d->ClientArea = new QTabWidget(this); } } // -------------------------------------------------------------------------- void ctkWorkflowTabWidget::createNewPage(QWidget* widget) { Q_D(ctkWorkflowTabWidget); Q_ASSERT(d->ClientArea); if (widget) { d->ClientArea->addTab(widget, ""); } } // -------------------------------------------------------------------------- void ctkWorkflowTabWidget::showPage(QWidget* widget, const QString& label) { Q_D(ctkWorkflowTabWidget); Q_ASSERT(d->ClientArea); if (widget) { d->ClientArea->setCurrentWidget(widget); int index = d->ClientArea->indexOf(widget); d->ClientArea->setTabText(index, label); } }