| 115 | } |
| 116 | |
| 117 | bool Widget::HasFocus( PtrConst widget ) { |
| 118 | if( focus_widget.lock() == widget ) { |
| 119 | return true; |
| 120 | } |
| 121 | |
| 122 | return false; |
| 123 | } |
| 124 | |
| 125 | void Widget::SetAllocation( const sf::FloatRect& rect ) { |
| 126 | sf::FloatRect oldallocation( m_allocation ); |
no outgoing calls
no test coverage detected