source: src/UIElements/Views/Qt4/QtStatusBar.cpp@ e0f8c8

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable v1.1.4
Last change on this file since e0f8c8 was 255829, checked in by Frederik Heber <heber@…>, 14 years ago

Removed Helpers.hpp, deleted Helpers.cpp and libMoleCuilderHelpers.la is history.

  • defs.cpp is now compiled into libmolecuilder.la.
  • ShapeUnitTest alone needs defs.cpp.
  • Most changes are removal of Helpers/helpers.hpp.
  • performCriticalExit() now inline function in Helpers/helpers.hpp.
  • also inclusion possible where performCriticalExit() is needed.
  • Helpers/helpers.hpp does not include defs.hpp anymore and this causes lots of missing Helpers/defs.hpp, CodePatterns/Log.hpp and alikes.
  • removed src/Helpers from configure.ac.
  • Property mode set to 100644
File size: 3.1 KB
Line 
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
8/*
9 * QtStatusBar.cpp
10 *
11 * Created on: Feb 17, 2010
12 * Author: crueger
13 */
14
15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20#include <sstream>
21
22#include <QtGui/QLabel>
23#include <QtGui/QBoxLayout>
24#include <QtGui/QProgressBar>
25
26#include "QtStatusBar.hpp"
27
28#include "CodePatterns/MemDebug.hpp"
29
30#include "World.hpp"
31#include "Actions/Process.hpp"
32
33#define PLURAL_S(v) (((v)==1)?"":"s")
34
35
36QtStatusBar::QtStatusBar(QWidget *_parent) :
37 QStatusBar(_parent),
38 Observer("QtStatusBar"),
39 atomCount(World::getInstance().numAtoms()),
40 moleculeCount(World::getInstance().numMolecules()),
41 parent(_parent)
42{
43 World::getInstance().signOn(this);
44 Process::AddObserver(this);
45 statusLabel = new QLabel(this);
46 statusLabel->setFrameStyle(QFrame::NoFrame | QFrame::Plain);
47 addPermanentWidget(statusLabel);
48 redrawStatus();
49}
50
51QtStatusBar::~QtStatusBar()
52{
53 Process::RemoveObserver(this);
54 World::getInstance().signOff(this);
55}
56
57void QtStatusBar::update(Observable *subject){
58 if (subject==World::getPointer()){
59 atomCount = World::getInstance().numAtoms();
60 moleculeCount = World::getInstance().numMolecules();
61 redrawStatus();
62 }
63 else {
64 // we probably have some process
65 Process *proc;
66 if((proc=dynamic_cast<Process*>(subject))){
67 redrawProcess(proc);
68 }
69 }
70}
71
72void QtStatusBar::subjectKilled(Observable *subject){
73 // Processes don't notify when they are killed
74 atomCount = World::getInstance().numAtoms();
75 moleculeCount = World::getInstance().numMolecules();
76 World::getInstance().signOn(this);
77 redrawStatus();
78}
79
80void QtStatusBar::redrawStatus(){
81 stringstream sstr;
82 sstr << "You have " << atomCount << " atom" << PLURAL_S(atomCount)
83 <<" in " << moleculeCount << " molecule" << PLURAL_S(moleculeCount);
84 statusLabel->setText(QString(sstr.str().c_str()));
85}
86
87void QtStatusBar::redrawProcess(Process *proc){
88 progressIndicator *ind=0;
89 // see what we have to do with the process
90 if(proc->doesStart()){
91 ind = new progressIndicator(proc->getName());
92 ind->bar->setMaximum(proc->getMaxSteps());
93 progressBars.insert(pair<Process*,progressIndicator*>(proc,ind));
94 }
95 else {
96 ind = progressBars[proc];
97 }
98 if(activeProcess!=proc){
99 addWidget(ind->container);
100 activeProcess = proc;
101 }
102 ind->bar->setValue(proc->getCurrStep());
103 parent->repaint();
104 if(proc->doesStop()){
105 removeWidget(ind->container);
106 activeProcess = 0;
107 progressBars.erase(proc);
108 delete ind;
109 }
110}
111
112
113
114QtStatusBar::progressIndicator::progressIndicator(string name){
115 stringstream sstr;
116 sstr << "Busy (" << name << ")";
117 container = new QWidget();
118 layout = new QHBoxLayout(container);
119 label = new QLabel(QString(sstr.str().c_str()));
120 bar = new QProgressBar();
121
122 layout->addWidget(label);
123 layout->addWidget(bar);
124 container->setLayout(layout);
125}
126
127QtStatusBar::progressIndicator::~progressIndicator(){
128 delete container;
129}
Note: See TracBrowser for help on using the repository browser.