[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[b47bfc] | 8 | /*
|
---|
[4cf323d] | 9 | * QtStatusBar.cpp
|
---|
[b47bfc] | 10 | *
|
---|
| 11 | * Created on: Feb 17, 2010
|
---|
| 12 | * Author: crueger
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[bf3817] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
[bbbad5] | 19 |
|
---|
[b47bfc] | 20 | #include <sstream>
|
---|
| 21 |
|
---|
| 22 | #include <QtGui/QLabel>
|
---|
| 23 | #include <QtGui/QBoxLayout>
|
---|
| 24 | #include <QtGui/QProgressBar>
|
---|
| 25 |
|
---|
[4cf323d] | 26 | #include "QtStatusBar.hpp"
|
---|
[bbbad5] | 27 |
|
---|
| 28 | #include "Helpers/MemDebug.hpp"
|
---|
| 29 |
|
---|
[b47bfc] | 30 | #include "World.hpp"
|
---|
[952f38] | 31 | #include "Helpers/helpers.hpp"
|
---|
[b47bfc] | 32 | #include "Actions/Process.hpp"
|
---|
| 33 |
|
---|
| 34 |
|
---|
[4cf323d] | 35 | QtStatusBar::QtStatusBar(QWidget *_parent) :
|
---|
[b47bfc] | 36 | QStatusBar(_parent),
|
---|
[4cf323d] | 37 | Observer("QtStatusBar"),
|
---|
[b47bfc] | 38 | atomCount(World::getInstance().numAtoms()),
|
---|
[fc7504] | 39 | moleculeCount(World::getInstance().numMolecules()),
|
---|
| 40 | parent(_parent)
|
---|
[b47bfc] | 41 | {
|
---|
| 42 | World::getInstance().signOn(this);
|
---|
| 43 | Process::AddObserver(this);
|
---|
| 44 | statusLabel = new QLabel(this);
|
---|
| 45 | statusLabel->setFrameStyle(QFrame::NoFrame | QFrame::Plain);
|
---|
| 46 | addPermanentWidget(statusLabel);
|
---|
| 47 | redrawStatus();
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[4cf323d] | 50 | QtStatusBar::~QtStatusBar()
|
---|
[b47bfc] | 51 | {
|
---|
| 52 | Process::RemoveObserver(this);
|
---|
| 53 | World::getInstance().signOff(this);
|
---|
| 54 | }
|
---|
| 55 |
|
---|
[4cf323d] | 56 | void QtStatusBar::update(Observable *subject){
|
---|
[b47bfc] | 57 | if (subject==World::getPointer()){
|
---|
| 58 | atomCount = World::getInstance().numAtoms();
|
---|
| 59 | moleculeCount = World::getInstance().numMolecules();
|
---|
| 60 | redrawStatus();
|
---|
| 61 | }
|
---|
| 62 | else {
|
---|
| 63 | // we probably have some process
|
---|
| 64 | Process *proc;
|
---|
| 65 | if((proc=dynamic_cast<Process*>(subject))){
|
---|
| 66 | redrawProcess(proc);
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 | }
|
---|
| 70 |
|
---|
[4cf323d] | 71 | void QtStatusBar::subjectKilled(Observable *subject){
|
---|
[b47bfc] | 72 | // Processes don't notify when they are killed
|
---|
| 73 | atomCount = World::getInstance().numAtoms();
|
---|
| 74 | moleculeCount = World::getInstance().numMolecules();
|
---|
| 75 | World::getInstance().signOn(this);
|
---|
| 76 | redrawStatus();
|
---|
| 77 | }
|
---|
| 78 |
|
---|
[4cf323d] | 79 | void QtStatusBar::redrawStatus(){
|
---|
[b47bfc] | 80 | stringstream sstr;
|
---|
| 81 | sstr << "You have " << atomCount << " atom" << PLURAL_S(atomCount)
|
---|
| 82 | <<" in " << moleculeCount << " molecule" << PLURAL_S(moleculeCount);
|
---|
| 83 | statusLabel->setText(QString(sstr.str().c_str()));
|
---|
| 84 | }
|
---|
| 85 |
|
---|
[4cf323d] | 86 | void QtStatusBar::redrawProcess(Process *proc){
|
---|
[b47bfc] | 87 | progressIndicator *ind=0;
|
---|
| 88 | // see what we have to do with the process
|
---|
| 89 | if(proc->doesStart()){
|
---|
| 90 | ind = new progressIndicator(proc->getName());
|
---|
| 91 | ind->bar->setMaximum(proc->getMaxSteps());
|
---|
| 92 | progressBars.insert(pair<Process*,progressIndicator*>(proc,ind));
|
---|
| 93 | }
|
---|
| 94 | else {
|
---|
| 95 | ind = progressBars[proc];
|
---|
| 96 | }
|
---|
| 97 | if(activeProcess!=proc){
|
---|
| 98 | addWidget(ind->container);
|
---|
| 99 | activeProcess = proc;
|
---|
| 100 | }
|
---|
| 101 | ind->bar->setValue(proc->getCurrStep());
|
---|
| 102 | parent->repaint();
|
---|
| 103 | if(proc->doesStop()){
|
---|
| 104 | removeWidget(ind->container);
|
---|
| 105 | activeProcess = 0;
|
---|
| 106 | progressBars.erase(proc);
|
---|
| 107 | delete ind;
|
---|
| 108 | }
|
---|
| 109 | }
|
---|
| 110 |
|
---|
| 111 |
|
---|
| 112 |
|
---|
[4cf323d] | 113 | QtStatusBar::progressIndicator::progressIndicator(string name){
|
---|
[b47bfc] | 114 | stringstream sstr;
|
---|
| 115 | sstr << "Busy (" << name << ")";
|
---|
| 116 | container = new QWidget();
|
---|
| 117 | layout = new QHBoxLayout(container);
|
---|
| 118 | label = new QLabel(QString(sstr.str().c_str()));
|
---|
| 119 | bar = new QProgressBar();
|
---|
| 120 |
|
---|
| 121 | layout->addWidget(label);
|
---|
| 122 | layout->addWidget(bar);
|
---|
| 123 | container->setLayout(layout);
|
---|
| 124 | }
|
---|
| 125 |
|
---|
[4cf323d] | 126 | QtStatusBar::progressIndicator::~progressIndicator(){
|
---|
[b47bfc] | 127 | delete container;
|
---|
| 128 | }
|
---|