123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /*=========================================================================
- 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 <QAbstractItemModel>
- #include <QApplication>
- #include <QList>
- #include <QModelIndex>
- #include <QTreeWidget>
- // CTK includes
- #include "ctkModelTester.h"
- // STL includes
- #include <stdlib.h>
- #include <iostream>
- //-----------------------------------------------------------------------------
- class QAbstractItemModelHelper : public QAbstractItemModel
- {
- public:
- virtual QModelIndex index(int, int, const QModelIndex&) const { return QModelIndex(); }
- virtual QModelIndex parent(const QModelIndex&) const { return QModelIndex(); }
- virtual int rowCount(const QModelIndex&) const { return 0; }
- virtual int columnCount(const QModelIndex&) const { return 0; }
- virtual QVariant data(const QModelIndex&, int) const { return QVariant(); }
- };
- //-----------------------------------------------------------------------------
- int ctkModelTesterTest1(int argc, char * argv [] )
- {
- QApplication app(argc, argv);
- QAbstractItemModelHelper * item = new QAbstractItemModelHelper;
- QObject * object = new QObject;
- ctkModelTester ctkTester( item, object );
- delete item;
- try
- {
- // as we can infer that QTreeWidget is correct, ctkModelTester shall not fail
- // for any of the actions on QTreeWidget.
- QTreeWidget treeWidget(0);
- ctkModelTester treeModelTester(treeWidget.model());
- treeWidget.setColumnCount(1);
- QList<QTreeWidgetItem *> items;
- for (int i = 0; i < 10; ++i)
- {
- items.append(new QTreeWidgetItem((QTreeWidget*)0, QStringList(QString("item: %1").arg(i))));
- }
- treeWidget.addTopLevelItems(items);
- treeWidget.takeTopLevelItem(0);
- treeWidget.takeTopLevelItem(treeWidget.topLevelItemCount() / 2 );
- treeWidget.takeTopLevelItem(treeWidget.topLevelItemCount() - 1);
- treeWidget.insertTopLevelItem(0, new QTreeWidgetItem(&treeWidget, QStringList("new item 0")));
- treeWidget.insertTopLevelItem(treeWidget.topLevelItemCount() / 2,
- new QTreeWidgetItem((QTreeWidget*)0, QStringList("new item 1")));
- treeWidget.insertTopLevelItem(treeWidget.topLevelItemCount(),
- new QTreeWidgetItem((QTreeWidget*)0, QStringList("new item 2")));
- new QTreeWidgetItem(treeWidget.topLevelItem(0), QStringList("new item 3"));
- QAbstractItemModel* model = treeWidget.model();
- model->setData(model->index(0,0),QString("foo"));
- treeWidget.sortItems(0, Qt::DescendingOrder);
- }
- catch (const char* error)
- {
- std::cerr << error << std::endl;
- return EXIT_FAILURE;
- }
- return EXIT_SUCCESS;
- }
|