| 1 | /* | 
|---|
| 2 | * Project: MoleCuilder | 
|---|
| 3 | * Description: creates and alters molecular systems | 
|---|
| 4 | * Copyright (C)  2010-2012 University of Bonn. All rights reserved. | 
|---|
| 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/>. | 
|---|
| 21 | */ | 
|---|
| 22 |  | 
|---|
| 23 | /* | 
|---|
| 24 | * QtElementList.cpp | 
|---|
| 25 | * | 
|---|
| 26 | *  Created on: Mar 6, 2012 | 
|---|
| 27 | *      Author: ankele | 
|---|
| 28 | */ | 
|---|
| 29 |  | 
|---|
| 30 | // include config.h | 
|---|
| 31 | #ifdef HAVE_CONFIG_H | 
|---|
| 32 | #include <config.h> | 
|---|
| 33 | #endif | 
|---|
| 34 |  | 
|---|
| 35 | #include "Views/Qt4/QtElementList.hpp" | 
|---|
| 36 |  | 
|---|
| 37 | #include <iostream> | 
|---|
| 38 |  | 
|---|
| 39 | #include "CodePatterns/MemDebug.hpp" | 
|---|
| 40 |  | 
|---|
| 41 | #include "Atom/atom.hpp" | 
|---|
| 42 | #include "Atom/AtomObserver.hpp" | 
|---|
| 43 |  | 
|---|
| 44 | #include "Element/element.hpp" | 
|---|
| 45 | #include "Element/periodentafel.hpp" | 
|---|
| 46 | #include "Descriptors/AtomTypeDescriptor.hpp" | 
|---|
| 47 | #include <QAbstractItemView> | 
|---|
| 48 | #include "Actions/SelectionAction/Atoms/AtomByElementAction.hpp" | 
|---|
| 49 | #include "Actions/SelectionAction/Atoms/NotAtomByElementAction.hpp" | 
|---|
| 50 |  | 
|---|
| 51 | using namespace std; | 
|---|
| 52 |  | 
|---|
| 53 | const int QtElementList::COLUMNCOUNT = COLUMNTYPES_MAX; | 
|---|
| 54 | const char *QtElementList::COLUMNNAMES[QtElementList::COLUMNCOUNT]={"Number","Name","Symbol","Mass","Occurrence"}; | 
|---|
| 55 |  | 
|---|
| 56 | QtElementList::QtElementList(QWidget * _parent) : | 
|---|
| 57 | QTreeWidget (_parent), | 
|---|
| 58 | Observer("QtElementList") | 
|---|
| 59 | { | 
|---|
| 60 | setColumnCount(COLUMNCOUNT); | 
|---|
| 61 | setSelectionMode(QAbstractItemView::MultiSelection); | 
|---|
| 62 |  | 
|---|
| 63 | QStringList header; | 
|---|
| 64 | for(int i=0; i<COLUMNCOUNT;++i) | 
|---|
| 65 | header << COLUMNNAMES[i]; | 
|---|
| 66 | setHeaderLabels(header); | 
|---|
| 67 |  | 
|---|
| 68 | dirty = true; | 
|---|
| 69 | refill(); | 
|---|
| 70 |  | 
|---|
| 71 | AtomObserver::getInstance().signOn(this, atom::ElementChanged); | 
|---|
| 72 |  | 
|---|
| 73 | connect(this,SIGNAL(itemSelectionChanged()),this,SLOT(rowSelected())); | 
|---|
| 74 | connect(this,SIGNAL(changed()),this,SLOT(update())); | 
|---|
| 75 | } | 
|---|
| 76 |  | 
|---|
| 77 | QtElementList::~QtElementList() | 
|---|
| 78 | { | 
|---|
| 79 | AtomObserver::getInstance().signOff(this, atom::ElementChanged); | 
|---|
| 80 | } | 
|---|
| 81 |  | 
|---|
| 82 | void QtElementList::update(Observable *publisher) | 
|---|
| 83 | { | 
|---|
| 84 | ASSERT(0, "QtElementList::update() - is not enlisted to any general update."); | 
|---|
| 85 | } | 
|---|
| 86 |  | 
|---|
| 87 |  | 
|---|
| 88 | void QtElementList::recieveNotification(Observable *publisher, Notification_ptr notification) | 
|---|
| 89 | { | 
|---|
| 90 | if ((publisher == static_cast<Observable *>(&AtomObserver::getInstance())) | 
|---|
| 91 | && (notification->getChannelNo() == atom::ElementChanged)) { | 
|---|
| 92 | dirty = true; | 
|---|
| 93 |  | 
|---|
| 94 | // force an update from Qt... | 
|---|
| 95 | clear(); | 
|---|
| 96 | //emit changed(); doesn't work!?! | 
|---|
| 97 | } else | 
|---|
| 98 | ASSERT(0, "QtElementList::recieveNotification() - we are not enlisted to any other instance's channel."); | 
|---|
| 99 | } | 
|---|
| 100 |  | 
|---|
| 101 | void QtElementList::refill() { | 
|---|
| 102 |  | 
|---|
| 103 | periodentafel *&periode = World::getInstance().getPeriode(); | 
|---|
| 104 |  | 
|---|
| 105 | elementSelection.clear(); | 
|---|
| 106 |  | 
|---|
| 107 | int i; | 
|---|
| 108 |  | 
|---|
| 109 | clear(); | 
|---|
| 110 | periodentafel::const_iterator iter; | 
|---|
| 111 | for(iter = periode->begin(),i=0; | 
|---|
| 112 | iter != periode->end(); | 
|---|
| 113 | ++i,++iter) { | 
|---|
| 114 | const element *e = iter->second; | 
|---|
| 115 | int count = 0; | 
|---|
| 116 | count = World::getInstance().getAllAtoms(AtomByType(e)).size(); | 
|---|
| 117 |  | 
|---|
| 118 | QTreeWidgetItem *treeItem = new QTreeWidgetItem(this); | 
|---|
| 119 | treeItem->setText(NUMBER, QString::number(e->getAtomicNumber())); | 
|---|
| 120 | treeItem->setText(NAME, QString(e->getName().c_str())); | 
|---|
| 121 | treeItem->setText(SYMBOL, QString(e->getSymbol().c_str())); | 
|---|
| 122 | treeItem->setText(MASS, QString::number(e->getMass())); | 
|---|
| 123 | if (count > 0){ | 
|---|
| 124 | treeItem->setText(OCCURRENCE, QString::number(count)); | 
|---|
| 125 | }else{ | 
|---|
| 126 | treeItem->setText(OCCURRENCE, "none"); | 
|---|
| 127 | treeItem->setDisabled(true); | 
|---|
| 128 | } | 
|---|
| 129 | elementSelection.push_back(treeItem->isSelected()); | 
|---|
| 130 | } | 
|---|
| 131 | dirty = false; | 
|---|
| 132 | } | 
|---|
| 133 |  | 
|---|
| 134 | void QtElementList::paintEvent(QPaintEvent * event) | 
|---|
| 135 | { | 
|---|
| 136 | if (dirty) | 
|---|
| 137 | refill(); | 
|---|
| 138 | QTreeWidget::paintEvent(event); | 
|---|
| 139 | } | 
|---|
| 140 |  | 
|---|
| 141 | void QtElementList::subjectKilled(Observable *publisher) { | 
|---|
| 142 | } | 
|---|
| 143 |  | 
|---|
| 144 |  | 
|---|
| 145 | void QtElementList::rowSelected() | 
|---|
| 146 | { | 
|---|
| 147 | //std::cout << "rowSelected\n"; | 
|---|
| 148 | periodentafel *&periode = World::getInstance().getPeriode(); | 
|---|
| 149 |  | 
|---|
| 150 | for (int i=0;i<topLevelItemCount();i++){ | 
|---|
| 151 | QTreeWidgetItem *item = topLevelItem(i); | 
|---|
| 152 | bool newSelection = item->isSelected(); | 
|---|
| 153 | if (newSelection != elementSelection[i]){ | 
|---|
| 154 | elementSelection[i] = newSelection; | 
|---|
| 155 |  | 
|---|
| 156 | int atomicNumber = item->text(NUMBER).toInt(); | 
|---|
| 157 | const element *e = periode->FindElement(atomicNumber); | 
|---|
| 158 | if (newSelection) | 
|---|
| 159 | MoleCuilder::SelectionAtomByElement(e); | 
|---|
| 160 | else | 
|---|
| 161 | MoleCuilder::SelectionNotAtomByElement(e); | 
|---|
| 162 | } | 
|---|
| 163 | } | 
|---|
| 164 | } | 
|---|
| 165 |  | 
|---|