| 984 | } |
| 985 | |
| 986 | UIAnchor::UIAnchor( const std::string& tag ) : UITextView( tag ) { |
| 987 | onClick( |
| 988 | [this]( const MouseEvent* ) { |
| 989 | if ( !mHref.empty() ) |
| 990 | getUISceneNode()->openURL( mHref ); |
| 991 | }, |
| 992 | EE_BUTTON_LEFT ); |
| 993 | } |
| 994 | |
| 995 | bool UIAnchor::applyProperty( const StyleSheetProperty& attribute ) { |
| 996 | if ( !checkPropertyDefinition( attribute ) ) |