]> Pileus Git - ~andy/gtk/blob - gtk/gtklinkbutton.h
25affc7e71f9ce804062153329e7f6ab4c44e7e9
[~andy/gtk] / gtk / gtklinkbutton.h
1 /* GTK - The GIMP Toolkit
2  * gtklinkbutton.h - an 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, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Cambridge, MA 02139, USA.
23  */
24
25 #ifndef __GTK_LINK_BUTTON_H__
26 #define __GTK_LINK_BUTTON_H__
27
28 #include <glib.h>
29 #include <gtk/gtkbutton.h>
30
31 G_BEGIN_DECLS
32
33 #define GTK_TYPE_LINK_BUTTON            (gtk_link_button_get_type ())
34 #define GTK_LINK_BUTTON(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LINK_BUTTON, GtkLinkButton))
35 #define GTK_IS_LINK_BUTTON(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LINK_BUTTON))
36 #define GTK_LINK_BUTTON_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_LINK_BUTTON, GtkLinkButtonClass))
37 #define GTK_IS_LINK_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LINK_BUTTON))
38 #define GTK_LINK_BUTTON_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_LINK_BUTTON, GtkLinkButtonClass))
39
40 typedef struct _GtkLinkButton           GtkLinkButton;
41 typedef struct _GtkLinkButtonClass      GtkLinkButtonClass;
42 typedef struct _GtkLinkButtonPrivate    GtkLinkButtonPrivate;
43
44 struct _GtkLinkButton
45 {
46   GtkButton parent_instance;
47   
48   GtkLinkButtonPrivate *priv;
49 };
50
51 struct _GtkLinkButtonClass
52 {
53   GtkButtonClass parent_class;
54   
55   void (*_gtk_padding1) (void);
56   void (*_gtk_padding2) (void);
57   void (*_gtk_padding3) (void);
58   void (*_gtk_padding4) (void);
59 };
60
61 GType                 gtk_link_button_get_type          (void) G_GNUC_CONST;
62
63 GtkWidget *           gtk_link_button_new               (const gchar   *uri);
64 GtkWidget *           gtk_link_button_new_with_label    (const gchar   *uri,
65                                                          const gchar   *label);
66
67 G_CONST_RETURN gchar *gtk_link_button_get_uri           (GtkLinkButton *link_button);
68 void                  gtk_link_button_set_uri           (GtkLinkButton *link_button,
69                                                          const gchar   *uri);
70
71 G_END_DECLS
72
73 #endif /* __GTK_LINK_BUTTON_H__ */