comparison Applications/Generic/GuiAdapter.cpp @ 1290:7def6ab2929f bugs/2020-02-invisible-slice

Removal of debugging logs
author Benjamin Golinvaux <bgo@osimis.io>
date Fri, 21 Feb 2020 15:20:29 +0100
parents 343aa1dfaa90
children 6ab03e429f06 8a0a62189f46
comparison
equal deleted inserted replaced
1289:343aa1dfaa90 1290:7def6ab2929f
34 # include "../../Framework/Messages/LockingEmitter.h" 34 # include "../../Framework/Messages/LockingEmitter.h"
35 #endif 35 #endif
36 36
37 namespace OrthancStone 37 namespace OrthancStone
38 { 38 {
39 #if 0
40 void GuiAdapter::RegisterWidget(boost::shared_ptr<IGuiAdapterWidget> widget)
41 {
42 LOG(INFO) << "GuiAdapter::RegisterWidget"
43
44 widgets_.push_back(widget);
45 }
46 #endif
47
48 std::ostream& operator<<( 39 std::ostream& operator<<(
49 std::ostream& os, const GuiAdapterKeyboardEvent& event) 40 std::ostream& os, const GuiAdapterKeyboardEvent& event)
50 { 41 {
51 os << "sym: " << event.sym << " (" << (int)(event.sym[0]) << ") ctrl: " << event.ctrlKey << ", " << 42 os << "sym: " << event.sym << " (" << (int)(event.sym[0]) << ") ctrl: " << event.ctrlKey << ", " <<
52 "shift: " << event.shiftKey << ", " << 43 "shift: " << event.shiftKey << ", " <<