tootle-linux-client/src/Widgets/RichLabel.vala

42 lines
1.0 KiB
Vala
Raw Normal View History

2018-04-28 18:27:10 +02:00
using Gtk;
public class Tootle.RichLabel : Gtk.Label {
public weak Mention[]? mentions;
public RichLabel (string text, bool override_links = true) {
label = text;
set_use_markup (true);
if (override_links)
activate_link.connect (open_link);
}
public bool open_link (string url){
if (mentions != null){
foreach (Mention mention in mentions){
if (url == mention.url){
AccountView.open_from_id (mention.id);
return true;
}
}
}
2018-04-28 19:16:23 +02:00
// if ("/tags/" in url){
// var hashtag = url.split("/tags/")[1];
// //TODO: search hashtags
// return true;
// }
2018-04-28 18:27:10 +02:00
if ("/@" in url){
var profile = url.split("/@")[1];
2018-04-28 18:41:35 +02:00
AccountView.open_from_name (profile);
2018-04-28 18:27:10 +02:00
return true;
}
Gtk.show_uri (null, url, Gdk.CURRENT_TIME);
return true;
}
}