| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010-2012 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | /*
 | 
|---|
| 9 |  * ElementsQtQuery.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: Oct 25, 2010
 | 
|---|
| 12 |  *      Author: heber
 | 
|---|
| 13 |  */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // include config.h
 | 
|---|
| 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 17 | #include <config.h>
 | 
|---|
| 18 | #endif
 | 
|---|
| 19 | 
 | 
|---|
| 20 | #include <Qt/qpushbutton.h>
 | 
|---|
| 21 | #include <Qt/qboxlayout.h>
 | 
|---|
| 22 | #include <Qt/qlistwidget.h>
 | 
|---|
| 23 | 
 | 
|---|
| 24 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| 25 | 
 | 
|---|
| 26 | 
 | 
|---|
| 27 | #include "UIElements/Qt4/Query/QtQuery.hpp"
 | 
|---|
| 28 | #include "UIElements/Qt4/Query/QtQueryList.hpp"
 | 
|---|
| 29 | 
 | 
|---|
| 30 | 
 | 
|---|
| 31 | QtDialog::ElementsQtQuery::ElementsQtQuery(Parameter<std::vector<const element *> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) :
 | 
|---|
| 32 |     Dialog::ElementsQuery(_param, _title),
 | 
|---|
| 33 |     QtQueryList<const element *>(_parent, _dialog, temp)
 | 
|---|
| 34 | {
 | 
|---|
| 35 |   ListQuerySubDialog *subDialog = new ListQuerySubDialog(this);
 | 
|---|
| 36 |   subQuery = new ElementQtQuery(*subParam, _title, thisVLayout, subDialog);
 | 
|---|
| 37 |   subDialog->setSubQuery(subQuery);
 | 
|---|
| 38 | 
 | 
|---|
| 39 |   connect(inputList,SIGNAL(itemSelectionChanged()),this,SLOT(onElementSelected()));
 | 
|---|
| 40 |   connect(addButton,SIGNAL(clicked()),this,SLOT(onAddElement()));
 | 
|---|
| 41 |   connect(removeButton,SIGNAL(clicked()),this,SLOT(onRemoveElement()));
 | 
|---|
| 42 | }
 | 
|---|
| 43 | 
 | 
|---|
| 44 | QtDialog::ElementsQtQuery::~ElementsQtQuery()
 | 
|---|
| 45 | {
 | 
|---|
| 46 |   delete(subQuery);
 | 
|---|
| 47 | }
 | 
|---|
| 48 | 
 | 
|---|
| 49 | void QtDialog::ElementsQtQuery::onSubUpdate()
 | 
|---|
| 50 | {
 | 
|---|
| 51 |   addButton->setEnabled(subParam->isSet());
 | 
|---|
| 52 | }
 | 
|---|
| 53 | 
 | 
|---|
| 54 | void QtDialog::ElementsQtQuery::onElementSelected() {
 | 
|---|
| 55 |   elementSelected();
 | 
|---|
| 56 | }
 | 
|---|
| 57 | 
 | 
|---|
| 58 | void QtDialog::ElementsQtQuery::onAddElement() {
 | 
|---|
| 59 |   addElement();
 | 
|---|
| 60 | }
 | 
|---|
| 61 | 
 | 
|---|
| 62 | void QtDialog::ElementsQtQuery::onRemoveElement() {
 | 
|---|
| 63 |   removeElements();
 | 
|---|
| 64 | }
 | 
|---|
| 65 | 
 | 
|---|
| 66 | bool QtDialog::ElementsQtQuery::handle()
 | 
|---|
| 67 | {
 | 
|---|
| 68 |   if (param.isValid(temp)){
 | 
|---|
| 69 |     param.set(temp);
 | 
|---|
| 70 |     return true;
 | 
|---|
| 71 |   }
 | 
|---|
| 72 |   return false;
 | 
|---|
| 73 | }
 | 
|---|
| 74 | 
 | 
|---|
| 75 | 
 | 
|---|