123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- /*=========================================================================
- 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 <QApplication>
- #include <QComboBox>
- #include <QCompleter>
- #include <QDebug>
- #include <QIcon>
- #include <QLineEdit>
- #include <QListWidget>
- #include <QMenu>
- #include <QTimer>
- #include <QToolBar>
- #include <QVBoxLayout>
- // CTK includes
- #include "ctkMenuComboBox.h"
- // STD includes
- #include <iostream>
- //-----------------------------------------------------------------------------
- int ctkMenuComboBoxTest2(int argc, char * argv [] )
- {
- QApplication app(argc, argv);
- ctkMenuComboBox* menu = new ctkMenuComboBox();
- /// ------ Test setMenu ------
- menu->setMenu(new QMenu(0));
- if(!menu->menu()->isEmpty())
- {
- qDebug() << "Line : " << __LINE__
- << "ctkMenuComboBox::setMenu failed";
- return EXIT_FAILURE;
- }
- QMenu* file = new QMenu("File");
- file->addAction("first");
- menu->setMenu(file);
- QList<QCompleter* > completer = menu->findChildren<QCompleter *>();
- if(menu->menu()->isEmpty()
- && completer[0]->model()->rowCount() != 1)
- {
- qDebug() << "Line : " << __LINE__
- << "ctkMenuComboBox::setMenu failed";
- return EXIT_FAILURE;
- }
- /// ------- Test delete Menu -----
- //delete menu->menu();
- //file = new QMenu("File");
- //menu->show();
- //return app.exec();
- /// ------- Test addAction -------
- menu->setMenu(file);
- QMenu* informatics = new QMenu("Informatics");
- QAction* titi = informatics->addAction("titi");
- file->addMenu(informatics);
- if(menu->menu()->isEmpty()
- && completer[0]->model()->rowCount() != 2)
- {
- qDebug() << "Line : " << __LINE__
- << "ctkMenuComboBox::addAction failed";
- return EXIT_FAILURE;
- }
- /// ------- Test removeAction -------
- informatics->removeAction(titi);
- if(completer[0]->model()->rowCount() != 1)
- {
- qDebug() << "Line : " << __LINE__
- << "ctkMenuComboBox::removeAction failed";
- return EXIT_FAILURE;
- }
- /// ------- Test add 2 same actions -> only 1 add on the completer --------
- informatics->addAction(titi);
- file->addAction(titi);
- if (completer[0]->model()->rowCount() != 2)
- {
- qDebug() << "Line : " << __LINE__
- << "ctkMenuComboBox::addAction failed";
- return EXIT_FAILURE;
- }
- /// ------- Test remove one of the two --------
- informatics->removeAction(titi);
- //file->removeAction(first);
- if (completer[0]->model()->rowCount() != 2)
- {
- qDebug() << "Line : " << __LINE__
- << "ctkMenuComboBox::addAction failed"
- << completer[0]->model()->rowCount();
- return EXIT_FAILURE;
- }
- /// ------- Test remove the second one -------
- file->removeAction(titi);
- if (completer[0]->model()->rowCount() != 1)
- {
- qDebug() << "Line : " << __LINE__
- << "ctkMenuComboBox::addAction failed"
- << completer[0]->model()->rowCount();
- return EXIT_FAILURE;
- }
- menu->show();
- if (argc < 2 || QString(argv[1]) != "-I" )
- {
- QTimer::singleShot(200, &app, SLOT(quit()));
- }
- return app.exec();
- }
|