[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[94d5ac6] | 5 | *
|
---|
| 6 | *
|
---|
| 7 | * This file is part of MoleCuilder.
|
---|
| 8 | *
|
---|
| 9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
| 10 | * it under the terms of the GNU General Public License as published by
|
---|
| 11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
| 12 | * (at your option) any later version.
|
---|
| 13 | *
|
---|
| 14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 17 | * GNU General Public License for more details.
|
---|
| 18 | *
|
---|
| 19 | * You should have received a copy of the GNU General Public License
|
---|
| 20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
[bcf653] | 21 | */
|
---|
| 22 |
|
---|
[b47bfc] | 23 | /*
|
---|
[3c53fa] | 24 | * QtInfoBox.cpp
|
---|
[b47bfc] | 25 | *
|
---|
| 26 | * Created on: Mar 4, 2010
|
---|
| 27 | * Author: crueger
|
---|
| 28 | */
|
---|
| 29 |
|
---|
[bf3817] | 30 | // include config.h
|
---|
| 31 | #ifdef HAVE_CONFIG_H
|
---|
| 32 | #include <config.h>
|
---|
| 33 | #endif
|
---|
[bbbad5] | 34 |
|
---|
[3c53fa] | 35 | #include "Views/Qt4/QtInfoBox.hpp"
|
---|
[b47bfc] | 36 |
|
---|
| 37 | #include <iostream>
|
---|
[4f7473] | 38 | #include <QAbstractItemView>
|
---|
[b47bfc] | 39 |
|
---|
[ad011c] | 40 | #include "CodePatterns/MemDebug.hpp"
|
---|
[bbbad5] | 41 |
|
---|
[367489] | 42 | #include "UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.hpp"
|
---|
[e7341e] | 43 |
|
---|
[cf9287] | 44 | #include <boost/thread/locks.hpp>
|
---|
| 45 |
|
---|
[4f7473] | 46 | #include "Element/element.hpp"
|
---|
[367489] | 47 | #include "Element/periodentafel.hpp"
|
---|
[e7341e] | 48 | #include "World.hpp"
|
---|
[b47bfc] | 49 |
|
---|
| 50 | using namespace std;
|
---|
| 51 |
|
---|
| 52 | /***************** Basic structure for tab layout ***********/
|
---|
| 53 |
|
---|
[b2c2e4] | 54 | QtInfoBox::QtInfoBox(QtObservedInstanceBoard *_board, QWidget *_parent) :
|
---|
| 55 | QTabWidget(_parent),
|
---|
[e7341e] | 56 | curAtomId(-1), nextAtomId(-1),
|
---|
| 57 | curMoleculeId(-1), nextMoleculeId(-1),
|
---|
[367489] | 58 | page_mol(NULL), page_atom(NULL),
|
---|
| 59 | board(_board),
|
---|
| 60 | currentPage(0),
|
---|
| 61 | periode(World::getInstance().getPeriode())
|
---|
[b47bfc] | 62 | {
|
---|
[4a2f3e] | 63 | timer = new QTimer(this);
|
---|
| 64 | timer->setSingleShot(true);
|
---|
[b47bfc] | 65 |
|
---|
[0b2be1] | 66 | setMinimumWidth(200);
|
---|
[5dcb3c] | 67 | setMinimumHeight(220);
|
---|
[0b2be1] | 68 |
|
---|
[4a2f3e] | 69 | connect(timer, SIGNAL(timeout()), this, SLOT(timerTimeout()));
|
---|
[b47bfc] | 70 | }
|
---|
| 71 |
|
---|
[3c53fa] | 72 | QtInfoBox::~QtInfoBox()
|
---|
[be374a] | 73 | {
|
---|
[cf9287] | 74 | clearAtomTab();
|
---|
| 75 | clearMoleculeTab();
|
---|
[be374a] | 76 | }
|
---|
[b47bfc] | 77 |
|
---|
[e7341e] | 78 | void QtInfoBox::atomHover(const atomId_t _id)
|
---|
[4a2f3e] | 79 | {
|
---|
[e7341e] | 80 | nextAtomId = _id;
|
---|
[2b596f] | 81 | timer->start(500);
|
---|
| 82 | }
|
---|
| 83 |
|
---|
[e7341e] | 84 | void QtInfoBox::moleculeHover(const moleculeId_t _id)
|
---|
[2b596f] | 85 | {
|
---|
[e7341e] | 86 | nextMoleculeId = _id;
|
---|
[4a2f3e] | 87 | timer->start(500);
|
---|
[b47bfc] | 88 | }
|
---|
| 89 |
|
---|
[3c53fa] | 90 | void QtInfoBox::timerTimeout()
|
---|
[4a2f3e] | 91 | {
|
---|
[e7341e] | 92 | if (nextAtomId != (atomId_t)-1)
|
---|
| 93 | showAtom(nextAtomId);
|
---|
| 94 | if (nextMoleculeId != (moleculeId_t)-1)
|
---|
| 95 | showMolecule(nextMoleculeId);
|
---|
[b47bfc] | 96 | }
|
---|
| 97 |
|
---|
[cf9287] | 98 | void QtInfoBox::clearAtomTab()
|
---|
[7b6bcfe] | 99 | {
|
---|
[cf9287] | 100 | boost::recursive_mutex::scoped_lock lock(tabs_mutex);
|
---|
[7b6bcfe] | 101 | if (page_atom){
|
---|
[42d7dc] | 102 | disconnect(page_atom->getAtom().get(), SIGNAL(atomRemoved()), this, SLOT(clearAtomTab()));
|
---|
[be374a] | 103 | //removeTab(indexOf(page_atom));
|
---|
[7b6bcfe] | 104 | delete(page_atom);
|
---|
| 105 | page_atom = NULL;
|
---|
| 106 | }
|
---|
[cf9287] | 107 | }
|
---|
| 108 |
|
---|
| 109 | void QtInfoBox::clearMoleculeTab()
|
---|
| 110 | {
|
---|
| 111 | boost::recursive_mutex::scoped_lock lock(tabs_mutex);
|
---|
[7b6bcfe] | 112 | if (page_mol){
|
---|
[42d7dc] | 113 | disconnect(page_mol->getMolecule().get(), SIGNAL(moleculeRemoved()), this, SLOT(clearMoleculeTab()));
|
---|
[be374a] | 114 | //removeTab(indexOf(page_mol));
|
---|
[7b6bcfe] | 115 | delete(page_mol);
|
---|
| 116 | page_mol = NULL;
|
---|
| 117 | }
|
---|
[be374a] | 118 | }
|
---|
[7b6bcfe] | 119 |
|
---|
[e7341e] | 120 | void QtInfoBox::showAtom(const atomId_t _id)
|
---|
[be374a] | 121 | {
|
---|
[52575c] | 122 | currentPage = currentIndex();
|
---|
| 123 |
|
---|
[be374a] | 124 | // Remove old tabs.
|
---|
[cf9287] | 125 | clearAtomTab();
|
---|
| 126 | clearMoleculeTab();
|
---|
[be374a] | 127 |
|
---|
[367489] | 128 | QtObservedAtom::ptr curAtom = board->getObservedAtom(_id);
|
---|
[7b6bcfe] | 129 |
|
---|
| 130 | // Show new tabs.
|
---|
[4a2f3e] | 131 | if (curAtom){
|
---|
[367489] | 132 | curAtomId = curAtom->getAtomIndex();
|
---|
| 133 | nextAtomId = -1;
|
---|
| 134 | nextMoleculeId = -1;
|
---|
[4f7473] | 135 |
|
---|
[cf9287] | 136 | boost::recursive_mutex::scoped_lock lock(tabs_mutex);
|
---|
[367489] | 137 | page_atom = new QtAtomInfoPage(curAtom, periode, this);
|
---|
| 138 | addTab(page_atom, "Atom");
|
---|
[cf9287] | 139 | connect(curAtom.get(), SIGNAL(atomRemoved()), this, SLOT(clearAtomTab()));
|
---|
[367489] | 140 |
|
---|
[1187c5] | 141 | QtObservedMolecule * const mol = curAtom->getAtomMolecule();
|
---|
| 142 | const moleculeId_t molid = mol->getMolIndex();
|
---|
[367489] | 143 | if (molid != (moleculeId_t)-1) {
|
---|
| 144 | QtObservedMolecule::ptr curMolecule = board->getObservedMolecule(molid);
|
---|
[1187c5] | 145 | ASSERT( mol == curMolecule.get(),
|
---|
| 146 | "QtInfoBox::showAtom() - mol "+toString(mol)
|
---|
| 147 | +" obtained from atom does not match mol "+toString(curMolecule.get())
|
---|
| 148 | +" obtained via id "+toString(molid));
|
---|
[367489] | 149 | if (curMolecule) {
|
---|
| 150 | page_mol = new QtMoleculeInfoPage(curMolecule, this);
|
---|
| 151 | addTab(page_mol, "Molecule");
|
---|
| 152 | connect(curMolecule.get(), SIGNAL(moleculeRemoved()), this, SLOT(clearMoleculeTab()));
|
---|
| 153 |
|
---|
| 154 | if (currentPage > 0)
|
---|
| 155 | setCurrentIndex(currentPage);
|
---|
| 156 | }
|
---|
[7772aa] | 157 | }
|
---|
[7b6bcfe] | 158 | }
|
---|
| 159 | }
|
---|
| 160 |
|
---|
[e7341e] | 161 | void QtInfoBox::showMolecule(const moleculeId_t _id)
|
---|
[2b596f] | 162 | {
|
---|
| 163 | currentPage = currentIndex();
|
---|
| 164 |
|
---|
| 165 | // Remove old tabs.
|
---|
[cf9287] | 166 | clearAtomTab();
|
---|
| 167 | clearMoleculeTab();
|
---|
[2b596f] | 168 |
|
---|
[367489] | 169 | QtObservedMolecule::ptr curMolecule = board->getObservedMolecule(_id);
|
---|
[e7341e] | 170 | nextAtomId = -1;
|
---|
| 171 | nextMoleculeId = -1;
|
---|
[2b596f] | 172 |
|
---|
| 173 | // Show new tabs.
|
---|
| 174 | if (curMolecule){
|
---|
[cf9287] | 175 | boost::recursive_mutex::scoped_lock lock(tabs_mutex);
|
---|
[2b596f] | 176 | page_mol = new QtMoleculeInfoPage(curMolecule, this);
|
---|
| 177 | addTab(page_mol, "Molecule");
|
---|
[cf9287] | 178 | connect(curMolecule.get(), SIGNAL(moleculeRemoved()), this, SLOT(clearMoleculeTab()));
|
---|
[2b596f] | 179 |
|
---|
| 180 | if (currentPage > 0)
|
---|
| 181 | setCurrentIndex(currentPage);
|
---|
| 182 | }
|
---|
| 183 | }
|
---|
| 184 |
|
---|
[7b6bcfe] | 185 | /************************ Tab for single Atoms ********************/
|
---|
[b47bfc] | 186 |
|
---|
[4f7473] | 187 | static void addInfo(QTreeWidget *info, const QString &key, const QString &value)
|
---|
| 188 | {
|
---|
| 189 | QTreeWidgetItem *treeItem = new QTreeWidgetItem(info);
|
---|
| 190 | treeItem->setText(0, key);
|
---|
| 191 | treeItem->setText(1, value);
|
---|
| 192 | }
|
---|
| 193 |
|
---|
[367489] | 194 | QtAtomInfoPage::QtAtomInfoPage(
|
---|
| 195 | QtObservedAtom::ptr &_atom,
|
---|
| 196 | periodentafel *_periode,
|
---|
| 197 | QWidget *parent) :
|
---|
[0b2be1] | 198 | QTreeWidget(parent),
|
---|
[367489] | 199 | atomRef(_atom),
|
---|
| 200 | periode(_periode)
|
---|
[7b6bcfe] | 201 | {
|
---|
[0b2be1] | 202 | setColumnCount(2);
|
---|
[4f7473] | 203 | QStringList header;
|
---|
| 204 | header << "data";
|
---|
| 205 | header << "value";
|
---|
[0b2be1] | 206 | setHeaderLabels(header);
|
---|
[4f7473] | 207 |
|
---|
[4965922] | 208 | updatePage();
|
---|
| 209 | }
|
---|
| 210 |
|
---|
| 211 | void QtAtomInfoPage::updatePage()
|
---|
| 212 | {
|
---|
| 213 | clear();
|
---|
| 214 |
|
---|
[2831b3] | 215 | if (atomRef == NULL)
|
---|
| 216 | return;
|
---|
[367489] | 217 | const element * const _element = periode->FindElement(atomRef->getAtomElement());
|
---|
| 218 | addInfo(this, "Name", QString(atomRef->getAtomName().c_str()));
|
---|
| 219 | addInfo(this, "Element", QString(_element->getName().c_str()));
|
---|
| 220 | addInfo(this, "Mass", QString("%1").arg(_element->getMass()));
|
---|
| 221 | addInfo(this, "Charge", QString("%1").arg(_element->getCharge()));
|
---|
| 222 | addInfo(this, "Bonds", QString("%1").arg(atomRef->getAtomBonds().size()));
|
---|
| 223 | addInfo(this, "Position x", QString(toString(atomRef->getAtomPosition()[0]).c_str()));
|
---|
| 224 | addInfo(this, "Position y", QString(toString(atomRef->getAtomPosition()[1]).c_str()));
|
---|
| 225 | addInfo(this, "Position z", QString(toString(atomRef->getAtomPosition()[2]).c_str()));
|
---|
[7b6bcfe] | 226 | }
|
---|
[b47bfc] | 227 |
|
---|
[3c53fa] | 228 | QtAtomInfoPage::~QtAtomInfoPage()
|
---|
[367489] | 229 | {}
|
---|
[b47bfc] | 230 |
|
---|
| 231 | /************************ Tab for single Molecules *****************/
|
---|
| 232 |
|
---|
[367489] | 233 | QtMoleculeInfoPage::QtMoleculeInfoPage(
|
---|
| 234 | QtObservedMolecule::ptr &_mol,
|
---|
| 235 | QWidget *parent) :
|
---|
[0b2be1] | 236 | QTreeWidget(parent),
|
---|
[4f7473] | 237 | mol(_mol)
|
---|
[b47bfc] | 238 | {
|
---|
[0b2be1] | 239 | setColumnCount(2);
|
---|
[4f7473] | 240 | QStringList header;
|
---|
| 241 | header << "data";
|
---|
| 242 | header << "value";
|
---|
[0b2be1] | 243 | setHeaderLabels(header);
|
---|
[4f7473] | 244 |
|
---|
[4965922] | 245 | updatePage();
|
---|
| 246 | }
|
---|
| 247 |
|
---|
| 248 | void QtMoleculeInfoPage::updatePage()
|
---|
| 249 | {
|
---|
| 250 | clear();
|
---|
| 251 |
|
---|
[2831b3] | 252 | if (mol == NULL)
|
---|
| 253 | return;
|
---|
[367489] | 254 | addInfo(this, "Name", QString(mol->getMolName().c_str()));
|
---|
| 255 | addInfo(this, "Formula", QString(mol->getMolFormula().c_str()));
|
---|
[0b2be1] | 256 | addInfo(this, "Atoms", QString("%1").arg(mol->getAtomCount()));
|
---|
[367489] | 257 | addInfo(this, "NonHydrogens", QString("%1").arg(mol->getNonHydrogenCount()));
|
---|
[0b2be1] | 258 | addInfo(this, "Bonds", QString("%1").arg(mol->getBondCount()));
|
---|
[367489] | 259 | const Vector molCenter = mol->getMolCenter();
|
---|
[5dcb3c] | 260 | addInfo(this, "Center x", QString("%1").arg(molCenter[0]));
|
---|
| 261 | addInfo(this, "Center y", QString("%1").arg(molCenter[1]));
|
---|
| 262 | addInfo(this, "Center z", QString("%1").arg(molCenter[2]));
|
---|
[b47bfc] | 263 | }
|
---|
| 264 |
|
---|
[367489] | 265 | QtMoleculeInfoPage::~QtMoleculeInfoPage()
|
---|
| 266 | {}
|
---|