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