123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498 |
- /*=========================================================================
- 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 <QDebug>
- #include <QGridLayout>
- #include <QHBoxLayout>
- #include <QLayout>
- #include <QSplitter>
- #include <QTabWidget>
- #include <QVBoxLayout>
- #include <QWidget>
- // CTK includes
- #include "ctkLayoutManager.h"
- #include "ctkLayoutManager_p.h"
- //-----------------------------------------------------------------------------
- ctkLayoutManagerPrivate::ctkLayoutManagerPrivate(ctkLayoutManager& object)
- :q_ptr(&object)
- {
- this->Viewport = 0;
- this->Spacing = 0;
- }
- //-----------------------------------------------------------------------------
- ctkLayoutManagerPrivate::~ctkLayoutManagerPrivate()
- {
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManagerPrivate::init()
- {
- //Q_Q(ctkLayoutManager);
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManagerPrivate::clearWidget(QWidget* widget, QLayout* parentLayout)
- {
- if (!this->LayoutWidgets.contains(widget))
- {
- widget->setVisible(false);
- if (parentLayout)
- {
- parentLayout->removeWidget(widget);
- }
- widget->setParent(this->Viewport);
- }
- else
- {
- if (widget->layout())
- {
- this->clearLayout(widget->layout());
- }
- else if (qobject_cast<QTabWidget*>(widget))
- {
- QTabWidget* tabWidget = qobject_cast<QTabWidget*>(widget);
- while (tabWidget->count())
- {
- QWidget* page = tabWidget->widget(0);
- this->clearWidget(page);
- }
- }
- else if (qobject_cast<QSplitter*>(widget))
- {
- QSplitter* splitterWidget = qobject_cast<QSplitter*>(widget);
- // Hide the splitter before removing pages. Removing pages
- // would resize the other children if the splitter is visible.
- // We don't want to resize the children as we are trying to clear the
- // layout, it would set intermediate sizes to widgets.
- // See QSplitter::childEvent
- splitterWidget->setVisible(false);
- while (splitterWidget->count())
- {
- QWidget* page = splitterWidget->widget(0);
- this->clearWidget(page);
- }
- }
- this->LayoutWidgets.remove(widget);
- if (parentLayout)
- {
- parentLayout->removeWidget(widget);
- }
- delete widget;
- }
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManagerPrivate::clearLayout(QLayout* layout)
- {
- if (!layout)
- {
- return;
- }
- layout->setEnabled(false);
- QLayoutItem * layoutItem = 0;
- while ((layoutItem = layout->itemAt(0)) != 0)
- {
- if (layoutItem->widget())
- {
- this->clearWidget(layoutItem->widget(), layout);
- }
- else if (layoutItem->layout())
- {
- /// Warning, this might delete the layouts of "custom" widgets, not just
- /// the layouts generated by ctkLayoutManager
- this->clearLayout(layoutItem->layout());
- layout->removeItem(layoutItem);
- delete layoutItem;
- }
- }
- if (layout->parentWidget() && layout->parentWidget()->layout() == layout)
- {
- delete layout;
- }
- }
- //-----------------------------------------------------------------------------
- // ctkLayoutManager
- //-----------------------------------------------------------------------------
- ctkLayoutManager::ctkLayoutManager(QObject* parentObject)
- : QObject(parentObject)
- , d_ptr(new ctkLayoutManagerPrivate(*this))
- {
- Q_D(ctkLayoutManager);
- d->init();
- }
- //-----------------------------------------------------------------------------
- ctkLayoutManager::ctkLayoutManager(QWidget* viewport, QObject* parentObject)
- : QObject(parentObject)
- , d_ptr(new ctkLayoutManagerPrivate(*this))
- {
- Q_D(ctkLayoutManager);
- d->init();
- this->setViewport(viewport);
- }
- //-----------------------------------------------------------------------------
- ctkLayoutManager::ctkLayoutManager(ctkLayoutManagerPrivate* ptr,
- QWidget* viewport, QObject* parentObject)
- : QObject(parentObject)
- , d_ptr(ptr)
- {
- Q_D(ctkLayoutManager);
- d->init();
- this->setViewport(viewport);
- }
- //-----------------------------------------------------------------------------
- ctkLayoutManager::~ctkLayoutManager()
- {
- }
- //-----------------------------------------------------------------------------
- int ctkLayoutManager::spacing()const
- {
- Q_D(const ctkLayoutManager);
- return d->Spacing;
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManager::setSpacing(int spacing)
- {
- Q_D(ctkLayoutManager);
- d->Spacing = spacing;
- this->refresh();
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManager::refresh()
- {
- Q_D(ctkLayoutManager);
- if (!d->Viewport)
- {
- return;
- }
- // TODO: post an event on the event queue
- bool updatesEnabled = d->Viewport->updatesEnabled();
- d->Viewport->setUpdatesEnabled(false);
- this->clearLayout();
- this->setupLayout();
- d->Viewport->setUpdatesEnabled(updatesEnabled);
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManager::clearLayout()
- {
- Q_D(ctkLayoutManager);
- if (!d->Viewport)
- {
- return;
- }
- // TODO: post an event on the event queue
- d->clearLayout(d->Viewport->layout());
- Q_ASSERT(d->LayoutWidgets.size() == 0);
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManager::setupLayout()
- {
- Q_D(ctkLayoutManager);
- if (!d->Viewport || d->Layout.isNull() ||
- d->Layout.documentElement().isNull())
- {
- return;
- }
- d->Views.clear();
- d->LayoutWidgets.clear();
- Q_ASSERT(!d->Viewport->layout());
- QLayoutItem* layoutItem = this->processElement(
- d->Layout.documentElement());
- Q_ASSERT(layoutItem);
- QLayout* layout = layoutItem->layout();
- if (!layout)
- {
- QHBoxLayout* hboxLayout = new QHBoxLayout(0);
- hboxLayout->setContentsMargins(0, 0, 0, 0);
- hboxLayout->addItem(layoutItem);
- layout = hboxLayout;
- }
- d->Viewport->setLayout(layout);
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManager::setViewport(QWidget* viewport)
- {
- Q_D(ctkLayoutManager);
- if (viewport == d->Viewport)
- {
- return;
- }
- this->clearLayout();
- foreach(QWidget* view, d->Views)
- {
- if (view->parent() == d->Viewport)
- {
- view->setParent(0);
- // reparenting looses the visibility attribute and we want them hidden
- view->setVisible(false);
- }
- }
- d->Viewport = viewport;
- this->onViewportChanged();
- }
- //-----------------------------------------------------------------------------
- QWidget* ctkLayoutManager::viewport()const
- {
- Q_D(const ctkLayoutManager);
- return d->Viewport;
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManager::onViewportChanged()
- {
- this->refresh();
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManager::setLayout(const QDomDocument& newLayout)
- {
- Q_D(ctkLayoutManager);
- if (newLayout == d->Layout)
- {
- return;
- }
- d->Layout = newLayout;
- this->refresh();
- }
- //-----------------------------------------------------------------------------
- const QDomDocument ctkLayoutManager::layout()const
- {
- Q_D(const ctkLayoutManager);
- return d->Layout;
- }
- //-----------------------------------------------------------------------------
- QLayoutItem* ctkLayoutManager::processElement(QDomElement element)
- {
- Q_ASSERT(!element.isNull());
- if (element.tagName() == "layout")
- {
- return this->processLayoutElement(element);
- }
- else if (element.tagName() == "view")
- {
- return this->widgetItemFromXML(element);
- }
- Q_ASSERT(element.tagName() != "layout" && element.tagName() != "view");
- return 0;
- }
- //-----------------------------------------------------------------------------
- QLayoutItem* ctkLayoutManager::processLayoutElement(QDomElement layoutElement)
- {
- Q_D(ctkLayoutManager);
- Q_ASSERT(layoutElement.tagName() == "layout");
- QLayoutItem* layoutItem = this->layoutFromXML(layoutElement);
- QLayout* layout = layoutItem->layout();
- QWidget* widget = layoutItem->widget();
- if (layout)
- {
- layout->setContentsMargins(0,0,0,0);
- layout->setSpacing(d->Spacing);
- }
- else if (widget)
- {
- // mark the widget as ctkLayoutManager own widget so that it can be
- // deleted when the layout is cleared.
- d->LayoutWidgets << widget;
- }
- for(QDomNode child = layoutElement.firstChild();
- !child.isNull();
- child = child.nextSibling())
- {
- // ignore children that are not QDomElement
- if (child.toElement().isNull())
- {
- continue;
- }
- this->processItemElement(child.toElement(), layoutItem);
- }
- return layoutItem;
- }
- //-----------------------------------------------------------------------------
- QLayoutItem* ctkLayoutManager::layoutFromXML(QDomElement layoutElement)
- {
- Q_ASSERT(layoutElement.tagName() == "layout");
- QString type = layoutElement.attribute("type", "horizontal");
- bool split = layoutElement.attribute("split", "false") == "true";
- if (type == "vertical")
- {
- if (split)
- {
- return new QWidgetItem(new QSplitter(Qt::Vertical));
- }
- return new QVBoxLayout();
- }
- else if (type == "horizontal")
- {
- if (split)
- {
- return new QWidgetItem(new QSplitter(Qt::Horizontal));
- }
- return new QHBoxLayout();
- }
- else if (type == "grid")
- {
- return new QGridLayout();
- }
- else if (type == "tab")
- {
- return new QWidgetItem(new QTabWidget());
- }
- return 0;
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManager::processItemElement(QDomElement itemElement, QLayoutItem* layoutItem)
- {
- Q_ASSERT(itemElement.tagName() == "item");
- Q_ASSERT(itemElement.childNodes().count() == 1);
- bool multiple = itemElement.attribute("multiple", "false") == "true";
- QList<QLayoutItem*> childrenItem;
- if (multiple)
- {
- childrenItem = this->widgetItemsFromXML(itemElement.firstChild().toElement());
- }
- else
- {
- childrenItem << this->processElement(itemElement.firstChild().toElement());
- }
- foreach(QLayoutItem* item, childrenItem)
- {
- this->addChildItemToLayout(itemElement, item, layoutItem);
- }
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManager::addChildItemToLayout(QDomElement itemElement, QLayoutItem* childItem, QLayoutItem* layoutItem)
- {
- Q_D(ctkLayoutManager);
- Q_ASSERT(childItem);
- QString itemName = itemElement.attribute("name");
- if (itemName.isEmpty() && childItem->widget())
- {
- itemName = childItem->widget()->windowTitle();
- }
- QLayout* layout = layoutItem->layout();
- QGridLayout* gridLayout = qobject_cast<QGridLayout*>(layout);
- QLayout* genericLayout = qobject_cast<QLayout*>(layout);
- QTabWidget* tabWidget = qobject_cast<QTabWidget*>(layoutItem->widget());
- QSplitter* splitter = qobject_cast<QSplitter*>(layoutItem->widget());
- if (gridLayout)
- {
- int row = itemElement.attribute("row", QString::number(0)).toInt();
- int col = itemElement.attribute("column", QString::number(0)).toInt();
- int rowSpan = itemElement.attribute("rowspan", QString::number(1)).toInt();
- int colSpan = itemElement.attribute("colspan", QString::number(1)).toInt();
- gridLayout->addItem(childItem, row, col, rowSpan, colSpan);
- }
- else if (genericLayout)
- {
- genericLayout->addItem(childItem);
- }
- else if (tabWidget || splitter)
- {
- QWidget* childWidget = childItem->widget();
- if (!childWidget)
- {
- childWidget = new QWidget();
- d->LayoutWidgets << childWidget;
- childWidget->setLayout(childItem->layout());
- }
- if (tabWidget)
- {
- tabWidget->addTab(childWidget, itemName);
- }
- else
- {
- splitter->addWidget(childWidget);
- }
- }
- }
- //-----------------------------------------------------------------------------
- QWidgetItem* ctkLayoutManager::widgetItemFromXML(QDomElement viewElement)
- {
- Q_ASSERT(viewElement.tagName() == "view");
- QWidget* view = this->viewFromXML(viewElement);
- this->setupView(viewElement, view);
- return new QWidgetItem(view);
- }
- //-----------------------------------------------------------------------------
- void ctkLayoutManager::setupView(QDomElement viewElement, QWidget* view)
- {
- Q_UNUSED(viewElement);
- Q_D(ctkLayoutManager);
- Q_ASSERT(view);
- view->setVisible(true);
- d->Views.insert(view);
- }
- //-----------------------------------------------------------------------------
- QList<QLayoutItem*> ctkLayoutManager::widgetItemsFromXML(QDomElement viewElement)
- {
- Q_ASSERT(viewElement.tagName() == "view");
- QList<QLayoutItem*> res;
- QList<QWidget*> views = this->viewsFromXML(viewElement);
- Q_ASSERT(views.count());
- foreach(QWidget* view, views)
- {
- this->setupView(viewElement, view);
- res << new QWidgetItem(view);
- }
- return res;
- }
- //-----------------------------------------------------------------------------
- QWidget* ctkLayoutManager::viewFromXML(QDomElement viewElement)
- {
- Q_UNUSED(viewElement);
- // default, for testing purpose. Must be reimplemented
- return new QWidget(0);
- }
- //-----------------------------------------------------------------------------
- QList<QWidget*> ctkLayoutManager::viewsFromXML(QDomElement viewElement)
- {
- QList<QWidget*> res;
- res << this->viewFromXML(viewElement);
- return res;
- }
|