]> Pileus Git - ~andy/gtk/blob - gtk/gtklinkbutton.h
gtk/gtklinkbutton.h Change function argument "link" to "link_" to fix
[~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 typedef void (*GtkLinkButtonUriFunc) (GtkLinkButton *button,
45                                       const gchar   *link_,
46                                       gpointer       user_data);
47
48 struct _GtkLinkButton
49 {
50   GtkButton parent_instance;
51   
52   GtkLinkButtonPrivate *priv;
53 };
54
55 struct _GtkLinkButtonClass
56 {
57   GtkButtonClass parent_class;
58   
59   void (*_gtk_padding1) (void);
60   void (*_gtk_padding2) (void);
61   void (*_gtk_padding3) (void);
62   void (*_gtk_padding4) (void);
63 };
64
65 GType                 gtk_link_button_get_type          (void) G_GNUC_CONST;
66
67 GtkWidget *           gtk_link_button_new               (const gchar   *uri);
68 GtkWidget *           gtk_link_button_new_with_label    (const gchar   *uri,
69                                                          const gchar   *label);
70
71 G_CONST_RETURN gchar *gtk_link_button_get_uri           (GtkLinkButton *link_button);
72 void                  gtk_link_button_set_uri           (GtkLinkButton *link_button,
73                                                          const gchar   *uri);
74
75 GtkLinkButtonUriFunc  gtk_link_button_set_uri_hook      (GtkLinkButtonUriFunc func,
76                                                          gpointer             data,
77                                                          GDestroyNotify       destroy);
78
79 G_END_DECLS
80
81 #endif /* __GTK_LINK_BUTTON_H__ */