Changes in / [26b4d62:c73e35]


Ignore:
Location:
src/UIElements
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/Makefile.am

    r26b4d62 rc73e35  
    172172  UIElements/Views/Qt4/QtHomologyList.cpp \
    173173  UIElements/Views/Qt4/QtInfoBox.cpp \
     174  UIElements/Views/Qt4/QtLogBox.cpp \
    174175  UIElements/Views/Qt4/QtMoleculeList.cpp \
    175176  UIElements/Views/Qt4/QtShapeController.cpp \
     
    192193  UIElements/Qt4/Query/QtQuery.hpp \
    193194  UIElements/Menu/Qt4/QtMenuPipe.hpp \
     195  UIElements/Views/Qt4/QDebugStream.hpp \
    194196  UIElements/Views/Qt4/QtElementList.hpp \
    195197  UIElements/Views/Qt4/QtFragmentList.hpp \
    196198  UIElements/Views/Qt4/QtHomologyList.hpp \
    197199  UIElements/Views/Qt4/QtInfoBox.hpp \
     200  UIElements/Views/Qt4/QtLogBox.hpp \
    198201  UIElements/Views/Qt4/QtMoleculeList.hpp \
    199202  UIElements/Views/Qt4/QtShapeController.hpp \
  • src/UIElements/Qt4/QtMainWindow.cpp

    r26b4d62 rc73e35  
    5757#include "Views/Qt4/QtFragmentList.hpp"
    5858#include "Views/Qt4/QtHomologyList.hpp"
     59#include "Views/Qt4/QtLogBox.hpp"
    5960#include "Views/Qt4/QtShapeController.hpp"
    6061#include "Views/Qt4/QtInfoBox.hpp"
     
    9899  homologyList = new QtHomologyList(worldTab);
    99100  fragmentList = new QtFragmentList(worldTab);
     101  logBox = new QtLogBox(worldTab);
    100102  shapeController = new QtShapeController(worldTab);
    101103
     
    130132  worldTab->addTab(fragmentList, "All Fragments");
    131133  worldTab->addTab(homologyList, "All Homologies");
     134  worldTab->addTab(logBox, "Log");
    132135
    133136  statusBar = new QtStatusBar(this);
  • src/UIElements/Qt4/QtMainWindow.hpp

    r26b4d62 rc73e35  
    2323#include "Menu/Qt4/QtMenu.hpp"
    2424
     25class QtElementList;
     26class QtFragmentList;
     27class QtHomologyList;
     28class QtLogBox;
    2529class QtMoleculeList;
    26 class QtElementList;
    27 class QtHomologyList;
    28 class QtFragmentList;
    2930class QtShapeController;
    3031class StringView;
     
    6465  QtToolBar *toolbar;
    6566  QSlider *timeline;
     67  QtLogBox *logBox;
    6668
    6769};
Note: See TracChangeset for help on using the changeset viewer.