Ignore:
Timestamp:
Jul 24, 2012, 3:19:49 PM (13 years ago)
Author:
Michael Ankele <ankele@…>
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:
572701
Parents:
a2aa2f
git-author:
Michael Ankele <ankele@…> (07/24/12 14:02:58)
git-committer:
Michael Ankele <ankele@…> (07/24/12 15:19:49)
Message:

QtQueryList applied to VectorsQtQuery

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Qt4/Query/VectorsQtQuery.cpp

    ra2aa2f rf84992  
    1818#endif
    1919
    20 #include <QtGui/QDoubleSpinBox>
     20#include <Qt/qpushbutton.h>
    2121#include <Qt/qboxlayout.h>
    22 #include <Qt/qcombobox.h>
    23 #include <Qt/qlabel.h>
     22#include <Qt/qlistwidget.h>
    2423
    2524#include "CodePatterns/MemDebug.hpp"
    2625
     26
    2727#include "UIElements/Qt4/Query/QtQuery.hpp"
    28 #include "UIElements/Qt4/Pipe/VectorsQtQueryPipe.hpp"
     28#include "UIElements/Qt4/Query/QtQueryList.hpp"
     29#include "UIElements/Qt4/Pipe/QtQueryListPipe.hpp"
    2930
    3031
    31 QtDialog::VectorsQtQuery::VectorsQtQuery(Parameter<std::vector<Vector> > &_param, std::string title, QBoxLayout *_parent,Dialog *_dialog) :
    32     Dialog::VectorsQuery(_param, title),
    33     parent(_parent),
    34     dialog(_dialog)
     32QtDialog::VectorsQtQuery::VectorsQtQuery(Parameter<std::vector<Vector> > &_param, std::string _title,QBoxLayout *_parent,Dialog *_dialog) :
     33    Dialog::VectorsQuery(_param, _title),
     34    QtQueryList<Vector>(_parent, _dialog, temp)
    3535{
    36   mainLayout= new QHBoxLayout();
    37   titleLabel = new QLabel(QString(getTitle().c_str()));
    38   mainLayout->addWidget(titleLabel);
    39   subLayout = new QVBoxLayout();
    40   mainLayout->addLayout(subLayout);
    41   QComboBox* inputBox = new QComboBox();
    42   coordLayout = new QHBoxLayout();
    43   subLayout->addLayout(coordLayout);
    44   coordLabel = new QLabel(QString("x,y,z"));
    45   coordLayout->addWidget(coordLabel);
    46   coordInput = new QDoubleSpinBox();
    47 //  coordInput->setRange(0,M.at(i,i));
    48   coordInput->setDecimals(3);
    49   coordLayout->addWidget(coordInput);
    50   /*pipe = new VectorsQtQueryPipe(temp,_dialog,inputBox);
    51   //pipe->update(coordInput->value());
    52   connect(coordInput,SIGNAL(valueChanged(double)),pipe,SLOT(update(double)));*/
    53   parent->addLayout(mainLayout);
     36  ListQuerySubDialog *subDialog = new ListQuerySubDialog(this);
     37  subQuery = new VectorQtQuery(*subParam, _title, thisVLayout, subDialog);
     38  subDialog->setSubQuery(subQuery);
     39
     40  connect(inputList,SIGNAL(itemSelectionChanged()),this,SLOT(onElementSelected()));
     41  connect(addButton,SIGNAL(clicked()),this,SLOT(onAddElement()));
     42  connect(removeButton,SIGNAL(clicked()),this,SLOT(onRemoveElement()));
    5443}
    5544
    5645QtDialog::VectorsQtQuery::~VectorsQtQuery()
    57 {}
    58 
    59 void QtDialog::VectorsQtQuery::onUpdate() {
    60   dialog->update();
     46{
     47  delete(subQuery);
    6148}
    6249
    63 bool QtDialog::VectorsQtQuery::handle() {
     50void QtDialog::VectorsQtQuery::onSubUpdate()
     51{
     52  addButton->setEnabled(subParam->isSet());
     53}
     54
     55void QtDialog::VectorsQtQuery::onElementSelected() {
     56  elementSelected();
     57}
     58
     59void QtDialog::VectorsQtQuery::onAddElement() {
     60  addElement();
     61}
     62
     63void QtDialog::VectorsQtQuery::onRemoveElement() {
     64  removeElements();
     65}
     66
     67bool QtDialog::VectorsQtQuery::handle()
     68{
    6469  if (param.isValid(temp)){
    6570    param.set(temp);
Note: See TracChangeset for help on using the changeset viewer.