Changeset c96c66 for src


Ignore:
Timestamp:
Oct 25, 2010, 8:32:49 AM (14 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:
41167c
Parents:
ee62e4
Message:

Added Atom(s)QTQuery.

Location:
src/UIElements/QT4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/QT4/QTDialog.cpp

    ree62e4 rc96c66  
    108108}
    109109
    110 void QTDialog::queryAtom(const char*, std::string){
     110void QTDialog::queryAtom(const char* title, std::string)
     111{
     112  registerQuery(new AtomQTQuery(title,inputLayout,this));
     113}
     114
     115void QTDialog::queryAtoms(const char* title, std::string)
     116{
     117  registerQuery(new AtomsQTQuery(title,inputLayout,this));
     118}
     119
     120void QTDialog::queryBox(const char* title, std::string){
    111121  // TODO
    112122  ASSERT(false, "Not implemented yet");
    113123}
    114124
    115 void QTDialog::queryAtoms(const char*, std::string){
     125
     126void QTDialog::queryInt(const char *title,string)
     127{
     128  registerQuery(new IntQTQuery(title,inputLayout,this));
     129}
     130
     131void QTDialog::queryInts(const char *title,string)
     132{
     133  registerQuery(new IntsQTQuery(title,inputLayout,this));
     134}
     135
     136void QTDialog::queryDouble(const char* title,string)
     137{
     138  registerQuery(new DoubleQTQuery(title,inputLayout,this));
     139}
     140
     141void QTDialog::queryDoubles(const char* title,string)
     142{
     143  registerQuery(new DoublesQTQuery(title,inputLayout,this));
     144}
     145
     146void QTDialog::queryString(const char* title,string)
     147{
     148  registerQuery(new StringQTQuery(title,inputLayout,this));
     149}
     150
     151void QTDialog::queryStrings(const char* title,string)
     152{
     153  registerQuery(new StringsQTQuery(title,inputLayout,this));
     154}
     155
     156void QTDialog::queryMolecule(const char *title,string)
     157{
     158  registerQuery(new MoleculeQTQuery(title,inputLayout,this));
     159}
     160
     161void QTDialog::queryMolecules(const char *title,string)
     162{
    116163  // TODO
    117164  ASSERT(false, "Not implemented yet");
    118165}
    119166
    120 void QTDialog::queryBox(const char*, std::string){
     167void QTDialog::queryVector(const char* title, bool check,string)
     168{
     169  registerQuery(new VectorQTQuery(title,check,inputLayout,this));
     170}
     171
     172void QTDialog::queryVectors(const char* title, bool check,string)
     173{
    121174  // TODO
    122175  ASSERT(false, "Not implemented yet");
    123176}
    124177
    125 
    126 void QTDialog::queryInt(const char *title,string)
    127 {
    128   registerQuery(new IntQTQuery(title,inputLayout,this));
    129 }
    130 
    131 void QTDialog::queryInts(const char *title,string)
    132 {
    133   registerQuery(new IntsQTQuery(title,inputLayout,this));
    134 }
    135 
    136 void QTDialog::queryDouble(const char* title,string)
    137 {
    138   registerQuery(new DoubleQTQuery(title,inputLayout,this));
    139 }
    140 
    141 void QTDialog::queryDoubles(const char* title,string)
    142 {
    143   registerQuery(new DoublesQTQuery(title,inputLayout,this));
    144 }
    145 
    146 void QTDialog::queryString(const char* title,string)
    147 {
    148   registerQuery(new StringQTQuery(title,inputLayout,this));
    149 }
    150 
    151 void QTDialog::queryStrings(const char* title,string)
    152 {
    153   registerQuery(new StringsQTQuery(title,inputLayout,this));
    154 }
    155 
    156 void QTDialog::queryMolecule(const char *title,string)
    157 {
    158   registerQuery(new MoleculeQTQuery(title,inputLayout,this));
    159 }
    160 
    161 void QTDialog::queryMolecules(const char *title,string)
     178void QTDialog::queryElement(const char* title, std::string)
     179{
     180  registerQuery(new ElementQTQuery(title,inputLayout,this));
     181}
     182
     183void QTDialog::queryElements(const char* title, std::string)
    162184{
    163185  // TODO
     
    165187}
    166188
    167 void QTDialog::queryVector(const char* title, bool check,string)
    168 {
    169   registerQuery(new VectorQTQuery(title,check,inputLayout,this));
    170 }
    171 
    172 void QTDialog::queryVectors(const char* title, bool check,string)
    173 {
    174   // TODO
    175   ASSERT(false, "Not implemented yet");
    176 }
    177 
    178 void QTDialog::queryElement(const char* title, std::string)
    179 {
    180   registerQuery(new ElementQTQuery(title,inputLayout,this));
    181 }
    182 
    183 void QTDialog::queryElements(const char* title, std::string)
    184 {
    185   // TODO
    186   ASSERT(false, "Not implemented yet");
    187 }
    188 
    189189void QTDialog::queryFile(const char* title, std::string)
    190190{
     
    193193
    194194/************************** Query Objects *******************************/
     195
     196QTDialog::AtomQTQuery::AtomQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :
     197    Dialog::AtomQuery(_title),
     198    parent(_parent)
     199{
     200  thisLayout = new QHBoxLayout();
     201  titleLabel = new QLabel(QString(getTitle().c_str()));
     202  inputBox = new QComboBox();
     203  inputBox->insertItem(-1, QString("no atom"));
     204  std::vector<atom *> atoms = World::getInstance().getAllAtoms();
     205  for (std::vector<atom *>::const_iterator iter = atoms.begin(); iter != atoms.end(); ++iter)
     206    inputBox->insertItem((*iter)->getNr(),QString::fromStdString((*iter)->getName()));
     207
     208  parent->addLayout(thisLayout);
     209  thisLayout->addWidget(titleLabel);
     210  thisLayout->addWidget(inputBox);
     211
     212  pipe = new AtomQTQueryPipe(&tmp,_dialog, inputBox);
     213  pipe->update(inputBox->currentIndex());
     214  connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int)));
     215}
     216
     217QTDialog::AtomQTQuery::~AtomQTQuery()
     218{
     219  delete pipe;
     220}
     221
     222bool QTDialog::AtomQTQuery::handle() {
     223  return true;
     224}
     225
     226
     227QTDialog::AtomsQTQuery::AtomsQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :
     228    Dialog::AtomsQuery(_title),
     229    parent(_parent)
     230{
     231  QHBoxLayout * thisHLayout = new QHBoxLayout();
     232  QVBoxLayout * thisV1Layout = new QVBoxLayout();
     233  QVBoxLayout * thisV2Layout = new QVBoxLayout();
     234
     235  QLabel *titleLabel = new QLabel(QString(getTitle().c_str()));
     236  QLabel *inputLabel = new QLabel("Enter to add");
     237  QListWidget* inputList = new QListWidget();
     238  inputList->setSelectionMode(QAbstractItemView::ExtendedSelection);
     239  std::vector<atom *> atoms = World::getInstance().getAllAtoms();
     240  for (std::vector<atom *>::const_iterator iter = atoms.begin(); iter != atoms.end(); ++iter)
     241    inputBox->insertItem((*iter)->getNr(),QString((*iter)->getNr()));
     242
     243  QLineEdit* inputBox = new QLineEdit();
     244  inputLabel->setBuddy(inputBox);
     245  titleLabel->setBuddy(inputList);
     246  QPushButton* AddButton = new QPushButton("Add");
     247  AddButton->setEnabled(false);
     248  QPushButton* RemoveButton = new QPushButton("Remove");
     249  RemoveButton->setEnabled(false);
     250
     251  thisV1Layout->addWidget(titleLabel);
     252  thisV1Layout->addWidget(inputList);
     253  thisV2Layout->addWidget(inputLabel);
     254  thisV2Layout->addWidget(inputBox);
     255  thisV2Layout->addWidget(AddButton);
     256  thisV2Layout->addWidget(RemoveButton);
     257  parent->addLayout(thisHLayout);
     258  thisHLayout->addLayout(thisV1Layout);
     259  thisHLayout->addLayout(thisV2Layout);
     260
     261  pipe = new AtomsQTQueryPipe(&tmp,_dialog,inputList);
     262  connect(inputList,SIGNAL(itemSelectionChanged()),pipe,SLOT(IntegerSelected()));
     263  connect(AddButton,SIGNAL(Clicked()),pipe,SLOT(add()));
     264  connect(RemoveButton,SIGNAL(Clicked()),pipe,SLOT(remove()));
     265}
     266
     267QTDialog::AtomsQTQuery::~AtomsQTQuery()
     268{
     269  delete pipe;
     270}
     271
     272bool QTDialog::AtomsQTQuery::handle() {
     273  return true;
     274}
    195275
    196276QTDialog::IntQTQuery::IntQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :
     
    868948
    869949
    870 AtomsQTQueryPipe::AtomsQTQueryPipe(std::vector<atom *>*_content, QTDialog *_dialog, QComboBox *_theBox) :
     950AtomsQTQueryPipe::AtomsQTQueryPipe(std::vector<atom *>*_content, QTDialog *_dialog, QListWidget *_theList) :
    871951  content(_content),
    872952  dialog(_dialog),
    873   theBox(_theBox)
     953  theList(_theList)
    874954{}
    875955
     
    877957{}
    878958
    879 void AtomsQTQueryPipe::update(int newIndex) {
    880   QVariant data = theBox->itemData(newIndex);
    881   int idx = data.toInt();
    882   atom *Walker = World::getInstance().getAtom(AtomById(idx));
    883   if (Walker)
    884     (*content).push_back(Walker) ;
    885   dialog->update();
     959void AtomsQTQueryPipe::update() {
     960  // clear target and put all atoms therein
     961  (*content).clear();
     962  for (std::set<atom *>::iterator iter = currentList.begin(); iter != currentList.end(); ++iter)
     963    (*content).push_back(*iter);
     964  dialog->update();
     965}
     966
     967void AtomsQTQueryPipe::add() {
     968  QList<QListWidgetItem *> items = theList->selectedItems();
     969  for (QList<QListWidgetItem *>::iterator iter = items.begin();iter != items.end();++iter) {
     970    const int index = (*iter)->text().toInt();
     971    atom *Walker = World::getInstance().getAtom(AtomById(index));
     972    if (Walker) {
     973      (*content).push_back(Walker);
     974      currentList.insert(Walker);
     975      if (lookup.find(index) != lookup.end())
     976        lookup.insert(pair<int, atom*>(index, Walker));
     977    }
     978  }
     979  update();
     980}
     981
     982void AtomsQTQueryPipe::remove() {
     983  QList<QListWidgetItem *> items = theList->selectedItems();
     984  for (QList<QListWidgetItem *>::iterator iter = items.begin();iter != items.end();++iter) {
     985    const int index = (*iter)->text().toInt();
     986    atom *Walker = World::getInstance().getAtom(AtomById(index));
     987    if (Walker) {
     988      currentList.erase(Walker);
     989    }
     990  }
     991  update();
    886992}
    887993
  • src/UIElements/QT4/QTDialog.hpp

    ree62e4 rc96c66  
    1414
    1515#include <boost/filesystem.hpp>
     16
     17#include <map>
     18#include <set>
     19#include <vector>
    1620
    1721class QBoxLayout;
     
    422426  Q_OBJECT
    423427public:
    424   AtomsQTQueryPipe(std::vector<atom *>*_content, QTDialog *_dialog, QComboBox *_theBox);
     428  AtomsQTQueryPipe(std::vector<atom *>*_content, QTDialog *_dialog, QListWidget *_theList);
    425429  virtual ~AtomsQTQueryPipe();
    426430
    427431public slots:
    428   void update(int);
     432  void update();
     433  void add();
     434  void remove();
    429435
    430436private:
    431437  std::vector<atom *>*content;
    432   QTDialog *dialog;
    433   QComboBox *theBox;
     438  std::map<int, atom *> lookup;
     439  std::set<atom *> currentList;
     440  QTDialog *dialog;
     441  QListWidget *theList;
    434442
    435443};
Note: See TracChangeset for help on using the changeset viewer.