Changeset 0014a4 for src/UIElements
- Timestamp:
- May 8, 2017, 1:51:22 PM (8 years ago)
- Branches:
- ForceAnnealing_goodresults, ForceAnnealing_tocheck
- Children:
- af78af
- Parents:
- 1e6fb7
- git-author:
- Frederik Heber <heber@…> (03/25/17 13:59:40)
- git-committer:
- Frederik Heber <frederik.heber@…> (05/08/17 13:51:22)
- Location:
- src/UIElements
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Makefile.am
r1e6fb7 r0014a4 190 190 UIElements/Menu/Qt4/QtMenuPipe.cpp \ 191 191 UIElements/Views/Qt4/QtFragmentList.cpp \ 192 UIElements/Views/Qt4/QtGeometryList.cpp \ 192 193 UIElements/Views/Qt4/QtHomologyList.cpp \ 193 194 UIElements/Views/Qt4/QtInfoBox.cpp \ … … 225 226 UIElements/Views/Qt4/MoleculeList/QtObservedMoleculeObserver.hpp \ 226 227 UIElements/Views/Qt4/QtFragmentList.hpp \ 228 UIElements/Views/Qt4/QtGeometryList.hpp \ 227 229 UIElements/Views/Qt4/QtHomologyList.hpp \ 228 230 UIElements/Views/Qt4/QtInfoBox.hpp \ … … 308 310 libMolecuilderParser.la \ 309 311 libMolecuilderParameters.la \ 312 libMolecuilderGeometry.la \ 310 313 libMolecuilderShapes.la \ 311 314 libMolecuilderLinkedCell.la \ -
src/UIElements/Qt4/QtMainWindow.cpp
r1e6fb7 r0014a4 59 59 #include "Views/Qt4/QtHomologyList.hpp" 60 60 #include "UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.hpp" 61 #include "Views/Qt4/QtGeometryList.hpp" 61 62 #include "Views/Qt4/QtLogBox.hpp" 62 63 #include "Views/Qt4/QtShapeController.hpp" … … 112 113 homologyList = new QtHomologyList(worldTab); 113 114 fragmentList = new QtFragmentList(worldTab); 115 geometryList = new QtGeometryList(worldTab); 114 116 logBox = new QtLogBox(std::cout, worldTab); 115 117 errorlogBox = new QtLogBox(std::cerr, worldTab); … … 147 149 worldTab->addTab(fragmentList, "All Fragments"); 148 150 worldTab->addTab(homologyList, "All Homologies"); 151 worldTab->addTab(geometryList, "All Geometries"); 149 152 worldTab->addTab(logBox, "Log"); 150 153 worldTab->addTab(errorlogBox, "Errors"); -
src/UIElements/Qt4/QtMainWindow.hpp
r1e6fb7 r0014a4 27 27 class QtElementList; 28 28 class QtFragmentList; 29 class QtGeometryList; 29 30 class QtHomologyList; 30 31 class QtLogBox; … … 60 61 QtMoleculeList *moleculeList; 61 62 QtElementList *elementList; 63 QtGeometryList *geometryList; 62 64 QtHomologyList *homologyList; 63 65 QtFragmentList *fragmentList;
Note:
See TracChangeset
for help on using the changeset viewer.