Changeset 85dd16
- Timestamp:
- Sep 13, 2025, 2:44:01 PM (4 months ago)
- Branches:
- Candidate_v1.7.0, Candidate_v1.7.1, stable
- Children:
- 6762b2
- Parents:
- a4b917
- git-author:
- Frederik Heber <frederik.heber@…> (08/17/25 20:50:38)
- git-committer:
- Frederik Heber <frederik.heber@…> (09/13/25 14:44:01)
- Location:
- src/UIElements
- Files:
-
- 2 added
- 3 edited
-
Makefile.am (modified) (2 diffs)
-
Qt4/QtMainWindow.cpp (modified) (3 diffs)
-
Qt4/QtMainWindow.hpp (modified) (2 diffs)
-
Views/Qt4/QtPotentialList.cpp (added)
-
Views/Qt4/QtPotentialList.hpp (added)
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Makefile.am
ra4b917 r85dd16 192 192 UIElements/Views/Qt4/QtGeometryList.cpp \ 193 193 UIElements/Views/Qt4/QtHomologyList.cpp \ 194 UIElements/Views/Qt4/QtPotentialList.cpp \ 194 195 UIElements/Views/Qt4/QtInfoBox.cpp \ 195 196 UIElements/Views/Qt4/QtLogBox.cpp \ … … 228 229 UIElements/Views/Qt4/QtGeometryList.hpp \ 229 230 UIElements/Views/Qt4/QtHomologyList.hpp \ 231 UIElements/Views/Qt4/QtPotentialList.hpp \ 230 232 UIElements/Views/Qt4/QtInfoBox.hpp \ 231 233 UIElements/Views/Qt4/QtLogBox.hpp \ -
src/UIElements/Qt4/QtMainWindow.cpp
ra4b917 r85dd16 58 58 #include "Views/Qt4/QtFragmentList.hpp" 59 59 #include "Views/Qt4/QtHomologyList.hpp" 60 #include "Views/Qt4/QtPotentialList.hpp" 60 61 #include "UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.hpp" 61 62 #include "Views/Qt4/QtGeometryList.hpp" … … 111 112 112 113 elementList = new QtElementList(InstanceBoard, worldTab); 114 fragmentList = new QtFragmentList(worldTab); 113 115 homologyList = new QtHomologyList(worldTab); 114 fragmentList = new QtFragmentList(worldTab);116 potentialList = new QtPotentialList(worldTab); 115 117 geometryList = new QtGeometryList(worldTab); 116 118 logBox = new QtLogBox(std::cout, worldTab); … … 153 155 worldTab->addTab(fragmentList, "All Fragments"); 154 156 worldTab->addTab(homologyList, "All Homologies"); 157 worldTab->addTab(potentialList, "All Potentials"); 155 158 worldTab->addTab(geometryList, "All Geometries"); 156 159 worldTab->addTab(logBox, "Log"); -
src/UIElements/Qt4/QtMainWindow.hpp
ra4b917 r85dd16 29 29 class QtGeometryList; 30 30 class QtHomologyList; 31 class QtPotentialList; 31 32 class QtLogBox; 32 33 class QtMoleculeList; … … 66 67 QtElementList *elementList; 67 68 QtGeometryList *geometryList; 69 QtFragmentList *fragmentList; 68 70 QtHomologyList *homologyList; 69 Qt FragmentList *fragmentList;71 QtPotentialList *potentialList; 70 72 QtShapeController *shapeController; 71 73 GLWorldView *glWorldView;
Note:
See TracChangeset
for help on using the changeset viewer.
