Ignore:
Timestamp:
Jul 23, 2015, 2:41:49 PM (9 years ago)
Author:
Frederik Heber <heber@…>
Branches:
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
Children:
599b32
Parents:
6b6959
git-author:
Frederik Heber <heber@…> (05/31/15 16:00:52)
git-committer:
Frederik Heber <heber@…> (07/23/15 14:41:49)
Message:

tempcommit: Attempt to replace QtElementList::refill() by faster system.

  • this is not finished or tested as it is incompatible right now right refill().
Location:
src/UIElements/Views/Qt4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Views/Qt4/QtElementList.cpp

    r6b6959 ra4dee7  
    8888void QtElementList::recieveNotification(Observable *publisher, Notification_ptr notification)
    8989{
    90   if ((publisher == static_cast<Observable *>(&AtomObserver::getInstance()))
    91       && (notification->getChannelNo() == atom::ElementChanged)) {
     90  if (notification->getChannelNo() == atom::ElementChanged) {
     91//    updateElement(static_cast<atom &>(*publisher));
    9292    dirty = true;
    9393
    94     // force an update from Qt...
    95     clear();
    96     //emit changed(); doesn't work!?!
     94    refill();
    9795  } else
    9896    ASSERT(0, "QtElementList::recieveNotification() - we are not enlisted to any other instance's channel.");
     97}
     98
     99void QtElementList::updateElement(const atom &_atom)
     100{
     101  // this function has not been tested and is not used because it is
     102  // incompatible with the current refill scheme
     103  AtomElementMap_t::iterator iter = AtomElementMap.find(_atom.getId());
     104  const atomicNumber_t oldelement = iter->second;
     105  const atomicNumber_t newelement = _atom.getElementNo();
     106  iter->second = newelement;
     107  QTreeWidgetItem *oldtreeItem = topLevelItem(oldelement-1);
     108  QTreeWidgetItem *newtreeItem = topLevelItem(newelement-1);
     109  ASSERT( (oldtreeItem != NULL) && (newtreeItem != NULL),
     110      "QtElementList::updateElement() - missing element item.");
     111  int count_old = oldtreeItem->text(OCCURRENCE).toInt();
     112  int count_new = newtreeItem->text(OCCURRENCE).toInt();
     113  setOccurrence(*oldtreeItem, count_old-1);
     114  setOccurrence(*newtreeItem, count_new+1);
     115}
     116
     117void QtElementList::setOccurrence(QTreeWidgetItem &_item, const int count)
     118{
     119  if (count < 0) {
     120    // something must be very wrong, rather refill
     121    dirty = true;
     122    refill();
     123  } else {
     124    if (count > 0) {
     125      _item.setText(OCCURRENCE, QString::number(count));
     126    } else {
     127      _item.setText(OCCURRENCE, "none");
     128      _item.setDisabled(true);
     129    }
     130  }
    99131}
    100132
     
    121153    treeItem->setText(SYMBOL, QString(e->getSymbol().c_str()));
    122154    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     }
     155    setOccurrence(*treeItem, count);
    129156    elementSelection.push_back(treeItem->isSelected());
    130157  }
  • src/UIElements/Views/Qt4/QtElementList.hpp

    r6b6959 ra4dee7  
    1919#include "CodePatterns/Observer/Notification.hpp"
    2020
    21 class molecule;
    22 class MoleculeListClass;
     21#include "types.hpp"
     22
     23class atom;
    2324
    2425class QtElementList: public QTreeWidget, public Observer
     
    3738  void refill();
    3839
     40  void setOccurrence(QTreeWidgetItem &_item, const int count);
     41  void updateElement(const atom &_atom);
     42
    3943  static const int COLUMNCOUNT;
    4044  enum {NUMBER,NAME,SYMBOL,MASS,OCCURRENCE,COLUMNTYPES_MAX} COLUMNTYPES;
     
    4448  void rowSelected();
    4549
    46 signals:
    47   void moleculeSelected(molecule*);
    48   void moleculeUnSelected(molecule*);
    49   void changed();
    50 
    5150private:
    5251  std::vector<bool> elementSelection; //!< needed to determine when a selection changes
    53   MoleculeListClass *molecules;
     52  typedef std::map<atomId_t, atomicNumber_t> AtomElementMap_t;
     53  AtomElementMap_t AtomElementMap;
    5454  bool dirty;
    5555};
Note: See TracChangeset for help on using the changeset viewer.