Changeset 0014a4 for src/UIElements


Ignore:
Timestamp:
May 8, 2017, 1:51:22 PM (8 years ago)
Author:
Frederik Heber <frederik.heber@…>
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)
Message:

Added QtGeometryList to QtMainWindow.

  • this list shows the name and vectors of all GeometryObjects in the Registry.
Location:
src/UIElements
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Makefile.am

    r1e6fb7 r0014a4  
    190190  UIElements/Menu/Qt4/QtMenuPipe.cpp \
    191191  UIElements/Views/Qt4/QtFragmentList.cpp \
     192  UIElements/Views/Qt4/QtGeometryList.cpp \
    192193  UIElements/Views/Qt4/QtHomologyList.cpp \
    193194  UIElements/Views/Qt4/QtInfoBox.cpp \
     
    225226  UIElements/Views/Qt4/MoleculeList/QtObservedMoleculeObserver.hpp \
    226227  UIElements/Views/Qt4/QtFragmentList.hpp \
     228  UIElements/Views/Qt4/QtGeometryList.hpp \
    227229  UIElements/Views/Qt4/QtHomologyList.hpp \
    228230  UIElements/Views/Qt4/QtInfoBox.hpp \
     
    308310        libMolecuilderParser.la \
    309311        libMolecuilderParameters.la \
     312        libMolecuilderGeometry.la \
    310313        libMolecuilderShapes.la \
    311314        libMolecuilderLinkedCell.la \
  • src/UIElements/Qt4/QtMainWindow.cpp

    r1e6fb7 r0014a4  
    5959#include "Views/Qt4/QtHomologyList.hpp"
    6060#include "UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.hpp"
     61#include "Views/Qt4/QtGeometryList.hpp"
    6162#include "Views/Qt4/QtLogBox.hpp"
    6263#include "Views/Qt4/QtShapeController.hpp"
     
    112113  homologyList = new QtHomologyList(worldTab);
    113114  fragmentList = new QtFragmentList(worldTab);
     115  geometryList = new QtGeometryList(worldTab);
    114116  logBox = new QtLogBox(std::cout, worldTab);
    115117  errorlogBox = new QtLogBox(std::cerr, worldTab);
     
    147149  worldTab->addTab(fragmentList, "All Fragments");
    148150  worldTab->addTab(homologyList, "All Homologies");
     151  worldTab->addTab(geometryList, "All Geometries");
    149152  worldTab->addTab(logBox, "Log");
    150153  worldTab->addTab(errorlogBox, "Errors");
  • src/UIElements/Qt4/QtMainWindow.hpp

    r1e6fb7 r0014a4  
    2727class QtElementList;
    2828class QtFragmentList;
     29class QtGeometryList;
    2930class QtHomologyList;
    3031class QtLogBox;
     
    6061  QtMoleculeList *moleculeList;
    6162  QtElementList *elementList;
     63  QtGeometryList *geometryList;
    6264  QtHomologyList *homologyList;
    6365  QtFragmentList *fragmentList;
Note: See TracChangeset for help on using the changeset viewer.