Changeset f79d65 for src/UIElements/Qt4
- Timestamp:
- Jun 19, 2017, 8:24:16 AM (8 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_SelectAtomByNameAction, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_StructOpt_integration_tests, AutomationFragmentation_failures, Candidate_v1.6.1, ChangeBugEmailaddress, ChemicalSpaceEvaluator, EmpiricalPotential_contain_HomologyGraph_documentation, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, Fix_Verbose_Codepatterns, ForceAnnealing_oldresults, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, GeometryObjects, Gui_displays_atomic_force_velocity, IndependentFragmentGrids_IntegrationTest, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, StoppableMakroAction, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps
- Children:
- 1ba51c
- Parents:
- 2eded3e
- git-author:
- Frederik Heber <heber@…> (03/30/17 21:59:00)
- git-committer:
- Frederik Heber <frederik.heber@…> (06/19/17 08:24:16)
- Location:
- src/UIElements/Qt4/Query
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/Query/QtQuery.hpp
r2eded3e rf79d65 414 414 415 415 public slots: 416 void pageChanged(int); 417 void onUpdateName(int); 416 418 void onUpdateX(double); 417 419 void onUpdateY(double); … … 424 426 QBoxLayout *subLayout; 425 427 QBoxLayout *coordLayout; 426 QLabel *coordLabel;427 428 QDoubleSpinBox *coordInputX; 428 429 QDoubleSpinBox *coordInputY; 429 430 QDoubleSpinBox *coordInputZ; 430 431 Dialog *dialog; 431 }; 432 433 class QtDialog::VectorsQtQuery : public QWidget, public QtQuery<std::vector<Vector> >, public QtQueryList<Vector> { 432 QBoxLayout *nameLayout; 433 QComboBox *nameComboBox; 434 }; 435 436 class QtDialog::VectorsQtQuery : 437 public QWidget, 438 public QtQuery<std::vector<Vector> >, 439 public QtQueryList<Vector> { 434 440 Q_OBJECT 435 441 public: -
src/UIElements/Qt4/Query/QtQueryList.hpp
r2eded3e rf79d65 105 105 class QtQueryList<Vector> : public QtQueryListUntyped { 106 106 public: 107 QtQueryList(Parameter<std::vector<Vector> > &parentParam, QBoxLayout *parent, Dialog *_dialog, std::vector< Vector> &_temp) : QtQueryListUntyped(parent, _dialog), tempRef(_temp)107 QtQueryList(Parameter<std::vector<Vector> > &parentParam, QBoxLayout *parent, Dialog *_dialog, std::vector<std::string> &_temp) : QtQueryListUntyped(parent, _dialog), tempRef(_temp) 108 108 { 109 109 // do we have an STLVectorValidator? … … 137 137 // add item to both 138 138 addElementToListWidget(subParam->getAsString()); 139 tempRef.push_back(subParam->get ());139 tempRef.push_back(subParam->getAsString()); 140 140 onUpdate(); 141 141 } … … 151 151 } 152 152 protected: 153 std::vector< Vector> &tempRef;153 std::vector<std::string> &tempRef; 154 154 Parameter<Vector> *subParam; 155 155 }; -
src/UIElements/Qt4/Query/VectorQtQuery.cpp
r2eded3e rf79d65 37 37 #include <Qt/qcombobox.h> 38 38 #include <Qt/qlabel.h> 39 #include <Qt/qstackedwidget.h> 39 40 40 41 //#include "CodePatterns/MemDebug.hpp" … … 42 43 #include "UIElements/Qt4/Query/QtQuery.hpp" 43 44 45 #include "CodePatterns/toString.hpp" 46 47 #include "Geometry/GeometryRegistry.hpp" 48 #include "Parameters/Specifics/Value_vector.hpp" 44 49 45 50 QtDialog::VectorQtQuery::VectorQtQuery(Parameter<Vector> &_param, const std::string &_title, const std::string &_description, QBoxLayout *_parent,Dialog *_dialog) : … … 48 53 dialog(_dialog) 49 54 { 50 temp = Vector(0, 0, 0); 51 if (param.isSet()) 52 temp = param.get(); 55 Vector temporary(0, 0, 0); 56 temp = "0, 0, 0"; 57 if (param.isSet()) { 58 temporary = param.get(); 59 temp = param.getAsString(); 60 } 53 61 mainLayout= new QHBoxLayout(); 54 62 titleLabel = new QLabel(QString(getTitle().c_str())); 55 63 titleLabel->setToolTip(QString(getDescription().c_str())); 56 64 mainLayout->addWidget(titleLabel); 57 subLayout = new Q VBoxLayout();65 subLayout = new QHBoxLayout(); 58 66 mainLayout->addLayout(subLayout); 59 67 // QComboBox* inputBox = new QComboBox(); 68 69 QWidget *firstPageWidget = new QWidget; 70 QWidget *secondPageWidget = new QWidget; 71 72 QStackedWidget *stackedWidget = new QStackedWidget; 73 stackedWidget->addWidget(firstPageWidget); 74 stackedWidget->addWidget(secondPageWidget); 75 76 QComboBox *pageComboBox = new QComboBox; 77 pageComboBox->addItem(tr("x,y,z")); 78 pageComboBox->addItem(tr("vector name")); 79 connect(pageComboBox, SIGNAL(activated(int)), 80 stackedWidget, SLOT(setCurrentIndex(int))); 81 connect(pageComboBox, SIGNAL(activated(int)), 82 this, SLOT(pageChanged(int))); 83 subLayout->addWidget(pageComboBox); 84 subLayout->addWidget(stackedWidget); 85 86 // first widget with coordinates 60 87 coordLayout = new QHBoxLayout(); 61 subLayout->addLayout(coordLayout);62 coordLabel = new QLabel(QString("x,y,z"));63 coordLayout->addWidget(coordLabel);64 88 coordInputX = new QDoubleSpinBox(); 65 89 coordInputX->setRange(-std::numeric_limits<double>::max(),std::numeric_limits<double>::max()); 66 coordInputX->setValue(temp [0]);90 coordInputX->setValue(temporary[0]); 67 91 // coordInputX->setRange(0,M.at(i,i)); 68 92 coordInputX->setDecimals(3); … … 70 94 coordInputY = new QDoubleSpinBox(); 71 95 coordInputY->setRange(-std::numeric_limits<double>::max(),std::numeric_limits<double>::max()); 72 coordInputY->setValue(temp [1]);96 coordInputY->setValue(temporary[1]); 73 97 // coordInputY->setRange(0,M.at(i,i)); 74 98 coordInputY->setDecimals(3); … … 76 100 coordInputZ = new QDoubleSpinBox(); 77 101 coordInputZ->setRange(-std::numeric_limits<double>::max(),std::numeric_limits<double>::max()); 78 coordInputZ->setValue(temp [2]);102 coordInputZ->setValue(temporary[2]); 79 103 // coordInputZ->setRange(0,M.at(i,i)); 80 104 coordInputZ->setDecimals(3); … … 83 107 connect(coordInputY,SIGNAL(valueChanged(double)),this,SLOT(onUpdateY(double))); 84 108 connect(coordInputZ,SIGNAL(valueChanged(double)),this,SLOT(onUpdateZ(double))); 109 firstPageWidget->setLayout(coordLayout); 110 111 // second widget with string field 112 nameLayout = new QHBoxLayout(); 113 nameComboBox = new QComboBox; 114 GeometryRegistry ® = GeometryRegistry::getInstance(); 115 // nameComboBox->setEditable(true); 116 GeometryRegistry::const_iterator iter; 117 for (iter = reg.getBeginIter(); iter != reg.getEndIter(); iter ++){ 118 GeometryObject *v = iter->second; 119 nameComboBox->addItem(tr(v->getName().c_str())); 120 nameComboBox->setItemData(nameComboBox->count()-1, tr(toString<Vector>(v->getVector()).c_str()), Qt::ToolTipRole); 121 } 122 connect(nameComboBox, SIGNAL(activated(int)), 123 this, SLOT(onUpdateName(int))); 124 nameLayout->addWidget(nameComboBox); 125 secondPageWidget->setLayout(nameLayout); 126 85 127 parent->addLayout(mainLayout); 86 128 } … … 89 131 {} 90 132 133 static void updateVectorString(std::string &_temp, const double newDouble, int component) 134 { 135 //!> Internal converter from string to internal type 136 Vector vec = Value<Vector>::parseAsVector(_temp); 137 vec[component] = newDouble; 138 _temp = Value<Vector>::setFromVector(vec); 139 } 140 141 void QtDialog::VectorQtQuery::pageChanged(int pagenr) { 142 if (pagenr == 1) { 143 // change from x,y,z input 144 onUpdateName(nameComboBox->currentIndex()); 145 dialog->update(); 146 } else if (pagenr == 0) { 147 // change from name input 148 if (GeometryRegistry::getInstance().isPresentByName(temp)) { 149 const GeometryObject * const v = GeometryRegistry::getInstance().getByName(temp); 150 coordInputX->setValue(v->getVector()[0]); 151 coordInputY->setValue(v->getVector()[1]); 152 coordInputZ->setValue(v->getVector()[2]); 153 } else { 154 coordInputX->setValue(0.); 155 coordInputY->setValue(0.); 156 coordInputZ->setValue(0.); 157 } 158 dialog->update(); 159 } else { 160 ASSERT(0, "VectorQtQuery::pageChanged() - unknown page for pageComboBox."); 161 } 162 } 163 164 void QtDialog::VectorQtQuery::onUpdateName(int index) { 165 const QString itemtext = nameComboBox->itemText(index); 166 temp = itemtext.toStdString(); 167 dialog->update(); 168 } 169 91 170 void QtDialog::VectorQtQuery::onUpdateX(double newDouble) { 92 temp[0] = newDouble;171 updateVectorString(temp, newDouble, 0); 93 172 dialog->update(); 94 173 } 95 174 96 175 void QtDialog::VectorQtQuery::onUpdateY(double newDouble) { 97 temp[1] = newDouble;176 updateVectorString(temp, newDouble, 1); 98 177 dialog->update(); 99 178 } 100 179 101 180 void QtDialog::VectorQtQuery::onUpdateZ(double newDouble) { 102 temp[2] = newDouble;181 updateVectorString(temp, newDouble, 2); 103 182 dialog->update(); 104 183 }
Note:
See TracChangeset
for help on using the changeset viewer.