Changeset 72ea92b
- Timestamp:
- Aug 31, 2016, 8:06:50 AM (9 years ago)
- Branches:
- FragmentMolecule_checks_bonddegrees, Gui_Fixes
- Children:
- 6e5ca9
- Parents:
- 5c8056
- Location:
- src/UIElements
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Qt4/QtMainWindow.cpp
r5c8056 r72ea92b 112 112 homologyList = new QtHomologyList(worldTab); 113 113 fragmentList = new QtFragmentList(worldTab); 114 logBox = new QtLogBox(worldTab); 114 logBox = new QtLogBox(std::cout, worldTab); 115 errorlogBox = new QtLogBox(std::cerr, worldTab); 115 116 shapeController = new QtShapeController(worldTab); 116 117 … … 147 148 worldTab->addTab(homologyList, "All Homologies"); 148 149 worldTab->addTab(logBox, "Log"); 150 worldTab->addTab(errorlogBox, "Errors"); 149 151 150 152 statusBar = new QtStatusBar(this); -
src/UIElements/Qt4/QtMainWindow.hpp
r5c8056 r72ea92b 70 70 QSlider *timeline; 71 71 QtLogBox *logBox; 72 QtLogBox *errorlogBox; 72 73 73 74 QtObservedInstanceBoard *InstanceBoard; -
src/UIElements/Views/Qt4/QtLogBox.cpp
r5c8056 r72ea92b 50 50 #endif 51 51 52 QtLogBox::QtLogBox( QWidget * _parent) :52 QtLogBox::QtLogBox(std::ostream &stream, QWidget * _parent) : 53 53 QPlainTextEdit (_parent), 54 54 #ifdef QT_CAPTURES_LOG 55 logbuf(st d::cout, this)55 logbuf(stream, this) 56 56 #else 57 57 logbuf(dummystream, this) -
src/UIElements/Views/Qt4/QtLogBox.hpp
r5c8056 r72ea92b 16 16 #include <QPlainTextEdit> 17 17 18 #include <iosfwd> 18 19 #include <string> 19 20 … … 32 33 33 34 public: 34 QtLogBox( QWidget * _parent=0);35 QtLogBox(std::ostream &stream, QWidget * _parent=0); 35 36 virtual ~QtLogBox(); 36 37
Note:
See TracChangeset
for help on using the changeset viewer.