Changes in / [c73e35:26b4d62]
- Location:
- src/UIElements
- Files:
-
- 3 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Makefile.am
rc73e35 r26b4d62 172 172 UIElements/Views/Qt4/QtHomologyList.cpp \ 173 173 UIElements/Views/Qt4/QtInfoBox.cpp \ 174 UIElements/Views/Qt4/QtLogBox.cpp \175 174 UIElements/Views/Qt4/QtMoleculeList.cpp \ 176 175 UIElements/Views/Qt4/QtShapeController.cpp \ … … 193 192 UIElements/Qt4/Query/QtQuery.hpp \ 194 193 UIElements/Menu/Qt4/QtMenuPipe.hpp \ 195 UIElements/Views/Qt4/QDebugStream.hpp \196 194 UIElements/Views/Qt4/QtElementList.hpp \ 197 195 UIElements/Views/Qt4/QtFragmentList.hpp \ 198 196 UIElements/Views/Qt4/QtHomologyList.hpp \ 199 197 UIElements/Views/Qt4/QtInfoBox.hpp \ 200 UIElements/Views/Qt4/QtLogBox.hpp \201 198 UIElements/Views/Qt4/QtMoleculeList.hpp \ 202 199 UIElements/Views/Qt4/QtShapeController.hpp \ -
src/UIElements/Qt4/QtMainWindow.cpp
rc73e35 r26b4d62 57 57 #include "Views/Qt4/QtFragmentList.hpp" 58 58 #include "Views/Qt4/QtHomologyList.hpp" 59 #include "Views/Qt4/QtLogBox.hpp"60 59 #include "Views/Qt4/QtShapeController.hpp" 61 60 #include "Views/Qt4/QtInfoBox.hpp" … … 99 98 homologyList = new QtHomologyList(worldTab); 100 99 fragmentList = new QtFragmentList(worldTab); 101 logBox = new QtLogBox(worldTab);102 100 shapeController = new QtShapeController(worldTab); 103 101 … … 132 130 worldTab->addTab(fragmentList, "All Fragments"); 133 131 worldTab->addTab(homologyList, "All Homologies"); 134 worldTab->addTab(logBox, "Log");135 132 136 133 statusBar = new QtStatusBar(this); -
src/UIElements/Qt4/QtMainWindow.hpp
rc73e35 r26b4d62 23 23 #include "Menu/Qt4/QtMenu.hpp" 24 24 25 class QtMoleculeList; 25 26 class QtElementList; 27 class QtHomologyList; 26 28 class QtFragmentList; 27 class QtHomologyList;28 class QtLogBox;29 class QtMoleculeList;30 29 class QtShapeController; 31 30 class StringView; … … 65 64 QtToolBar *toolbar; 66 65 QSlider *timeline; 67 QtLogBox *logBox;68 66 69 67 };
Note:
See TracChangeset
for help on using the changeset viewer.