Changeset 4cf323d for src/UIElements/Qt4
- Timestamp:
- Oct 25, 2010, 12:08:39 PM (14 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:
- 379b7e, 9784cf
- Parents:
- 81126a
- Location:
- src/UIElements/Qt4
- Files:
-
- 8 moved
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/QtDialog.cpp
r81126a r4cf323d 7 7 8 8 /* 9 * Q TDialog.cpp9 * QtDialog.cpp 10 10 * 11 11 * Created on: Jan 18, 2010 … … 18 18 #endif 19 19 20 #include "UIElements/Q T4/QTDialog.hpp"20 #include "UIElements/Qt4/QtDialog.hpp" 21 21 22 22 #include <boost/lexical_cast.hpp> … … 54 54 using namespace std; 55 55 56 Q TDialog::QTDialog() :56 QtDialog::QtDialog() : 57 57 QDialog(0) 58 58 { … … 75 75 } 76 76 77 Q TDialog::~QTDialog()78 { 79 } 80 81 bool Q TDialog::display(){77 QtDialog::~QtDialog() 78 { 79 } 80 81 bool QtDialog::display(){ 82 82 // Button state might have changed by some update that 83 83 // was done during query construction. To make sure … … 93 93 } 94 94 95 void Q TDialog::update(){95 void QtDialog::update(){ 96 96 buttons->button(QDialogButtonBox::Ok)->setEnabled(checkAll()); 97 97 } … … 99 99 /************************** Query Infrastructure ************************/ 100 100 101 void Q TDialog::queryEmpty(const char* title, std::string)102 { 103 registerQuery(new EmptyQ TQuery(title,inputLayout,this));104 } 105 106 void Q TDialog::queryBoolean(const char* title,string)107 { 108 registerQuery(new BooleanQ TQuery(title,inputLayout,this));109 } 110 111 void Q TDialog::queryAtom(const char* title, std::string)112 { 113 registerQuery(new AtomQ TQuery(title,inputLayout,this));114 } 115 116 void Q TDialog::queryAtoms(const char* title, std::string)117 { 118 registerQuery(new AtomsQ TQuery(title,inputLayout,this));119 } 120 121 void Q TDialog::queryBox(const char* title, std::string)122 { 123 registerQuery(new BoxQ TQuery(title,inputLayout,this));124 } 125 126 void Q TDialog::queryInt(const char *title,string)127 { 128 registerQuery(new IntQ TQuery(title,inputLayout,this));129 } 130 131 void Q TDialog::queryInts(const char *title,string)132 { 133 registerQuery(new IntsQ TQuery(title,inputLayout,this));134 } 135 136 void Q TDialog::queryDouble(const char* title,string)137 { 138 registerQuery(new DoubleQ TQuery(title,inputLayout,this));139 } 140 141 void Q TDialog::queryDoubles(const char* title,string)142 { 143 registerQuery(new DoublesQ TQuery(title,inputLayout,this));144 } 145 146 void Q TDialog::queryString(const char* title,string)147 { 148 registerQuery(new StringQ TQuery(title,inputLayout,this));149 } 150 151 void Q TDialog::queryStrings(const char* title,string)152 { 153 registerQuery(new StringsQ TQuery(title,inputLayout,this));154 } 155 156 void Q TDialog::queryMolecule(const char *title,string)157 { 158 registerQuery(new MoleculeQ TQuery(title,inputLayout,this));159 } 160 161 void Q TDialog::queryMolecules(const char *title,string)162 { 163 registerQuery(new MoleculesQ TQuery(title,inputLayout,this));164 } 165 166 void Q TDialog::queryVector(const char* title, bool check,string)167 { 168 registerQuery(new VectorQ TQuery(title,check,inputLayout,this));169 } 170 171 void Q TDialog::queryVectors(const char* title, bool check,string)172 { 173 registerQuery(new VectorsQ TQuery(title,check,inputLayout,this));174 } 175 176 void Q TDialog::queryElement(const char* title, std::string)177 { 178 registerQuery(new ElementQ TQuery(title,inputLayout,this));179 } 180 181 void Q TDialog::queryElements(const char* title, std::string)182 { 183 registerQuery(new ElementsQ TQuery(title,inputLayout,this));184 } 185 186 void Q TDialog::queryFile(const char* title, std::string)187 { 188 registerQuery(new FileQ TQuery(title,inputLayout,this));101 void QtDialog::queryEmpty(const char* title, std::string) 102 { 103 registerQuery(new EmptyQtQuery(title,inputLayout,this)); 104 } 105 106 void QtDialog::queryBoolean(const char* title,string) 107 { 108 registerQuery(new BooleanQtQuery(title,inputLayout,this)); 109 } 110 111 void QtDialog::queryAtom(const char* title, std::string) 112 { 113 registerQuery(new AtomQtQuery(title,inputLayout,this)); 114 } 115 116 void QtDialog::queryAtoms(const char* title, std::string) 117 { 118 registerQuery(new AtomsQtQuery(title,inputLayout,this)); 119 } 120 121 void QtDialog::queryBox(const char* title, std::string) 122 { 123 registerQuery(new BoxQtQuery(title,inputLayout,this)); 124 } 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) 162 { 163 registerQuery(new MoleculesQtQuery(title,inputLayout,this)); 164 } 165 166 void QtDialog::queryVector(const char* title, bool check,string) 167 { 168 registerQuery(new VectorQtQuery(title,check,inputLayout,this)); 169 } 170 171 void QtDialog::queryVectors(const char* title, bool check,string) 172 { 173 registerQuery(new VectorsQtQuery(title,check,inputLayout,this)); 174 } 175 176 void QtDialog::queryElement(const char* title, std::string) 177 { 178 registerQuery(new ElementQtQuery(title,inputLayout,this)); 179 } 180 181 void QtDialog::queryElements(const char* title, std::string) 182 { 183 registerQuery(new ElementsQtQuery(title,inputLayout,this)); 184 } 185 186 void QtDialog::queryFile(const char* title, std::string) 187 { 188 registerQuery(new FileQtQuery(title,inputLayout,this)); 189 189 } 190 190 191 191 /************************** Query Objects *******************************/ 192 192 193 Q TDialog::BoxQTQuery::BoxQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :193 QtDialog::BoxQtQuery::BoxQtQuery(string _title,QBoxLayout *_parent,QtDialog *_dialog) : 194 194 Dialog::BoxQuery(_title), 195 195 parent(_parent) … … 205 205 inputTable->setVerticalHeaderLabels(CoordinateList); 206 206 207 pipe = new BoxQ TQueryPipe(tmp,_dialog, inputTable);207 pipe = new BoxQtQueryPipe(tmp,_dialog, inputTable); 208 208 209 209 // fill the box with current matrix … … 223 223 } 224 224 225 Q TDialog::BoxQTQuery::~BoxQTQuery()226 { 227 delete pipe; 228 } 229 230 bool Q TDialog::BoxQTQuery::handle() {231 return true; 232 } 233 234 235 Q TDialog::AtomQTQuery::AtomQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :225 QtDialog::BoxQtQuery::~BoxQtQuery() 226 { 227 delete pipe; 228 } 229 230 bool QtDialog::BoxQtQuery::handle() { 231 return true; 232 } 233 234 235 QtDialog::AtomQtQuery::AtomQtQuery(string _title,QBoxLayout *_parent,QtDialog *_dialog) : 236 236 Dialog::AtomQuery(_title), 237 237 parent(_parent) … … 249 249 thisLayout->addWidget(inputBox); 250 250 251 pipe = new AtomQ TQueryPipe(&tmp,_dialog, inputBox);251 pipe = new AtomQtQueryPipe(&tmp,_dialog, inputBox); 252 252 pipe->update(inputBox->currentIndex()); 253 253 connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int))); 254 254 } 255 255 256 Q TDialog::AtomQTQuery::~AtomQTQuery()257 { 258 delete pipe; 259 } 260 261 bool Q TDialog::AtomQTQuery::handle() {262 return true; 263 } 264 265 266 Q TDialog::AtomsQTQuery::AtomsQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :256 QtDialog::AtomQtQuery::~AtomQtQuery() 257 { 258 delete pipe; 259 } 260 261 bool QtDialog::AtomQtQuery::handle() { 262 return true; 263 } 264 265 266 QtDialog::AtomsQtQuery::AtomsQtQuery(string _title,QBoxLayout *_parent,QtDialog *_dialog) : 267 267 Dialog::AtomsQuery(_title), 268 268 parent(_parent) … … 298 298 thisHLayout->addLayout(thisV2Layout); 299 299 300 pipe = new AtomsQ TQueryPipe(&tmp,_dialog,inputList);300 pipe = new AtomsQtQueryPipe(&tmp,_dialog,inputList); 301 301 connect(inputList,SIGNAL(itemSelectionChanged()),pipe,SLOT(IntegerSelected())); 302 302 connect(AddButton,SIGNAL(Clicked()),pipe,SLOT(add())); … … 304 304 } 305 305 306 Q TDialog::AtomsQTQuery::~AtomsQTQuery()307 { 308 delete pipe; 309 } 310 311 bool Q TDialog::AtomsQTQuery::handle() {312 return true; 313 } 314 315 Q TDialog::IntQTQuery::IntQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :306 QtDialog::AtomsQtQuery::~AtomsQtQuery() 307 { 308 delete pipe; 309 } 310 311 bool QtDialog::AtomsQtQuery::handle() { 312 return true; 313 } 314 315 QtDialog::IntQtQuery::IntQtQuery(string _title,QBoxLayout *_parent,QtDialog *_dialog) : 316 316 Dialog::IntQuery(_title), 317 317 parent(_parent) … … 325 325 thisLayout->addWidget(inputBox); 326 326 327 pipe = new IntQ TQueryPipe(&tmp,_dialog);327 pipe = new IntQtQueryPipe(&tmp,_dialog); 328 328 pipe->update(inputBox->value()); 329 329 connect(inputBox,SIGNAL(valueChanged(int)),pipe,SLOT(update(int))); 330 330 } 331 331 332 Q TDialog::IntQTQuery::~IntQTQuery()333 { 334 delete pipe; 335 } 336 337 bool Q TDialog::IntQTQuery::handle() {338 return true; 339 } 340 341 342 Q TDialog::IntsQTQuery::IntsQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :332 QtDialog::IntQtQuery::~IntQtQuery() 333 { 334 delete pipe; 335 } 336 337 bool QtDialog::IntQtQuery::handle() { 338 return true; 339 } 340 341 342 QtDialog::IntsQtQuery::IntsQtQuery(string _title,QBoxLayout *_parent,QtDialog *_dialog) : 343 343 Dialog::IntsQuery(_title), 344 344 parent(_parent) … … 370 370 thisHLayout->addLayout(thisV2Layout); 371 371 372 pipe = new Q TQueryListPipe<int>(&tmp,_dialog,inputBox,inputList,AddButton,RemoveButton);372 pipe = new QtQueryListPipe<int>(&tmp,_dialog,inputBox,inputList,AddButton,RemoveButton); 373 373 connect(inputBox,SIGNAL(textChanged(const QString&)),pipe,SLOT(IntegerEntered(const QString&))); 374 374 connect(inputList,SIGNAL(itemSelectionChanged()),pipe,SLOT(IntegerSelected())); … … 377 377 } 378 378 379 Q TDialog::IntsQTQuery::~IntsQTQuery()380 { 381 delete pipe; 382 } 383 384 bool Q TDialog::IntsQTQuery::handle() {385 return true; 386 } 387 388 389 Q TDialog::DoubleQTQuery::DoubleQTQuery(string title,QBoxLayout *_parent,QTDialog *_dialog) :379 QtDialog::IntsQtQuery::~IntsQtQuery() 380 { 381 delete pipe; 382 } 383 384 bool QtDialog::IntsQtQuery::handle() { 385 return true; 386 } 387 388 389 QtDialog::DoubleQtQuery::DoubleQtQuery(string title,QBoxLayout *_parent,QtDialog *_dialog) : 390 390 Dialog::DoubleQuery(title), 391 391 parent(_parent) … … 401 401 thisLayout->addWidget(inputBox); 402 402 403 pipe = new DoubleQ TQueryPipe(&tmp,_dialog);403 pipe = new DoubleQtQueryPipe(&tmp,_dialog); 404 404 pipe->update(inputBox->value()); 405 405 connect(inputBox,SIGNAL(valueChanged(double)),pipe,SLOT(update(double))); 406 406 } 407 407 408 Q TDialog::DoubleQTQuery::~DoubleQTQuery()409 { 410 delete pipe; 411 } 412 413 bool Q TDialog::DoubleQTQuery::handle() {414 return true; 415 } 416 417 418 Q TDialog::DoublesQTQuery::DoublesQTQuery(string title,QBoxLayout *_parent,QTDialog *_dialog) :408 QtDialog::DoubleQtQuery::~DoubleQtQuery() 409 { 410 delete pipe; 411 } 412 413 bool QtDialog::DoubleQtQuery::handle() { 414 return true; 415 } 416 417 418 QtDialog::DoublesQtQuery::DoublesQtQuery(string title,QBoxLayout *_parent,QtDialog *_dialog) : 419 419 Dialog::DoublesQuery(title), 420 420 parent(_parent) … … 446 446 thisHLayout->addLayout(thisV2Layout); 447 447 448 pipe = new Q TQueryListPipe<double>(&tmp,_dialog,inputBox,inputList,AddButton,RemoveButton);448 pipe = new QtQueryListPipe<double>(&tmp,_dialog,inputBox,inputList,AddButton,RemoveButton); 449 449 connect(inputBox,SIGNAL(textChanged(const QString&)),pipe,SLOT(IntegerEntered(const QString&))); 450 450 connect(inputList,SIGNAL(itemSelectionChanged()),pipe,SLOT(IntegerSelected())); … … 452 452 connect(RemoveButton,SIGNAL(Clicked()),pipe,SLOT(RemoveRow()));} 453 453 454 Q TDialog::DoublesQTQuery::~DoublesQTQuery()455 { 456 delete pipe; 457 } 458 459 bool Q TDialog::DoublesQTQuery::handle() {460 return true; 461 } 462 463 464 Q TDialog::StringQTQuery::StringQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :454 QtDialog::DoublesQtQuery::~DoublesQtQuery() 455 { 456 delete pipe; 457 } 458 459 bool QtDialog::DoublesQtQuery::handle() { 460 return true; 461 } 462 463 464 QtDialog::StringQtQuery::StringQtQuery(string _title,QBoxLayout *_parent,QtDialog *_dialog) : 465 465 Dialog::StringQuery(_title), 466 466 parent(_parent) … … 473 473 thisLayout->addWidget(inputBox); 474 474 475 pipe = new StringQ TQueryPipe(&tmp,_dialog);475 pipe = new StringQtQueryPipe(&tmp,_dialog); 476 476 pipe->update(inputBox->text()); 477 477 connect(inputBox,SIGNAL(textChanged(const QString&)),pipe,SLOT(update(const QString&))); 478 478 } 479 479 480 Q TDialog::StringQTQuery::~StringQTQuery()480 QtDialog::StringQtQuery::~StringQtQuery() 481 481 { 482 482 delete pipe; … … 484 484 485 485 // All values besides the empty std::string are valid 486 bool Q TDialog::StringQTQuery::handle()486 bool QtDialog::StringQtQuery::handle() 487 487 { 488 488 return tmp!=""; 489 489 } 490 490 491 Q TDialog::StringsQTQuery::StringsQTQuery(string _title,QBoxLayout *_parent,QTDialog *_dialog) :491 QtDialog::StringsQtQuery::StringsQtQuery(string _title,QBoxLayout *_parent,QtDialog *_dialog) : 492 492 Dialog::StringsQuery(_title), 493 493 parent(_parent) … … 519 519 thisHLayout->addLayout(thisV2Layout); 520 520 521 pipe = new Q TQueryListPipe<std::string>(&tmp,_dialog,inputBox,inputList,AddButton,RemoveButton);521 pipe = new QtQueryListPipe<std::string>(&tmp,_dialog,inputBox,inputList,AddButton,RemoveButton); 522 522 connect(inputBox,SIGNAL(textChanged(const QString&)),pipe,SLOT(IntegerEntered(const QString&))); 523 523 connect(inputList,SIGNAL(itemSelectionChanged()),pipe,SLOT(IntegerSelected())); … … 525 525 connect(RemoveButton,SIGNAL(Clicked()),pipe,SLOT(RemoveRow()));} 526 526 527 Q TDialog::StringsQTQuery::~StringsQTQuery()527 QtDialog::StringsQtQuery::~StringsQtQuery() 528 528 { 529 529 delete pipe; … … 531 531 532 532 // All values besides the empty std::string are valid 533 bool Q TDialog::StringsQTQuery::handle()533 bool QtDialog::StringsQtQuery::handle() 534 534 { 535 535 // dissect by "," … … 547 547 } 548 548 549 Q TDialog::MoleculeQTQuery::MoleculeQTQuery(string _title, QBoxLayout *_parent,QTDialog *_dialog) :549 QtDialog::MoleculeQtQuery::MoleculeQtQuery(string _title, QBoxLayout *_parent,QtDialog *_dialog) : 550 550 Dialog::MoleculeQuery(_title), 551 551 parent(_parent) … … 567 567 thisLayout->addWidget(inputBox); 568 568 569 pipe = new MoleculeQ TQueryPipe(&tmp,_dialog,inputBox);569 pipe = new MoleculeQtQueryPipe(&tmp,_dialog,inputBox); 570 570 pipe->update(inputBox->currentIndex()); 571 571 connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int))); 572 572 } 573 573 574 Q TDialog::MoleculeQTQuery::~MoleculeQTQuery()574 QtDialog::MoleculeQtQuery::~MoleculeQtQuery() 575 575 { 576 576 delete pipe; … … 578 578 579 579 // Handling is easy, since the GUI makes it impossible to select invalid values 580 bool Q TDialog::MoleculeQTQuery::handle()581 { 582 return true; 583 } 584 585 Q TDialog::MoleculesQTQuery::MoleculesQTQuery(string _title, QBoxLayout *_parent,QTDialog *_dialog) :580 bool QtDialog::MoleculeQtQuery::handle() 581 { 582 return true; 583 } 584 585 QtDialog::MoleculesQtQuery::MoleculesQtQuery(string _title, QBoxLayout *_parent,QtDialog *_dialog) : 586 586 Dialog::MoleculesQuery(_title), 587 587 parent(_parent) … … 603 603 thisLayout->addWidget(inputBox); 604 604 605 pipe = new MoleculesQ TQueryPipe(&tmp,_dialog,inputBox);605 pipe = new MoleculesQtQueryPipe(&tmp,_dialog,inputBox); 606 606 pipe->update(inputBox->currentIndex()); 607 607 connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int))); 608 608 } 609 609 610 Q TDialog::MoleculesQTQuery::~MoleculesQTQuery()610 QtDialog::MoleculesQtQuery::~MoleculesQtQuery() 611 611 { 612 612 delete pipe; … … 614 614 615 615 // Handling is easy, since the GUI makes it impossible to select invalid values 616 bool Q TDialog::MoleculesQTQuery::handle()617 { 618 return true; 619 } 620 621 Q TDialog::VectorQTQuery::VectorQTQuery(std::string title, bool _check,QBoxLayout *_parent,QTDialog *_dialog) :616 bool QtDialog::MoleculesQtQuery::handle() 617 { 618 return true; 619 } 620 621 QtDialog::VectorQtQuery::VectorQtQuery(std::string title, bool _check,QBoxLayout *_parent,QtDialog *_dialog) : 622 622 Dialog::VectorQuery(title,_check), 623 623 parent(_parent) … … 637 637 coordInput->setDecimals(3); 638 638 coordLayout->addWidget(coordInput); 639 pipe = new VectorQ TQueryPipe(&(tmp),_dialog,inputBox);639 pipe = new VectorQtQueryPipe(&(tmp),_dialog,inputBox); 640 640 //pipe->update(coordInput->value()); 641 641 connect(coordInput,SIGNAL(valueChanged(double)),pipe,SLOT(update(double))); … … 643 643 } 644 644 645 Q TDialog::VectorQTQuery::~VectorQTQuery()646 {} 647 648 bool Q TDialog::VectorQTQuery::handle() {649 return true; 650 } 651 652 653 Q TDialog::VectorsQTQuery::VectorsQTQuery(std::string title, bool _check,QBoxLayout *_parent,QTDialog *_dialog) :645 QtDialog::VectorQtQuery::~VectorQtQuery() 646 {} 647 648 bool QtDialog::VectorQtQuery::handle() { 649 return true; 650 } 651 652 653 QtDialog::VectorsQtQuery::VectorsQtQuery(std::string title, bool _check,QBoxLayout *_parent,QtDialog *_dialog) : 654 654 Dialog::VectorsQuery(title,_check), 655 655 parent(_parent) … … 669 669 coordInput->setDecimals(3); 670 670 coordLayout->addWidget(coordInput); 671 pipe = new VectorsQ TQueryPipe(&(tmp),_dialog,inputBox);671 pipe = new VectorsQtQueryPipe(&(tmp),_dialog,inputBox); 672 672 //pipe->update(coordInput->value()); 673 673 connect(coordInput,SIGNAL(valueChanged(double)),pipe,SLOT(update(double))); … … 675 675 } 676 676 677 Q TDialog::VectorsQTQuery::~VectorsQTQuery()678 {} 679 680 bool Q TDialog::VectorsQTQuery::handle() {681 return true; 682 } 683 684 685 Q TDialog::ElementQTQuery::ElementQTQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog) :677 QtDialog::VectorsQtQuery::~VectorsQtQuery() 678 {} 679 680 bool QtDialog::VectorsQtQuery::handle() { 681 return true; 682 } 683 684 685 QtDialog::ElementQtQuery::ElementQtQuery(std::string _title, QBoxLayout *_parent, QtDialog *_dialog) : 686 686 Dialog::ElementQuery(_title), 687 687 parent(_parent) … … 703 703 thisLayout->addWidget(inputBox); 704 704 705 pipe = new ElementQ TQueryPipe(&tmp,_dialog,inputBox);705 pipe = new ElementQtQueryPipe(&tmp,_dialog,inputBox); 706 706 pipe->update(inputBox->currentIndex()); 707 707 connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int))); 708 708 } 709 709 710 Q TDialog::ElementQTQuery::~ElementQTQuery()711 { 712 delete pipe; 713 } 714 715 bool Q TDialog::ElementQTQuery::handle(){716 return true; 717 } 718 719 720 Q TDialog::ElementsQTQuery::ElementsQTQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog) :710 QtDialog::ElementQtQuery::~ElementQtQuery() 711 { 712 delete pipe; 713 } 714 715 bool QtDialog::ElementQtQuery::handle(){ 716 return true; 717 } 718 719 720 QtDialog::ElementsQtQuery::ElementsQtQuery(std::string _title, QBoxLayout *_parent, QtDialog *_dialog) : 721 721 Dialog::ElementsQuery(_title), 722 722 parent(_parent) … … 738 738 thisLayout->addWidget(inputBox); 739 739 740 pipe = new ElementsQ TQueryPipe(&tmp,_dialog,inputBox);740 pipe = new ElementsQtQueryPipe(&tmp,_dialog,inputBox); 741 741 pipe->update(inputBox->currentIndex()); 742 742 connect(inputBox,SIGNAL(currentIndexChanged(int)),pipe,SLOT(update(int))); 743 743 } 744 744 745 Q TDialog::ElementsQTQuery::~ElementsQTQuery()746 { 747 delete pipe; 748 } 749 750 bool Q TDialog::ElementsQTQuery::handle(){751 return true; 752 } 753 754 Q TDialog::EmptyQTQuery::EmptyQTQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog) :745 QtDialog::ElementsQtQuery::~ElementsQtQuery() 746 { 747 delete pipe; 748 } 749 750 bool QtDialog::ElementsQtQuery::handle(){ 751 return true; 752 } 753 754 QtDialog::EmptyQtQuery::EmptyQtQuery(std::string _title, QBoxLayout *_parent, QtDialog *_dialog) : 755 755 Dialog::EmptyQuery(_title), 756 756 parent(_parent) … … 761 761 thisLayout->addWidget(titleLabel); 762 762 763 pipe = new EmptyQ TQueryPipe(_dialog,titleLabel);764 } 765 766 Q TDialog::EmptyQTQuery::~EmptyQTQuery()767 { 768 delete pipe; 769 } 770 771 bool Q TDialog::EmptyQTQuery::handle(){772 return true; 773 } 774 775 776 Q TDialog::BooleanQTQuery::BooleanQTQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog) :763 pipe = new EmptyQtQueryPipe(_dialog,titleLabel); 764 } 765 766 QtDialog::EmptyQtQuery::~EmptyQtQuery() 767 { 768 delete pipe; 769 } 770 771 bool QtDialog::EmptyQtQuery::handle(){ 772 return true; 773 } 774 775 776 QtDialog::BooleanQtQuery::BooleanQtQuery(std::string _title, QBoxLayout *_parent, QtDialog *_dialog) : 777 777 Dialog::BooleanQuery(_title), 778 778 parent(_parent) … … 787 787 thisLayout->addWidget(booleanComboBox); 788 788 789 pipe = new BooleanQ TQueryPipe(&tmp,_dialog,booleanComboBox);789 pipe = new BooleanQtQueryPipe(&tmp,_dialog,booleanComboBox); 790 790 connect(booleanComboBox, SIGNAL(currentIndexChanged()), pipe, SLOT(update())); 791 791 } 792 792 793 Q TDialog::BooleanQTQuery::~BooleanQTQuery()794 { 795 delete pipe; 796 } 797 798 bool Q TDialog::BooleanQTQuery::handle(){799 return true; 800 } 801 802 803 Q TDialog::FileQTQuery::FileQTQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog) :793 QtDialog::BooleanQtQuery::~BooleanQtQuery() 794 { 795 delete pipe; 796 } 797 798 bool QtDialog::BooleanQtQuery::handle(){ 799 return true; 800 } 801 802 803 QtDialog::FileQtQuery::FileQtQuery(std::string _title, QBoxLayout *_parent, QtDialog *_dialog) : 804 804 Dialog::FileQuery(_title), 805 805 parent(_parent) … … 815 815 filedialogButton = new QPushButton("&Choose", _dialog); 816 816 817 pipe = new FileQ TQueryPipe(&tmp,_dialog,filenameLineEdit,filedialogButton);817 pipe = new FileQtQueryPipe(&tmp,_dialog,filenameLineEdit,filedialogButton); 818 818 819 819 thisLayout = new QHBoxLayout(); … … 826 826 } 827 827 828 Q TDialog::FileQTQuery::~FileQTQuery()829 { 830 delete pipe; 831 } 832 833 bool Q TDialog::FileQTQuery::handle(){828 QtDialog::FileQtQuery::~FileQtQuery() 829 { 830 delete pipe; 831 } 832 833 bool QtDialog::FileQtQuery::handle(){ 834 834 return true; 835 835 } … … 838 838 839 839 840 template<typename T> Q TQueryListPipe<T>::QTQueryListPipe(std::vector<T> *_content, QTDialog *_dialog, QLineEdit *_inputBox, QListWidget *_inputList, QPushButton *_AddButton, QPushButton *_RemoveButton) :840 template<typename T> QtQueryListPipe<T>::QtQueryListPipe(std::vector<T> *_content, QtDialog *_dialog, QLineEdit *_inputBox, QListWidget *_inputList, QPushButton *_AddButton, QPushButton *_RemoveButton) : 841 841 content(_content), 842 842 dialog(_dialog), … … 847 847 {} 848 848 849 template<typename T> Q TQueryListPipe<T>::~QTQueryListPipe()850 {} 851 852 template<typename T> void Q TQueryListPipe<T>::IntegerEntered(const QString&)849 template<typename T> QtQueryListPipe<T>::~QtQueryListPipe() 850 {} 851 852 template<typename T> void QtQueryListPipe<T>::IntegerEntered(const QString&) 853 853 { 854 854 AddButton->setEnabled(true); 855 855 } 856 856 857 template<typename T> void Q TQueryListPipe<T>::IntegerSelected()857 template<typename T> void QtQueryListPipe<T>::IntegerSelected() 858 858 { 859 859 if (inputList->selectedItems().empty()) … … 863 863 } 864 864 865 template<typename T> void Q TQueryListPipe<T>::AddInteger() {865 template<typename T> void QtQueryListPipe<T>::AddInteger() { 866 866 // type-check 867 867 std::string text = inputBox->text().toStdString(); … … 877 877 } 878 878 879 template<typename T> void Q TQueryListPipe<T>::AddValue(T item) {879 template<typename T> void QtQueryListPipe<T>::AddValue(T item) { 880 880 content->push_back(item); 881 881 … … 883 883 } 884 884 885 template<typename T> void Q TQueryListPipe<T>::RemoveInteger() {885 template<typename T> void QtQueryListPipe<T>::RemoveInteger() { 886 886 QList<QListWidgetItem *> items = inputList->selectedItems(); 887 887 for (QList<QListWidgetItem *>::iterator iter = items.begin(); !items.empty(); iter = items.begin()) { … … 889 889 inputList->setCurrentItem(*iter); 890 890 // remove 891 Q TQueryListPipe<T>::RemoteRow(inputList->currentRow()); // template parameters needs to be known, such that compiler knows which to call891 QtQueryListPipe<T>::RemoteRow(inputList->currentRow()); // template parameters needs to be known, such that compiler knows which to call 892 892 inputList->removeItemWidget(*iter); 893 893 } 894 894 } 895 895 896 template<typename T> void Q TQueryListPipe<T>::RemoveRow(int row) {896 template<typename T> void QtQueryListPipe<T>::RemoveRow(int row) { 897 897 int counter = 0; 898 898 typename std::vector<T>::iterator iter = content->begin(); … … 905 905 906 906 907 StringQ TQueryPipe::StringQTQueryPipe(string *_content, QTDialog *_dialog) :907 StringQtQueryPipe::StringQtQueryPipe(string *_content, QtDialog *_dialog) : 908 908 content(_content), 909 909 dialog(_dialog) 910 910 {} 911 911 912 StringQ TQueryPipe::~StringQTQueryPipe()913 {} 914 915 void StringQ TQueryPipe::update(const QString& newText) {912 StringQtQueryPipe::~StringQtQueryPipe() 913 {} 914 915 void StringQtQueryPipe::update(const QString& newText) { 916 916 content->assign(newText.toStdString()); 917 917 dialog->update(); 918 918 } 919 919 920 IntQ TQueryPipe::IntQTQueryPipe(int *_content, QTDialog *_dialog) :920 IntQtQueryPipe::IntQtQueryPipe(int *_content, QtDialog *_dialog) : 921 921 content(_content), 922 922 dialog(_dialog) 923 923 {} 924 924 925 IntQ TQueryPipe::~IntQTQueryPipe()926 {} 927 928 void IntQ TQueryPipe::update(int newInt) {925 IntQtQueryPipe::~IntQtQueryPipe() 926 {} 927 928 void IntQtQueryPipe::update(int newInt) { 929 929 (*content) = newInt; 930 930 dialog->update(); 931 931 } 932 932 933 DoubleQ TQueryPipe::DoubleQTQueryPipe(double *_content, QTDialog *_dialog) :933 DoubleQtQueryPipe::DoubleQtQueryPipe(double *_content, QtDialog *_dialog) : 934 934 content(_content), 935 935 dialog(_dialog) 936 936 {} 937 937 938 DoubleQ TQueryPipe::~DoubleQTQueryPipe()939 {} 940 941 void DoubleQ TQueryPipe::update(double newDbl) {938 DoubleQtQueryPipe::~DoubleQtQueryPipe() 939 {} 940 941 void DoubleQtQueryPipe::update(double newDbl) { 942 942 (*content) = newDbl; 943 943 dialog->update(); 944 944 } 945 945 946 VectorQ TQueryPipe::VectorQTQueryPipe(Vector *_content, QTDialog *_dialog, QComboBox *_theBox) :946 VectorQtQueryPipe::VectorQtQueryPipe(Vector *_content, QtDialog *_dialog, QComboBox *_theBox) : 947 947 content(_content), 948 948 dialog(_dialog), … … 950 950 {} 951 951 952 VectorQ TQueryPipe::~VectorQTQueryPipe()953 {} 954 955 void VectorQ TQueryPipe::update() {956 dialog->update(); 957 } 958 959 VectorsQ TQueryPipe::VectorsQTQueryPipe(std::vector<Vector> *_content, QTDialog *_dialog, QComboBox *_theBox) :952 VectorQtQueryPipe::~VectorQtQueryPipe() 953 {} 954 955 void VectorQtQueryPipe::update() { 956 dialog->update(); 957 } 958 959 VectorsQtQueryPipe::VectorsQtQueryPipe(std::vector<Vector> *_content, QtDialog *_dialog, QComboBox *_theBox) : 960 960 content(_content), 961 961 dialog(_dialog), … … 963 963 {} 964 964 965 VectorsQ TQueryPipe::~VectorsQTQueryPipe()966 {} 967 968 void VectorsQ TQueryPipe::update() {969 dialog->update(); 970 } 971 972 BoxQ TQueryPipe::BoxQTQueryPipe(Box &_content, QTDialog *_dialog, QTableWidget *_inputTable) :965 VectorsQtQueryPipe::~VectorsQtQueryPipe() 966 {} 967 968 void VectorsQtQueryPipe::update() { 969 dialog->update(); 970 } 971 972 BoxQtQueryPipe::BoxQtQueryPipe(Box &_content, QtDialog *_dialog, QTableWidget *_inputTable) : 973 973 content(_content), 974 974 dialog(_dialog), … … 979 979 } 980 980 981 BoxQ TQueryPipe::~BoxQTQueryPipe()981 BoxQtQueryPipe::~BoxQtQueryPipe() 982 982 { 983 983 delete tmpM; 984 984 } 985 985 986 void BoxQ TQueryPipe::update(int row, int column)986 void BoxQtQueryPipe::update(int row, int column) 987 987 { 988 988 tmpM->at(row, column) = inputTable->item(row, column)->text().toDouble(); … … 992 992 993 993 994 AtomQ TQueryPipe::AtomQTQueryPipe(atom **_content, QTDialog *_dialog, QComboBox *_theBox) :994 AtomQtQueryPipe::AtomQtQueryPipe(atom **_content, QtDialog *_dialog, QComboBox *_theBox) : 995 995 content(_content), 996 996 dialog(_dialog), … … 998 998 {} 999 999 1000 AtomQ TQueryPipe::~AtomQTQueryPipe()1001 {} 1002 1003 void AtomQ TQueryPipe::update(int newIndex) {1000 AtomQtQueryPipe::~AtomQtQueryPipe() 1001 {} 1002 1003 void AtomQtQueryPipe::update(int newIndex) { 1004 1004 QVariant data = theBox->itemData(newIndex); 1005 1005 int idx = data.toInt(); … … 1009 1009 1010 1010 1011 AtomsQ TQueryPipe::AtomsQTQueryPipe(std::vector<atom *>*_content, QTDialog *_dialog, QListWidget *_theList) :1011 AtomsQtQueryPipe::AtomsQtQueryPipe(std::vector<atom *>*_content, QtDialog *_dialog, QListWidget *_theList) : 1012 1012 content(_content), 1013 1013 dialog(_dialog), … … 1015 1015 {} 1016 1016 1017 AtomsQ TQueryPipe::~AtomsQTQueryPipe()1018 {} 1019 1020 void AtomsQ TQueryPipe::update() {1017 AtomsQtQueryPipe::~AtomsQtQueryPipe() 1018 {} 1019 1020 void AtomsQtQueryPipe::update() { 1021 1021 // clear target and put all atoms therein 1022 1022 (*content).clear(); … … 1026 1026 } 1027 1027 1028 void AtomsQ TQueryPipe::add() {1028 void AtomsQtQueryPipe::add() { 1029 1029 QList<QListWidgetItem *> items = theList->selectedItems(); 1030 1030 for (QList<QListWidgetItem *>::iterator iter = items.begin();iter != items.end();++iter) { … … 1041 1041 } 1042 1042 1043 void AtomsQ TQueryPipe::remove() {1043 void AtomsQtQueryPipe::remove() { 1044 1044 QList<QListWidgetItem *> items = theList->selectedItems(); 1045 1045 for (QList<QListWidgetItem *>::iterator iter = items.begin();iter != items.end();++iter) { … … 1054 1054 1055 1055 1056 MoleculeQ TQueryPipe::MoleculeQTQueryPipe(molecule **_content, QTDialog *_dialog, QComboBox *_theBox) :1056 MoleculeQtQueryPipe::MoleculeQtQueryPipe(molecule **_content, QtDialog *_dialog, QComboBox *_theBox) : 1057 1057 content(_content), 1058 1058 dialog(_dialog), … … 1060 1060 {} 1061 1061 1062 MoleculeQ TQueryPipe::~MoleculeQTQueryPipe()1063 {} 1064 1065 void MoleculeQ TQueryPipe::update(int newIndex) {1062 MoleculeQtQueryPipe::~MoleculeQtQueryPipe() 1063 {} 1064 1065 void MoleculeQtQueryPipe::update(int newIndex) { 1066 1066 QVariant data = theBox->itemData(newIndex); 1067 1067 int idx = data.toInt(); … … 1071 1071 1072 1072 1073 MoleculesQ TQueryPipe::MoleculesQTQueryPipe(std::vector<molecule *>*_content, QTDialog *_dialog, QComboBox *_theBox) :1073 MoleculesQtQueryPipe::MoleculesQtQueryPipe(std::vector<molecule *>*_content, QtDialog *_dialog, QComboBox *_theBox) : 1074 1074 content(_content), 1075 1075 dialog(_dialog), … … 1077 1077 {} 1078 1078 1079 MoleculesQ TQueryPipe::~MoleculesQTQueryPipe()1080 {} 1081 1082 void MoleculesQ TQueryPipe::update(int newIndex) {1079 MoleculesQtQueryPipe::~MoleculesQtQueryPipe() 1080 {} 1081 1082 void MoleculesQtQueryPipe::update(int newIndex) { 1083 1083 QVariant data = theBox->itemData(newIndex); 1084 1084 int idx = data.toInt(); … … 1089 1089 } 1090 1090 1091 ElementQ TQueryPipe::ElementQTQueryPipe(const element **_content, QTDialog *_dialog, QComboBox *_theBox) :1091 ElementQtQueryPipe::ElementQtQueryPipe(const element **_content, QtDialog *_dialog, QComboBox *_theBox) : 1092 1092 content(_content), 1093 1093 dialog(_dialog), … … 1095 1095 {} 1096 1096 1097 ElementQ TQueryPipe::~ElementQTQueryPipe()1098 {} 1099 1100 void ElementQ TQueryPipe::update(int newIndex) {1097 ElementQtQueryPipe::~ElementQtQueryPipe() 1098 {} 1099 1100 void ElementQtQueryPipe::update(int newIndex) { 1101 1101 QVariant data = theBox->itemData(newIndex); 1102 1102 int idx = data.toInt(); … … 1105 1105 } 1106 1106 1107 ElementsQ TQueryPipe::ElementsQTQueryPipe(std::vector<const element *>*_content, QTDialog *_dialog, QComboBox *_theBox) :1107 ElementsQtQueryPipe::ElementsQtQueryPipe(std::vector<const element *>*_content, QtDialog *_dialog, QComboBox *_theBox) : 1108 1108 content(_content), 1109 1109 dialog(_dialog), … … 1111 1111 {} 1112 1112 1113 ElementsQ TQueryPipe::~ElementsQTQueryPipe()1114 {} 1115 1116 void ElementsQ TQueryPipe::update(int newIndex) {1113 ElementsQtQueryPipe::~ElementsQtQueryPipe() 1114 {} 1115 1116 void ElementsQtQueryPipe::update(int newIndex) { 1117 1117 QVariant data = theBox->itemData(newIndex); 1118 1118 int idx = data.toInt(); … … 1123 1123 } 1124 1124 1125 EmptyQ TQueryPipe::EmptyQTQueryPipe(QTDialog *_dialog, QLabel *_textLabel) :1125 EmptyQtQueryPipe::EmptyQtQueryPipe(QtDialog *_dialog, QLabel *_textLabel) : 1126 1126 dialog(_dialog), 1127 1127 textLabel(_textLabel) 1128 1128 {} 1129 1129 1130 EmptyQ TQueryPipe::~EmptyQTQueryPipe()1131 {} 1132 1133 void EmptyQ TQueryPipe::update() {1134 dialog->update(); 1135 } 1136 1137 BooleanQ TQueryPipe::BooleanQTQueryPipe(const bool *_content, QTDialog *_dialog, QComboBox *_booleanComboBox) :1130 EmptyQtQueryPipe::~EmptyQtQueryPipe() 1131 {} 1132 1133 void EmptyQtQueryPipe::update() { 1134 dialog->update(); 1135 } 1136 1137 BooleanQtQueryPipe::BooleanQtQueryPipe(const bool *_content, QtDialog *_dialog, QComboBox *_booleanComboBox) : 1138 1138 content(_content), 1139 1139 dialog(_dialog), … … 1141 1141 {} 1142 1142 1143 BooleanQ TQueryPipe::~BooleanQTQueryPipe()1144 {} 1145 1146 void BooleanQ TQueryPipe::update() {1147 dialog->update(); 1148 } 1149 1150 FileQ TQueryPipe::FileQTQueryPipe(boost::filesystem::path *_content, QTDialog *_dialog, QLineEdit *_filenameLineEdit, QPushButton *_filedialogButton) :1143 BooleanQtQueryPipe::~BooleanQtQueryPipe() 1144 {} 1145 1146 void BooleanQtQueryPipe::update() { 1147 dialog->update(); 1148 } 1149 1150 FileQtQueryPipe::FileQtQueryPipe(boost::filesystem::path *_content, QtDialog *_dialog, QLineEdit *_filenameLineEdit, QPushButton *_filedialogButton) : 1151 1151 content(_content), 1152 1152 dialog(_dialog), … … 1157 1157 } 1158 1158 1159 FileQ TQueryPipe::~FileQTQueryPipe()1159 FileQtQueryPipe::~FileQtQueryPipe() 1160 1160 { 1161 1161 if (theFileDialog != NULL) … … 1163 1163 } 1164 1164 1165 void FileQ TQueryPipe::update() {1165 void FileQtQueryPipe::update() { 1166 1166 QStringList ListOfFilenames = theFileDialog->selectedFiles(); 1167 1167 std::cout << "Selected File is " << ListOfFilenames.at(0).toStdString() << std::endl; … … 1171 1171 } 1172 1172 1173 void FileQ TQueryPipe::showFileDialog() {1173 void FileQtQueryPipe::showFileDialog() { 1174 1174 filedialogButton->setFlat(true); 1175 1175 if (theFileDialog == NULL) { -
src/UIElements/Qt4/QtDialog.hpp
r81126a r4cf323d 1 1 /* 2 * Q TDialog.hpp2 * QtDialog.hpp 3 3 * 4 4 * Created on: Jan 18, 2010 … … 32 32 33 33 // Forward declarations for plumbing 34 template<typename T> class Q TQueryListPipe;35 class BooleanQ TQueryPipe;36 class BoxQ TQueryPipe;37 class StringQ TQueryPipe;38 class StringsQ TQueryPipe;39 class IntQ TQueryPipe;40 class DoubleQ TQueryPipe;41 class DoublesQ TQueryPipe;42 class AtomQ TQueryPipe;43 class AtomsQ TQueryPipe;44 class MoleculeQ TQueryPipe;45 class MoleculesQ TQueryPipe;46 class EmptyQ TQueryPipe;47 class ElementQ TQueryPipe;48 class ElementsQ TQueryPipe;49 class VectorQ TQueryPipe;50 class VectorsQ TQueryPipe;51 class FileQ TQueryPipe;52 53 class Q TDialog : public QDialog, public Dialog34 template<typename T> class QtQueryListPipe; 35 class BooleanQtQueryPipe; 36 class BoxQtQueryPipe; 37 class StringQtQueryPipe; 38 class StringsQtQueryPipe; 39 class IntQtQueryPipe; 40 class DoubleQtQueryPipe; 41 class DoublesQtQueryPipe; 42 class AtomQtQueryPipe; 43 class AtomsQtQueryPipe; 44 class MoleculeQtQueryPipe; 45 class MoleculesQtQueryPipe; 46 class EmptyQtQueryPipe; 47 class ElementQtQueryPipe; 48 class ElementsQtQueryPipe; 49 class VectorQtQueryPipe; 50 class VectorsQtQueryPipe; 51 class FileQtQueryPipe; 52 53 class QtDialog : public QDialog, public Dialog 54 54 { 55 55 Q_OBJECT 56 56 public: 57 Q TDialog();58 virtual ~Q TDialog();57 QtDialog(); 58 virtual ~QtDialog(); 59 59 60 60 virtual void queryEmpty(const char*, std::string); … … 82 82 83 83 protected: 84 class IntQ TQuery : public Dialog::IntQuery {85 public: 86 IntQ TQuery(std::string _title,QBoxLayout *_parent,QTDialog *_dialog);87 virtual ~IntQ TQuery();84 class IntQtQuery : public Dialog::IntQuery { 85 public: 86 IntQtQuery(std::string _title,QBoxLayout *_parent,QtDialog *_dialog); 87 virtual ~IntQtQuery(); 88 88 virtual bool handle(); 89 89 private: … … 93 93 QSpinBox *inputBox; 94 94 95 IntQ TQueryPipe *pipe;96 }; 97 98 class IntsQ TQuery : public Dialog::IntsQuery {99 public: 100 IntsQ TQuery(std::string _title,QBoxLayout *_parent,QTDialog *_dialog);101 virtual ~IntsQ TQuery();95 IntQtQueryPipe *pipe; 96 }; 97 98 class IntsQtQuery : public Dialog::IntsQuery { 99 public: 100 IntsQtQuery(std::string _title,QBoxLayout *_parent,QtDialog *_dialog); 101 virtual ~IntsQtQuery(); 102 102 virtual bool handle(); 103 103 void IntegerEntered(const QString&); … … 110 110 QLabel *titleLabel; 111 111 112 Q TQueryListPipe<int> *pipe;113 }; 114 115 class DoubleQ TQuery : public Dialog::DoubleQuery {116 public: 117 DoubleQ TQuery(std::string title,QBoxLayout *_parent,QTDialog *_dialog);118 virtual ~DoubleQ TQuery();112 QtQueryListPipe<int> *pipe; 113 }; 114 115 class DoubleQtQuery : public Dialog::DoubleQuery { 116 public: 117 DoubleQtQuery(std::string title,QBoxLayout *_parent,QtDialog *_dialog); 118 virtual ~DoubleQtQuery(); 119 119 virtual bool handle(); 120 120 private: … … 124 124 QDoubleSpinBox *inputBox; 125 125 126 DoubleQ TQueryPipe *pipe;127 }; 128 129 class DoublesQ TQuery : public Dialog::DoublesQuery {130 public: 131 DoublesQ TQuery(std::string title,QBoxLayout *_parent,QTDialog *_dialog);132 virtual ~DoublesQ TQuery();126 DoubleQtQueryPipe *pipe; 127 }; 128 129 class DoublesQtQuery : public Dialog::DoublesQuery { 130 public: 131 DoublesQtQuery(std::string title,QBoxLayout *_parent,QtDialog *_dialog); 132 virtual ~DoublesQtQuery(); 133 133 virtual bool handle(); 134 134 private: … … 138 138 QDoubleSpinBox *inputBox; 139 139 140 Q TQueryListPipe<double> *pipe;141 }; 142 143 class StringQ TQuery : public Dialog::StringQuery {144 public: 145 StringQ TQuery(std::string _title, QBoxLayout *_parent,QTDialog *_dialog);146 virtual ~StringQ TQuery();140 QtQueryListPipe<double> *pipe; 141 }; 142 143 class StringQtQuery : public Dialog::StringQuery { 144 public: 145 StringQtQuery(std::string _title, QBoxLayout *_parent,QtDialog *_dialog); 146 virtual ~StringQtQuery(); 147 147 virtual bool handle(); 148 148 private: … … 152 152 QLineEdit *inputBox; 153 153 154 StringQ TQueryPipe *pipe;155 }; 156 157 class StringsQ TQuery : public Dialog::StringsQuery {158 public: 159 StringsQ TQuery(std::string _title, QBoxLayout *_parent,QTDialog *_dialog);160 virtual ~StringsQ TQuery();154 StringQtQueryPipe *pipe; 155 }; 156 157 class StringsQtQuery : public Dialog::StringsQuery { 158 public: 159 StringsQtQuery(std::string _title, QBoxLayout *_parent,QtDialog *_dialog); 160 virtual ~StringsQtQuery(); 161 161 virtual bool handle(); 162 162 private: … … 166 166 QLineEdit *inputBox; 167 167 168 Q TQueryListPipe<std::string> *pipe;169 }; 170 171 class BoxQ TQuery : public Dialog::BoxQuery {172 public: 173 BoxQ TQuery(std::string _title, QBoxLayout *_parent,QTDialog *_dialog);174 virtual ~BoxQ TQuery();168 QtQueryListPipe<std::string> *pipe; 169 }; 170 171 class BoxQtQuery : public Dialog::BoxQuery { 172 public: 173 BoxQtQuery(std::string _title, QBoxLayout *_parent,QtDialog *_dialog); 174 virtual ~BoxQtQuery(); 175 175 virtual bool handle(); 176 176 private: … … 180 180 QTableWidget *inputTable; 181 181 182 BoxQ TQueryPipe *pipe;183 }; 184 185 class AtomQ TQuery : public Dialog::AtomQuery {186 public: 187 AtomQ TQuery(std::string _title, QBoxLayout *_parent,QTDialog *_dialog);188 virtual ~AtomQ TQuery();182 BoxQtQueryPipe *pipe; 183 }; 184 185 class AtomQtQuery : public Dialog::AtomQuery { 186 public: 187 AtomQtQuery(std::string _title, QBoxLayout *_parent,QtDialog *_dialog); 188 virtual ~AtomQtQuery(); 189 189 virtual bool handle(); 190 190 private: … … 194 194 QComboBox *inputBox; 195 195 196 AtomQ TQueryPipe *pipe;197 }; 198 199 class AtomsQ TQuery : public Dialog::AtomsQuery {200 public: 201 AtomsQ TQuery(std::string _title, QBoxLayout *_parent,QTDialog *_dialog);202 virtual ~AtomsQ TQuery();196 AtomQtQueryPipe *pipe; 197 }; 198 199 class AtomsQtQuery : public Dialog::AtomsQuery { 200 public: 201 AtomsQtQuery(std::string _title, QBoxLayout *_parent,QtDialog *_dialog); 202 virtual ~AtomsQtQuery(); 203 203 virtual bool handle(); 204 204 private: … … 208 208 QComboBox *inputBox; 209 209 210 AtomsQ TQueryPipe *pipe;211 }; 212 213 class MoleculeQ TQuery : public Dialog::MoleculeQuery {214 public: 215 MoleculeQ TQuery(std::string _title, QBoxLayout *_parent,QTDialog *_dialog);216 virtual ~MoleculeQ TQuery();210 AtomsQtQueryPipe *pipe; 211 }; 212 213 class MoleculeQtQuery : public Dialog::MoleculeQuery { 214 public: 215 MoleculeQtQuery(std::string _title, QBoxLayout *_parent,QtDialog *_dialog); 216 virtual ~MoleculeQtQuery(); 217 217 virtual bool handle(); 218 218 private: … … 222 222 QComboBox *inputBox; 223 223 224 MoleculeQ TQueryPipe *pipe;225 }; 226 227 class MoleculesQ TQuery : public Dialog::MoleculesQuery {228 public: 229 MoleculesQ TQuery(std::string _title, QBoxLayout *_parent,QTDialog *_dialog);230 virtual ~MoleculesQ TQuery();224 MoleculeQtQueryPipe *pipe; 225 }; 226 227 class MoleculesQtQuery : public Dialog::MoleculesQuery { 228 public: 229 MoleculesQtQuery(std::string _title, QBoxLayout *_parent,QtDialog *_dialog); 230 virtual ~MoleculesQtQuery(); 231 231 virtual bool handle(); 232 232 private: … … 236 236 QComboBox *inputBox; 237 237 238 MoleculesQ TQueryPipe *pipe;239 }; 240 241 class VectorQ TQuery : public Dialog::VectorQuery {242 public: 243 VectorQ TQuery(std::string title,bool _check,QBoxLayout *,QTDialog *);244 virtual ~VectorQ TQuery();238 MoleculesQtQueryPipe *pipe; 239 }; 240 241 class VectorQtQuery : public Dialog::VectorQuery { 242 public: 243 VectorQtQuery(std::string title,bool _check,QBoxLayout *,QtDialog *); 244 virtual ~VectorQtQuery(); 245 245 virtual bool handle(); 246 246 private: … … 253 253 QDoubleSpinBox *coordInput; 254 254 255 VectorQ TQueryPipe *pipe;256 }; 257 258 class VectorsQ TQuery : public Dialog::VectorsQuery {259 public: 260 VectorsQ TQuery(std::string title,bool _check,QBoxLayout *,QTDialog *);261 virtual ~VectorsQ TQuery();255 VectorQtQueryPipe *pipe; 256 }; 257 258 class VectorsQtQuery : public Dialog::VectorsQuery { 259 public: 260 VectorsQtQuery(std::string title,bool _check,QBoxLayout *,QtDialog *); 261 virtual ~VectorsQtQuery(); 262 262 virtual bool handle(); 263 263 private: … … 270 270 QDoubleSpinBox *coordInput; 271 271 272 VectorsQ TQueryPipe *pipe;273 }; 274 275 class EmptyQ TQuery : public Dialog::EmptyQuery {276 public: 277 EmptyQ TQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog);278 virtual ~EmptyQ TQuery();279 virtual bool handle(); 280 private: 281 QBoxLayout *parent; 282 QBoxLayout *thisLayout; 283 QLabel *titleLabel; 284 285 EmptyQ TQueryPipe *pipe;286 }; 287 288 class BooleanQ TQuery : public Dialog::BooleanQuery {289 public: 290 BooleanQ TQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog);291 virtual ~BooleanQ TQuery();272 VectorsQtQueryPipe *pipe; 273 }; 274 275 class EmptyQtQuery : public Dialog::EmptyQuery { 276 public: 277 EmptyQtQuery(std::string _title, QBoxLayout *_parent, QtDialog *_dialog); 278 virtual ~EmptyQtQuery(); 279 virtual bool handle(); 280 private: 281 QBoxLayout *parent; 282 QBoxLayout *thisLayout; 283 QLabel *titleLabel; 284 285 EmptyQtQueryPipe *pipe; 286 }; 287 288 class BooleanQtQuery : public Dialog::BooleanQuery { 289 public: 290 BooleanQtQuery(std::string _title, QBoxLayout *_parent, QtDialog *_dialog); 291 virtual ~BooleanQtQuery(); 292 292 virtual bool handle(); 293 293 private: … … 297 297 QComboBox *booleanComboBox; 298 298 299 BooleanQ TQueryPipe *pipe;300 }; 301 302 class ElementQ TQuery : public Dialog::ElementQuery {303 public: 304 ElementQ TQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog);305 virtual ~ElementQ TQuery();299 BooleanQtQueryPipe *pipe; 300 }; 301 302 class ElementQtQuery : public Dialog::ElementQuery { 303 public: 304 ElementQtQuery(std::string _title, QBoxLayout *_parent, QtDialog *_dialog); 305 virtual ~ElementQtQuery(); 306 306 virtual bool handle(); 307 307 private: … … 311 311 QComboBox *inputBox; 312 312 313 ElementQ TQueryPipe *pipe;314 }; 315 316 class ElementsQ TQuery : public Dialog::ElementsQuery {317 public: 318 ElementsQ TQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog);319 virtual ~ElementsQ TQuery();313 ElementQtQueryPipe *pipe; 314 }; 315 316 class ElementsQtQuery : public Dialog::ElementsQuery { 317 public: 318 ElementsQtQuery(std::string _title, QBoxLayout *_parent, QtDialog *_dialog); 319 virtual ~ElementsQtQuery(); 320 320 virtual bool handle(); 321 321 private: … … 325 325 QComboBox *inputBox; 326 326 327 ElementsQ TQueryPipe *pipe;328 }; 329 330 class FileQ TQuery : public Dialog::FileQuery {331 public: 332 FileQ TQuery(std::string _title, QBoxLayout *_parent, QTDialog *_dialog);333 virtual ~FileQ TQuery();327 ElementsQtQueryPipe *pipe; 328 }; 329 330 class FileQtQuery : public Dialog::FileQuery { 331 public: 332 FileQtQuery(std::string _title, QBoxLayout *_parent, QtDialog *_dialog); 333 virtual ~FileQtQuery(); 334 334 virtual bool handle(); 335 335 private: … … 340 340 QPushButton *filedialogButton; 341 341 342 FileQ TQueryPipe *pipe;342 FileQtQueryPipe *pipe; 343 343 }; 344 344 … … 355 355 356 356 357 template<typename T> class Q TQueryListPipe : public QWidget {357 template<typename T> class QtQueryListPipe : public QWidget { 358 358 public: 359 Q TQueryListPipe(std::vector<T> *_content, QTDialog *_dialog, QLineEdit *_inputBox, QListWidget *_inputList, QPushButton *_AddButton, QPushButton *_RemoveButton);360 virtual ~Q TQueryListPipe();359 QtQueryListPipe(std::vector<T> *_content, QtDialog *_dialog, QLineEdit *_inputBox, QListWidget *_inputList, QPushButton *_AddButton, QPushButton *_RemoveButton); 360 virtual ~QtQueryListPipe(); 361 361 void AddInteger(); 362 362 void RemoveInteger(); … … 369 369 370 370 std::vector<T> *content; 371 Q TDialog *dialog;371 QtDialog *dialog; 372 372 QLineEdit *inputBox; 373 373 QListWidget *inputList; … … 377 377 378 378 379 class StringQ TQueryPipe : public QWidget {380 Q_OBJECT 381 public: 382 StringQ TQueryPipe(std::string *_content, QTDialog *_dialog);383 virtual ~StringQ TQueryPipe();379 class StringQtQueryPipe : public QWidget { 380 Q_OBJECT 381 public: 382 StringQtQueryPipe(std::string *_content, QtDialog *_dialog); 383 virtual ~StringQtQueryPipe(); 384 384 385 385 public slots: … … 388 388 private: 389 389 std::string *content; 390 Q TDialog *dialog;391 392 }; 393 394 class IntQ TQueryPipe : public QWidget {395 Q_OBJECT 396 public: 397 IntQ TQueryPipe(int *_content, QTDialog *_dialog);398 virtual ~IntQ TQueryPipe();390 QtDialog *dialog; 391 392 }; 393 394 class IntQtQueryPipe : public QWidget { 395 Q_OBJECT 396 public: 397 IntQtQueryPipe(int *_content, QtDialog *_dialog); 398 virtual ~IntQtQueryPipe(); 399 399 400 400 public slots: … … 403 403 private: 404 404 int *content; 405 Q TDialog *dialog;406 407 }; 408 409 410 class DoubleQ TQueryPipe : public QWidget {411 Q_OBJECT 412 public: 413 DoubleQ TQueryPipe(double *_content, QTDialog *_dialog);414 virtual ~DoubleQ TQueryPipe();405 QtDialog *dialog; 406 407 }; 408 409 410 class DoubleQtQueryPipe : public QWidget { 411 Q_OBJECT 412 public: 413 DoubleQtQueryPipe(double *_content, QtDialog *_dialog); 414 virtual ~DoubleQtQueryPipe(); 415 415 416 416 public slots: … … 419 419 private: 420 420 double *content; 421 Q TDialog *dialog;422 423 }; 424 425 class BoxQ TQueryPipe : public QWidget {426 Q_OBJECT 427 public: 428 BoxQ TQueryPipe(Box &_content, QTDialog *_dialog, QTableWidget *_inputTable);429 virtual ~BoxQ TQueryPipe();421 QtDialog *dialog; 422 423 }; 424 425 class BoxQtQueryPipe : public QWidget { 426 Q_OBJECT 427 public: 428 BoxQtQueryPipe(Box &_content, QtDialog *_dialog, QTableWidget *_inputTable); 429 virtual ~BoxQtQueryPipe(); 430 430 431 431 public slots: … … 434 434 private: 435 435 Box &content; 436 Q TDialog *dialog;436 QtDialog *dialog; 437 437 QTableWidget *inputTable; 438 438 … … 441 441 442 442 443 class AtomQ TQueryPipe : public QWidget {444 Q_OBJECT 445 public: 446 AtomQ TQueryPipe(atom **_content, QTDialog *_dialog, QComboBox *_theBox);447 virtual ~AtomQ TQueryPipe();443 class AtomQtQueryPipe : public QWidget { 444 Q_OBJECT 445 public: 446 AtomQtQueryPipe(atom **_content, QtDialog *_dialog, QComboBox *_theBox); 447 virtual ~AtomQtQueryPipe(); 448 448 449 449 public slots: … … 452 452 private: 453 453 atom **content; 454 Q TDialog *dialog;454 QtDialog *dialog; 455 455 QComboBox *theBox; 456 456 … … 458 458 459 459 460 class AtomsQ TQueryPipe : public QWidget {461 Q_OBJECT 462 public: 463 AtomsQ TQueryPipe(std::vector<atom *>*_content, QTDialog *_dialog, QListWidget *_theList);464 virtual ~AtomsQ TQueryPipe();460 class AtomsQtQueryPipe : public QWidget { 461 Q_OBJECT 462 public: 463 AtomsQtQueryPipe(std::vector<atom *>*_content, QtDialog *_dialog, QListWidget *_theList); 464 virtual ~AtomsQtQueryPipe(); 465 465 466 466 public slots: … … 473 473 std::map<int, atom *> lookup; 474 474 std::set<atom *> currentList; 475 Q TDialog *dialog;475 QtDialog *dialog; 476 476 QListWidget *theList; 477 477 478 478 }; 479 479 480 class MoleculeQ TQueryPipe : public QWidget {481 Q_OBJECT 482 public: 483 MoleculeQ TQueryPipe(molecule **_content, QTDialog *_dialog, QComboBox *_theBox);484 virtual ~MoleculeQ TQueryPipe();480 class MoleculeQtQueryPipe : public QWidget { 481 Q_OBJECT 482 public: 483 MoleculeQtQueryPipe(molecule **_content, QtDialog *_dialog, QComboBox *_theBox); 484 virtual ~MoleculeQtQueryPipe(); 485 485 486 486 public slots: … … 489 489 private: 490 490 molecule **content; 491 Q TDialog *dialog;491 QtDialog *dialog; 492 492 QComboBox *theBox; 493 493 494 494 }; 495 495 496 class MoleculesQ TQueryPipe : public QWidget {497 Q_OBJECT 498 public: 499 MoleculesQ TQueryPipe(std::vector<molecule *>*_content, QTDialog *_dialog, QComboBox *_theBox);500 virtual ~MoleculesQ TQueryPipe();496 class MoleculesQtQueryPipe : public QWidget { 497 Q_OBJECT 498 public: 499 MoleculesQtQueryPipe(std::vector<molecule *>*_content, QtDialog *_dialog, QComboBox *_theBox); 500 virtual ~MoleculesQtQueryPipe(); 501 501 502 502 public slots: … … 505 505 private: 506 506 std::vector<molecule *>*content; 507 Q TDialog *dialog;507 QtDialog *dialog; 508 508 QComboBox *theBox; 509 509 510 510 }; 511 511 512 class VectorQ TQueryPipe : public QWidget {513 Q_OBJECT 514 public: 515 VectorQ TQueryPipe(Vector *_content, QTDialog *_dialog, QComboBox *_theBox);516 virtual ~VectorQ TQueryPipe();512 class VectorQtQueryPipe : public QWidget { 513 Q_OBJECT 514 public: 515 VectorQtQueryPipe(Vector *_content, QtDialog *_dialog, QComboBox *_theBox); 516 virtual ~VectorQtQueryPipe(); 517 517 518 518 public slots: … … 521 521 private: 522 522 Vector *content; 523 Q TDialog *dialog;523 QtDialog *dialog; 524 524 QComboBox *theBox; 525 525 }; 526 526 527 class VectorsQ TQueryPipe : public QWidget {528 Q_OBJECT 529 public: 530 VectorsQ TQueryPipe(std::vector<Vector>*_content, QTDialog *_dialog, QComboBox *_theBox);531 virtual ~VectorsQ TQueryPipe();527 class VectorsQtQueryPipe : public QWidget { 528 Q_OBJECT 529 public: 530 VectorsQtQueryPipe(std::vector<Vector>*_content, QtDialog *_dialog, QComboBox *_theBox); 531 virtual ~VectorsQtQueryPipe(); 532 532 533 533 public slots: … … 536 536 private: 537 537 std::vector<Vector> *content; 538 Q TDialog *dialog;538 QtDialog *dialog; 539 539 QComboBox *theBox; 540 540 }; 541 541 542 class EmptyQ TQueryPipe : public QWidget {543 Q_OBJECT 544 public: 545 EmptyQ TQueryPipe(QTDialog *_dialog, QLabel *_textLabel);546 virtual ~EmptyQ TQueryPipe();542 class EmptyQtQueryPipe : public QWidget { 543 Q_OBJECT 544 public: 545 EmptyQtQueryPipe(QtDialog *_dialog, QLabel *_textLabel); 546 virtual ~EmptyQtQueryPipe(); 547 547 548 548 public slots: … … 550 550 551 551 private: 552 Q TDialog *dialog;552 QtDialog *dialog; 553 553 QLabel *textLabel; 554 554 }; 555 555 556 class BooleanQ TQueryPipe : public QWidget {557 Q_OBJECT 558 public: 559 BooleanQ TQueryPipe(const bool *_content, QTDialog *_dialog, QComboBox *_booleanComboBox);560 virtual ~BooleanQ TQueryPipe();556 class BooleanQtQueryPipe : public QWidget { 557 Q_OBJECT 558 public: 559 BooleanQtQueryPipe(const bool *_content, QtDialog *_dialog, QComboBox *_booleanComboBox); 560 virtual ~BooleanQtQueryPipe(); 561 561 562 562 public slots: … … 565 565 private: 566 566 const bool *content; 567 Q TDialog *dialog;567 QtDialog *dialog; 568 568 QComboBox *booleanComboBox; 569 569 }; 570 570 571 class ElementQ TQueryPipe : public QWidget {572 Q_OBJECT 573 public: 574 ElementQ TQueryPipe(const element **_content, QTDialog *_dialog, QComboBox *_theBox);575 virtual ~ElementQ TQueryPipe();571 class ElementQtQueryPipe : public QWidget { 572 Q_OBJECT 573 public: 574 ElementQtQueryPipe(const element **_content, QtDialog *_dialog, QComboBox *_theBox); 575 virtual ~ElementQtQueryPipe(); 576 576 577 577 public slots: … … 580 580 private: 581 581 const element **content; 582 Q TDialog *dialog;582 QtDialog *dialog; 583 583 QComboBox *theBox; 584 584 }; 585 585 586 class ElementsQ TQueryPipe : public QWidget {587 Q_OBJECT 588 public: 589 ElementsQ TQueryPipe(std::vector<const element *>*_content, QTDialog *_dialog, QComboBox *_theBox);590 virtual ~ElementsQ TQueryPipe();586 class ElementsQtQueryPipe : public QWidget { 587 Q_OBJECT 588 public: 589 ElementsQtQueryPipe(std::vector<const element *>*_content, QtDialog *_dialog, QComboBox *_theBox); 590 virtual ~ElementsQtQueryPipe(); 591 591 592 592 public slots: … … 595 595 private: 596 596 std::vector<const element *>*content; 597 Q TDialog *dialog;597 QtDialog *dialog; 598 598 QComboBox *theBox; 599 599 }; 600 600 601 class FileQ TQueryPipe : public QWidget {602 Q_OBJECT 603 public: 604 FileQ TQueryPipe(boost::filesystem::path *_content, QTDialog *_dialog, QLineEdit *_filenameLineEdit, QPushButton *_filedialogButton);605 virtual ~FileQ TQueryPipe();601 class FileQtQueryPipe : public QWidget { 602 Q_OBJECT 603 public: 604 FileQtQueryPipe(boost::filesystem::path *_content, QtDialog *_dialog, QLineEdit *_filenameLineEdit, QPushButton *_filedialogButton); 605 virtual ~FileQtQueryPipe(); 606 606 607 607 public slots: … … 611 611 private: 612 612 boost::filesystem::path *content; 613 Q TDialog *dialog;613 QtDialog *dialog; 614 614 QLineEdit *filenameLineEdit; 615 615 QPushButton *filedialogButton; -
src/UIElements/Qt4/QtMainWindow.cpp
r81126a r4cf323d 7 7 8 8 /* 9 * Q TMainWindow.cpp9 * QtMainWindow.cpp 10 10 * 11 11 * Created on: Jan 14, 2010 … … 18 18 #endif 19 19 20 #include "Q TMainWindow.hpp"20 #include "QtMainWindow.hpp" 21 21 22 22 #include<Qt/qapplication.h> … … 40 40 #include "Actions/MapOfActions.hpp" 41 41 #include "Menu/Menu.hpp" 42 #include "Menu/Q T4/QTMenu.hpp"42 #include "Menu/Qt4/QtMenu.hpp" 43 43 #include "Menu/ActionMenuItem.hpp" 44 #include "Views/Q T4/QTWorldView.hpp"45 #include "Views/Q T4/GLMoleculeView.hpp"46 #include "Views/Q T4/QTMoleculeView.hpp"47 #include "Views/Q T4/QTStatusBar.hpp"44 #include "Views/Qt4/QtWorldView.hpp" 45 #include "Views/Qt4/GLMoleculeView.hpp" 46 #include "Views/Qt4/QtMoleculeView.hpp" 47 #include "Views/Qt4/QtStatusBar.hpp" 48 48 49 49 using namespace std; 50 50 51 Q TMainWindow::QTMainWindow(QApplication *_theApp) :51 QtMainWindow::QtMainWindow(QApplication *_theApp) : 52 52 theApp(_theApp) 53 53 { … … 55 55 QSplitter *splitter2 = new QSplitter (Qt::Vertical, splitter1 ); 56 56 57 worldDisplay = new Q TWorldView(splitter2);57 worldDisplay = new QtWorldView(splitter2); 58 58 59 moleculeDisplay = new Q TMoleculeView();59 moleculeDisplay = new QtMoleculeView(); 60 60 molecule3dDisplay = new GLMoleculeView(); 61 61 62 62 MenuBar = menuBar(); 63 63 64 std::map <std::string, Q TMenu *> NametoTextMenuMap;64 std::map <std::string, QtMenu *> NametoTextMenuMap; 65 65 // go through all menus and create them 66 Q TMenu *Menu = NULL;66 QtMenu *Menu = NULL; 67 67 for(std::map<std::string, std::pair<std::string,std::string> >::iterator iter = MapOfActions::getInstance().MenuDescription.begin(); iter != MapOfActions::getInstance().MenuDescription.end(); ++iter) { 68 68 cout << "Creating menu " << iter->first << endl; 69 Menu = new Q TMenu(iter->first.c_str());69 Menu = new QtMenu(iter->first.c_str()); 70 70 MenuBar->addMenu(Menu); 71 NametoTextMenuMap.insert( pair <std::string, Q TMenu *> (iter->first, Menu) );71 NametoTextMenuMap.insert( pair <std::string, QtMenu *> (iter->first, Menu) ); 72 72 //new SubMenuItem(getSuitableShortForm(iter->first),iter->second.first,main_menu,Menu); 73 73 } … … 77 77 78 78 // go through all actions and add them to its menu 79 for (std::map <std::string, Q TMenu *>::iterator MenuRunner = NametoTextMenuMap.begin(); MenuRunner != NametoTextMenuMap.end(); ++MenuRunner) {79 for (std::map <std::string, QtMenu *>::iterator MenuRunner = NametoTextMenuMap.begin(); MenuRunner != NametoTextMenuMap.end(); ++MenuRunner) { 80 80 cout << "Creating Action " << MenuRunner->first << " in menu " << MenuRunner->second << endl; 81 81 populateMenu(MenuRunner->second, MenuRunner->first); … … 88 88 splitter2->addWidget(worldDisplay); 89 89 90 statusBar = new Q TStatusBar(this);90 statusBar = new QtStatusBar(this); 91 91 setStatusBar(statusBar); 92 92 … … 95 95 } 96 96 97 Q TMainWindow::~QTMainWindow()97 QtMainWindow::~QtMainWindow() 98 98 { 99 99 menuBar()->clear(); … … 101 101 } 102 102 103 void Q TMainWindow::display() {103 void QtMainWindow::display() { 104 104 this->show(); 105 105 theApp->exec(); 106 106 } 107 107 108 char Q TMainWindow::getSuitableShortForm(set <char> &ShortcutList, const std::string name) const108 char QtMainWindow::getSuitableShortForm(set <char> &ShortcutList, const std::string name) const 109 109 { 110 110 for (std::string::const_iterator CharRunner = name.begin(); CharRunner != name.end(); ++CharRunner) { … … 116 116 } 117 117 118 void Q TMainWindow::populateMenu(QTMenu* Menu, const std::string &MenuName)118 void QtMainWindow::populateMenu(QtMenu* Menu, const std::string &MenuName) 119 119 { 120 120 Action *ActionItem = NULL; -
src/UIElements/Qt4/QtMainWindow.hpp
r81126a r4cf323d 1 1 /* 2 * Q TMainWindow.hpp2 * QtMainWindow.hpp 3 3 * 4 4 * Created on: Jan 14, 2010 … … 14 14 #include <set> 15 15 16 class Q TWorldView;16 class QtWorldView; 17 17 class StringView; 18 class Q TMenu;18 class QtMenu; 19 19 class GLMoleculeView; 20 class Q TMoleculeView;21 class Q TStatusBar;20 class QtMoleculeView; 21 class QtStatusBar; 22 22 23 class Q TMainWindow : public QMainWindow, public MainWindow23 class QtMainWindow : public QMainWindow, public MainWindow 24 24 { 25 25 Q_OBJECT 26 26 27 27 public: 28 Q TMainWindow(QApplication *_theApp);29 virtual ~Q TMainWindow();28 QtMainWindow(QApplication *_theApp); 29 virtual ~QtMainWindow(); 30 30 31 31 virtual void display(); 32 32 33 33 char getSuitableShortForm(std::set <char> &ShortcutList, const std::string name) const; 34 void populateMenu(Q TMenu* Menu, const std::string &MenuName);34 void populateMenu(QtMenu* Menu, const std::string &MenuName); 35 35 36 36 private: 37 37 // All kinds of QTStuff used in this window 38 38 QApplication *theApp; 39 Q TWorldView *worldDisplay;40 Q TMenu *editMoleculesMenu;39 QtWorldView *worldDisplay; 40 QtMenu *editMoleculesMenu; 41 41 GLMoleculeView *molecule3dDisplay; 42 Q TMoleculeView *moleculeDisplay;43 Q TStatusBar *statusBar;42 QtMoleculeView *moleculeDisplay; 43 QtStatusBar *statusBar; 44 44 QMenuBar *MenuBar; 45 45 -
src/UIElements/Qt4/QtUIFactory.cpp
r81126a r4cf323d 7 7 8 8 /* 9 * Q TUIFactory.cpp9 * QtUIFactory.cpp 10 10 * 11 11 * Created on: Jan 14, 2010 … … 24 24 25 25 26 #include "UIElements/Q T4/QTUIFactory.hpp"27 #include "UIElements/Q T4/QTMainWindow.hpp"28 #include "UIElements/Q T4/QTDialog.hpp"26 #include "UIElements/Qt4/QtUIFactory.hpp" 27 #include "UIElements/Qt4/QtMainWindow.hpp" 28 #include "UIElements/Qt4/QtDialog.hpp" 29 29 30 30 #include "Helpers/MemDebug.hpp" … … 35 35 using namespace std; 36 36 37 Q TUIFactory::QTUIFactory() :37 QtUIFactory::QtUIFactory() : 38 38 argc(1) 39 39 { … … 45 45 } 46 46 47 Q TUIFactory::~QTUIFactory()47 QtUIFactory::~QtUIFactory() 48 48 { 49 49 delete app; … … 52 52 } 53 53 54 Dialog* Q TUIFactory::makeDialog() {55 return new Q TDialog();54 Dialog* QtUIFactory::makeDialog() { 55 return new QtDialog(); 56 56 } 57 57 58 MainWindow* Q TUIFactory::makeMainWindow() {59 return new Q TMainWindow(app);58 MainWindow* QtUIFactory::makeMainWindow() { 59 return new QtMainWindow(app); 60 60 } 61 61 62 Q TUIFactory::description::description() :63 UIFactory::factoryDescription("Q T4")62 QtUIFactory::description::description() : 63 UIFactory::factoryDescription("Qt4") 64 64 {} 65 65 66 Q TUIFactory::description::~description()66 QtUIFactory::description::~description() 67 67 {} 68 68 69 UIFactory* Q TUIFactory::description::makeFactory(){70 return new Q TUIFactory();69 UIFactory* QtUIFactory::description::makeFactory(){ 70 return new QtUIFactory(); 71 71 } -
src/UIElements/Qt4/QtUIFactory.hpp
r81126a r4cf323d 1 1 /* 2 * Q TUIFactory.hpp2 * QtUIFactory.hpp 3 3 * 4 4 * Created on: Jan 14, 2010 … … 13 13 class QApplication; 14 14 15 class Q TUIFactory : public UIFactory15 class QtUIFactory : public UIFactory 16 16 { 17 17 friend class UIFactory; 18 18 19 19 public: 20 virtual ~Q TUIFactory();20 virtual ~QtUIFactory(); 21 21 22 22 virtual Dialog* makeDialog(); … … 31 31 32 32 protected: 33 Q TUIFactory();33 QtUIFactory(); 34 34 35 35 private:
Note:
See TracChangeset
for help on using the changeset viewer.