1/* GTK - The GIMP Toolkit
2 * gtklinkbutton.h - a hyperlink-enabled button
3 *
4 * Copyright (C) 2005 Emmanuele Bassi <ebassi@gmail.com>
5 * All rights reserved.
6 *
7 * Based on gnome-href code by:
8 * James Henstridge <james@daa.com.au>
9 *
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Library General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Library General Public License for more details.
19 *
20 * You should have received a copy of the GNU Library General Public
21 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24#ifndef __GTK_LINK_BUTTON_H__
25#define __GTK_LINK_BUTTON_H__
26
27#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
28#error "Only <gtk/gtk.h> can be included directly."
29#endif
30
31#include <gtk/gtkbutton.h>
32
33G_BEGIN_DECLS
34
35#define GTK_TYPE_LINK_BUTTON (gtk_link_button_get_type ())
36#define GTK_LINK_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LINK_BUTTON, GtkLinkButton))
37#define GTK_IS_LINK_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LINK_BUTTON))
38
39typedef struct _GtkLinkButton GtkLinkButton;
40
41GDK_AVAILABLE_IN_ALL
42GType gtk_link_button_get_type (void) G_GNUC_CONST;
43
44GDK_AVAILABLE_IN_ALL
45GtkWidget * gtk_link_button_new (const char *uri);
46GDK_AVAILABLE_IN_ALL
47GtkWidget * gtk_link_button_new_with_label (const char *uri,
48 const char *label);
49
50GDK_AVAILABLE_IN_ALL
51const char * gtk_link_button_get_uri (GtkLinkButton *link_button);
52GDK_AVAILABLE_IN_ALL
53void gtk_link_button_set_uri (GtkLinkButton *link_button,
54 const char *uri);
55
56GDK_AVAILABLE_IN_ALL
57gboolean gtk_link_button_get_visited (GtkLinkButton *link_button);
58GDK_AVAILABLE_IN_ALL
59void gtk_link_button_set_visited (GtkLinkButton *link_button,
60 gboolean visited);
61
62
63G_END_DECLS
64
65#endif /* __GTK_LINK_BUTTON_H__ */
66

source code of gtk/gtk/gtklinkbutton.h