| 614 | } |
| 615 | |
| 616 | Uint32 UIAnchorSpan::onKeyDown( const KeyEvent& event ) { |
| 617 | if ( event.getKeyCode() == KEY_KP_ENTER || event.getKeyCode() == KEY_RETURN ) { |
| 618 | if ( !mHref.empty() ) { |
| 619 | getUISceneNode()->openURL( mHref ); |
| 620 | return 1; |
| 621 | } |
| 622 | } |
| 623 | |
| 624 | return UIWidget::onKeyDown( event ); |
| 625 | } |
| 626 | |
| 627 | std::string UIAnchorSpan::getPropertyString( const PropertyDefinition* propertyDef, |
| 628 | const Uint32& propertyIndex ) const { |