Changeset 7d9416 for src/UIElements/Qt4
- Timestamp:
- Jun 13, 2012, 5:39:06 PM (13 years ago)
- 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:
- d496fd
- Parents:
- a483e4
- git-author:
- Michael Ankele <ankele@…> (05/10/12 15:00:12)
- git-committer:
- Frederik Heber <heber@…> (06/13/12 17:39:06)
- Location:
- src/UIElements/Qt4
- Files:
-
- 3 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/Pipe/RealSpaceMatrixQtQueryPipe.cpp
ra483e4 r7d9416 18 18 #endif 19 19 20 #include "UIElements/Qt4/Pipe/ BoxQtQueryPipe.hpp"20 #include "UIElements/Qt4/Pipe/RealSpaceMatrixQtQueryPipe.hpp" 21 21 #include "UIElements/Qt4/QtDialog.hpp" 22 22 … … 26 26 #include "CodePatterns/MemDebug.hpp" 27 27 #include "LinearAlgebra/RealSpaceMatrix.hpp" 28 #include "Box.hpp"29 28 30 BoxQtQueryPipe::BoxQtQueryPipe(Parameter<Box> &_content, QtDialog *_dialog, QTableWidget *_inputTable) :29 RealSpaceMatrixQtQueryPipe::RealSpaceMatrixQtQueryPipe(Parameter<RealSpaceMatrix> &_content, QtDialog *_dialog, QTableWidget *_inputTable) : 31 30 content(_content), 32 31 dialog(_dialog), … … 37 36 } 38 37 39 BoxQtQueryPipe::~BoxQtQueryPipe()38 RealSpaceMatrixQtQueryPipe::~RealSpaceMatrixQtQueryPipe() 40 39 { 41 40 delete tmpM; 42 41 } 43 42 44 void BoxQtQueryPipe::update(int row, int column)43 void RealSpaceMatrixQtQueryPipe::update(int row, int column) 45 44 { 46 45 tmpM->at(row, column) = inputTable->item(row, column)->text().toDouble(); 47 Box b; 48 b.setM(*tmpM); 49 content.set(b); 46 content.set(*tmpM); 50 47 dialog->update(); 51 48 } -
src/UIElements/Qt4/Pipe/RealSpaceMatrixQtQueryPipe.hpp
ra483e4 r7d9416 20 20 class QTableWidget; 21 21 22 class Box;23 22 class QtDialog; 24 23 class RealSpaceMatrix; 25 24 26 25 27 class BoxQtQueryPipe : public QWidget {26 class RealSpaceMatrixQtQueryPipe : public QWidget { 28 27 Q_OBJECT 29 28 public: 30 BoxQtQueryPipe(Parameter<Box> &_content, QtDialog *_dialog, QTableWidget *_inputTable);31 virtual ~ BoxQtQueryPipe();29 RealSpaceMatrixQtQueryPipe(Parameter<RealSpaceMatrix> &_content, QtDialog *_dialog, QTableWidget *_inputTable); 30 virtual ~RealSpaceMatrixQtQueryPipe(); 32 31 33 32 public slots: … … 35 34 36 35 private: 37 Parameter< Box> &content;36 Parameter<RealSpaceMatrix> &content; 38 37 QtDialog *dialog; 39 38 QTableWidget *inputTable; -
src/UIElements/Qt4/QtDialog.cpp
ra483e4 r7d9416 95 95 } 96 96 97 void QtDialog::query Box(Parameter<Box> ¶m, const char* title, std::string)97 void QtDialog::queryRealSpaceMatrix(Parameter<RealSpaceMatrix> ¶m, const char* title, std::string) 98 98 { 99 registerQuery(new BoxQtQuery(param,title,inputLayout,this));99 registerQuery(new RealSpaceMatrixQtQuery(param,title,inputLayout,this)); 100 100 } 101 101 -
src/UIElements/Qt4/QtDialog.hpp
ra483e4 r7d9416 49 49 virtual void queryVector(Parameter<Vector> &, const char*,bool,std::string = ""); 50 50 virtual void queryVectors(Parameter<std::vector<Vector> > &, const char*,bool,std::string = ""); 51 virtual void query Box(Parameter<Box> &, const char*, std::string = "");51 virtual void queryRealSpaceMatrix(Parameter<RealSpaceMatrix> &, const char*, std::string = ""); 52 52 virtual void queryElement(Parameter<const element *> &, const char*,std::string = ""); 53 53 virtual void queryElements(Parameter<std::vector<const element *> > &, const char*,std::string = ""); … … 63 63 class AtomsQtQuery; 64 64 class BooleanQtQuery; 65 class BoxQtQuery;65 class RealSpaceMatrixQtQuery; 66 66 class DoubleQtQuery; 67 67 class DoublesQtQuery; -
src/UIElements/Qt4/Query/QtQuery.hpp
ra483e4 r7d9416 37 37 class AtomsQtQueryPipe; 38 38 class BooleanQtQueryPipe; 39 class BoxQtQueryPipe;39 class RealSpaceMatrixQtQueryPipe; 40 40 class DoubleQtQueryPipe; 41 41 class DoublesQtQueryPipe; … … 98 98 }; 99 99 100 class QtDialog:: BoxQtQuery : public Dialog::BoxQuery {101 public: 102 BoxQtQuery(Parameter<Box> &, std::string _title, QBoxLayout *_parent,QtDialog *_dialog);103 virtual ~ BoxQtQuery();100 class QtDialog::RealSpaceMatrixQtQuery : public Dialog::RealSpaceMatrixQuery { 101 public: 102 RealSpaceMatrixQtQuery(Parameter<RealSpaceMatrix> &, std::string _title, QBoxLayout *_parent,QtDialog *_dialog); 103 virtual ~RealSpaceMatrixQtQuery(); 104 104 virtual bool handle(); 105 105 private: … … 109 109 QTableWidget *inputTable; 110 110 111 BoxQtQueryPipe *pipe;111 RealSpaceMatrixQtQueryPipe *pipe; 112 112 }; 113 113 -
src/UIElements/Qt4/Query/RealSpaceMatrixQtQuery.cpp
ra483e4 r7d9416 25 25 26 26 #include "UIElements/Qt4/Query/QtQuery.hpp" 27 #include "UIElements/Qt4/Pipe/ BoxQtQueryPipe.hpp"27 #include "UIElements/Qt4/Pipe/RealSpaceMatrixQtQueryPipe.hpp" 28 28 29 29 #include "LinearAlgebra/RealSpaceMatrix.hpp" 30 30 #include "World.hpp" 31 31 32 QtDialog:: BoxQtQuery::BoxQtQuery(Parameter<Box> ¶m, std::string _title,QBoxLayout *_parent,QtDialog *_dialog) :33 Dialog:: BoxQuery(param, _title),32 QtDialog::RealSpaceMatrixQtQuery::RealSpaceMatrixQtQuery(Parameter<RealSpaceMatrix> ¶m, std::string _title,QBoxLayout *_parent,QtDialog *_dialog) : 33 Dialog::RealSpaceMatrixQuery(param, _title), 34 34 parent(_parent) 35 35 { … … 44 44 inputTable->setVerticalHeaderLabels(CoordinateList); 45 45 46 pipe = new BoxQtQueryPipe(tmp,_dialog, inputTable);46 pipe = new RealSpaceMatrixQtQueryPipe(tmp,_dialog, inputTable); 47 47 48 48 // fill the box with current matrix … … 62 62 } 63 63 64 QtDialog:: BoxQtQuery::~BoxQtQuery()64 QtDialog::RealSpaceMatrixQtQuery::~RealSpaceMatrixQtQuery() 65 65 { 66 66 delete pipe; 67 67 } 68 68 69 bool QtDialog:: BoxQtQuery::handle() {69 bool QtDialog::RealSpaceMatrixQtQuery::handle() { 70 70 return true; 71 71 }
Note:
See TracChangeset
for help on using the changeset viewer.