|
|
@ -36,10 +36,6 @@ abstract class Markup |
|
|
|
true |
|
|
|
true |
|
|
|
); |
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
$this->gtk->set_can_focus( |
|
|
|
|
|
|
|
false |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$this->gtk->set_track_visited_links( |
|
|
|
$this->gtk->set_track_visited_links( |
|
|
|
true |
|
|
|
true |
|
|
|
); |
|
|
|
); |
|
|
@ -82,15 +78,21 @@ abstract class Markup |
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
abstract protected function _onActivateLink( |
|
|
|
protected function _onActivateLink( |
|
|
|
GtkLabel $label, |
|
|
|
GtkLabel $label, |
|
|
|
string $href |
|
|
|
string $href |
|
|
|
): bool; |
|
|
|
): bool |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
abstract protected function _onButtonPressEvent( |
|
|
|
protected function _onButtonPressEvent( |
|
|
|
GtkLabel $label, |
|
|
|
GtkLabel $label, |
|
|
|
GdkEvent $event |
|
|
|
GdkEvent $event |
|
|
|
): bool; |
|
|
|
): bool |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
abstract public function set( |
|
|
|
abstract public function set( |
|
|
|
string $value |
|
|
|
string $value |
|
|
|