I'm writing an application in C and I've a GtkLinkButton that contains a GtkStockItem. How can I remove the button box that appears when mouse pointer is on and when I click it?
EDIT
Thanks very much, but it doesn't work. This is the output:
"Gtk-WARNING **: filed to set text from markup due to error parsing markup: Unknow tag 'a' on line 1 char 38
GLib-GObject-WARNING **: gsignal.c:2267: sigal activate-link' is invalid for istance
0x8081860'
Gtk-WARNING **: filed to set text from markup due to error parsing markup: Unknow tag 'a' on line 1 char 38"
I study GTK libraries since few time, but I think that you can't use all html tags that you want in gtk_label_set_markup() function (tag 'a' is one). I understand that you can only use Pango text markup language (http://library.gnome.org/devel/pango/stable/PangoMarkupFormat.html), so you can't use tag 'a' or not directly.