Changeset 4458b0
- Timestamp:
- Nov 15, 2012, 5:31:08 PM (12 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:
- 8f12de
- Parents:
- 6131d8
- git-author:
- Michael Ankele <ankele@…> (09/14/12 13:17:00)
- git-committer:
- Frederik Heber <heber@…> (11/15/12 17:31:08)
- Location:
- src/UIElements
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Makefile.am
r6131d8 r4458b0 167 167 UIElements/Views/Qt4/QtInfoBox.cpp \ 168 168 UIElements/Views/Qt4/QtMoleculeList.cpp \ 169 UIElements/Views/Qt4/QtShapeList.cpp \ 169 170 UIElements/Views/Qt4/QtStatusBar.cpp \ 170 171 UIElements/Views/Qt4/QtToolBar.cpp \ … … 185 186 UIElements/Views/Qt4/QtInfoBox.hpp \ 186 187 UIElements/Views/Qt4/QtMoleculeList.hpp \ 188 UIElements/Views/Qt4/QtShapeList.hpp \ 187 189 UIElements/Views/Qt4/QtStatusBar.hpp \ 188 190 UIElements/Views/Qt4/QtToolBar.hpp \ -
src/UIElements/Qt4/QtMainWindow.cpp
r6131d8 r4458b0 53 53 #include "Views/Qt4/QtMoleculeList.hpp" 54 54 #include "Views/Qt4/QtElementList.hpp" 55 #include "Views/Qt4/QtShapeList.hpp" 55 56 #include "Views/Qt4/QtInfoBox.hpp" 56 57 #include "Views/Qt4/QtStatusBar.hpp" … … 80 81 QSplitter *splitter1 = new QSplitter (Qt::Horizontal, this ); 81 82 QSplitter *splitter2 = new QSplitter (Qt::Vertical, splitter1 ); 83 QSplitter *splitter3 = new QSplitter (Qt::Vertical, splitter1 ); 82 84 QTabWidget *worldTab = new QTabWidget(splitter2); 83 85 84 86 moleculeList = new QtMoleculeList(worldTab); 85 87 elementList = new QtElementList(worldTab); 88 shapeList = new QtShapeList(worldTab); 86 89 87 90 infoBox = new QtInfoBox(); … … 101 104 setCentralWidget(splitter1); 102 105 splitter1->addWidget(splitter2); 103 splitter1->addWidget(infoBox); 106 splitter1->addWidget(splitter3); 107 splitter1->setStretchFactor(0, 10); 108 splitter3->addWidget(infoBox); 109 splitter3->addWidget(shapeList); 104 110 splitter2->addWidget(glWorldView); 105 111 splitter2->addWidget(worldTab); -
src/UIElements/Qt4/QtMainWindow.hpp
r6131d8 r4458b0 25 25 class QtMoleculeList; 26 26 class QtElementList; 27 class QtShapeList; 27 28 class StringView; 28 29 class GLWorldView; … … 51 52 QtMoleculeList *moleculeList; 52 53 QtElementList *elementList; 54 QtShapeList *shapeList; 53 55 GLWorldView *glWorldView; 54 56 QtInfoBox *infoBox; -
src/UIElements/Views/Qt4/QtInfoBox.cpp
r6131d8 r4458b0 56 56 57 57 setMinimumWidth(200); 58 setMinimumHeight(200); 58 59 currentPage = 0; 59 60
Note:
See TracChangeset
for help on using the changeset viewer.