Changeset 85dd16


Ignore:
Timestamp:
Sep 13, 2025, 2:44:01 PM (4 months ago)
Author:
Frederik Heber <frederik.heber@…>
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)
Message:

Adds new tab "All potentials".

Location:
src/UIElements
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Makefile.am

    ra4b917 r85dd16  
    192192  UIElements/Views/Qt4/QtGeometryList.cpp \
    193193  UIElements/Views/Qt4/QtHomologyList.cpp \
     194  UIElements/Views/Qt4/QtPotentialList.cpp \
    194195  UIElements/Views/Qt4/QtInfoBox.cpp \
    195196  UIElements/Views/Qt4/QtLogBox.cpp \
     
    228229  UIElements/Views/Qt4/QtGeometryList.hpp \
    229230  UIElements/Views/Qt4/QtHomologyList.hpp \
     231  UIElements/Views/Qt4/QtPotentialList.hpp \
    230232  UIElements/Views/Qt4/QtInfoBox.hpp \
    231233  UIElements/Views/Qt4/QtLogBox.hpp \
  • src/UIElements/Qt4/QtMainWindow.cpp

    ra4b917 r85dd16  
    5858#include "Views/Qt4/QtFragmentList.hpp"
    5959#include "Views/Qt4/QtHomologyList.hpp"
     60#include "Views/Qt4/QtPotentialList.hpp"
    6061#include "UIElements/Qt4/InstanceBoard/QtObservedInstanceBoard.hpp"
    6162#include "Views/Qt4/QtGeometryList.hpp"
     
    111112
    112113  elementList = new QtElementList(InstanceBoard, worldTab);
     114  fragmentList = new QtFragmentList(worldTab);
    113115  homologyList = new QtHomologyList(worldTab);
    114   fragmentList = new QtFragmentList(worldTab);
     116  potentialList = new QtPotentialList(worldTab);
    115117  geometryList = new QtGeometryList(worldTab);
    116118  logBox = new QtLogBox(std::cout, worldTab);
     
    153155  worldTab->addTab(fragmentList, "All Fragments");
    154156  worldTab->addTab(homologyList, "All Homologies");
     157  worldTab->addTab(potentialList, "All Potentials");
    155158  worldTab->addTab(geometryList, "All Geometries");
    156159  worldTab->addTab(logBox, "Log");
  • src/UIElements/Qt4/QtMainWindow.hpp

    ra4b917 r85dd16  
    2929class QtGeometryList;
    3030class QtHomologyList;
     31class QtPotentialList;
    3132class QtLogBox;
    3233class QtMoleculeList;
     
    6667  QtElementList *elementList;
    6768  QtGeometryList *geometryList;
     69  QtFragmentList *fragmentList;
    6870  QtHomologyList *homologyList;
    69   QtFragmentList *fragmentList;
     71  QtPotentialList *potentialList;
    7072  QtShapeController *shapeController;
    7173  GLWorldView *glWorldView;
Note: See TracChangeset for help on using the changeset viewer.