123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /*=============================================================================
- Library: XNAT/Core
- Copyright (c) University College London,
- Centre for Medical Image Computing
- 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
- 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.
- =============================================================================*/
- #include "ctkXnatTreeItem_p.h"
- #include "ctkXnatObject.h"
- //----------------------------------------------------------------------------
- ctkXnatTreeItem::ctkXnatTreeItem()
- : m_XnatObject(0)
- , m_ParentItem(0)
- {
- }
- //----------------------------------------------------------------------------
- ctkXnatTreeItem::ctkXnatTreeItem(ctkXnatObject* xnatObject, ctkXnatTreeItem* parentItem)
- : m_XnatObject(xnatObject)
- , m_ParentItem(parentItem)
- {
- }
- //----------------------------------------------------------------------------
- ctkXnatTreeItem::~ctkXnatTreeItem()
- {
- qDeleteAll(m_ChildItems);
- }
- //----------------------------------------------------------------------------
- ctkXnatObject* ctkXnatTreeItem::xnatObject() const
- {
- return m_XnatObject;
- }
- //----------------------------------------------------------------------------
- void ctkXnatTreeItem::appendChild(ctkXnatTreeItem* item)
- {
- m_ChildItems.append(item);
- item->m_ParentItem = this;
- }
- //----------------------------------------------------------------------------
- void ctkXnatTreeItem::removeChildren()
- {
- qDeleteAll(m_ChildItems);
- }
- //----------------------------------------------------------------------------
- ctkXnatTreeItem* ctkXnatTreeItem::child(int row)
- {
- return m_ChildItems.value(row);
- }
- //----------------------------------------------------------------------------
- int ctkXnatTreeItem::childCount() const
- {
- return m_ChildItems.count();
- }
- //----------------------------------------------------------------------------
- int ctkXnatTreeItem::row() const
- {
- return m_ParentItem->m_ChildItems.indexOf(const_cast<ctkXnatTreeItem*>(this));
- }
- //----------------------------------------------------------------------------
- int ctkXnatTreeItem::columnCount() const
- {
- return 1;
- }
- //----------------------------------------------------------------------------
- QVariant ctkXnatTreeItem::data(int column) const
- {
- Q_UNUSED(column);
- return m_XnatObject->name();
- }
- //----------------------------------------------------------------------------
- ctkXnatTreeItem* ctkXnatTreeItem::parent()
- {
- return m_ParentItem;
- }
- //----------------------------------------------------------------------------
- void ctkXnatTreeItem::remove(const ctkXnatObject* xnatObject)
- {
- QList<ctkXnatTreeItem*>::iterator it = m_ChildItems.begin();
- QList<ctkXnatTreeItem*>::iterator itEnd = m_ChildItems.end();
- while (it != itEnd && (*it)->xnatObject() != xnatObject)
- {
- ++it;
- }
- if (it != itEnd)
- {
- m_ChildItems.erase(it);
- }
- }
|