25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

90 lines
3.3 KiB

  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. #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
  25. #error "Only <gtk/gtk.h> can be included directly."
  26. #endif
  27. #ifndef __GTK_LINK_BUTTON_H__
  28. #define __GTK_LINK_BUTTON_H__
  29. #include <gtk/gtkbutton.h>
  30. G_BEGIN_DECLS
  31. #define GTK_TYPE_LINK_BUTTON (gtk_link_button_get_type ())
  32. #define GTK_LINK_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LINK_BUTTON, GtkLinkButton))
  33. #define GTK_IS_LINK_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LINK_BUTTON))
  34. #define GTK_LINK_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_LINK_BUTTON, GtkLinkButtonClass))
  35. #define GTK_IS_LINK_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LINK_BUTTON))
  36. #define GTK_LINK_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_LINK_BUTTON, GtkLinkButtonClass))
  37. typedef struct _GtkLinkButton GtkLinkButton;
  38. typedef struct _GtkLinkButtonClass GtkLinkButtonClass;
  39. typedef struct _GtkLinkButtonPrivate GtkLinkButtonPrivate;
  40. typedef void (*GtkLinkButtonUriFunc) (GtkLinkButton *button,
  41. const gchar *link_,
  42. gpointer user_data);
  43. struct _GtkLinkButton
  44. {
  45. GtkButton parent_instance;
  46. GtkLinkButtonPrivate *GSEAL (priv);
  47. };
  48. struct _GtkLinkButtonClass
  49. {
  50. GtkButtonClass parent_class;
  51. void (*_gtk_padding1) (void);
  52. void (*_gtk_padding2) (void);
  53. void (*_gtk_padding3) (void);
  54. void (*_gtk_padding4) (void);
  55. };
  56. GType gtk_link_button_get_type (void) G_GNUC_CONST;
  57. GtkWidget * gtk_link_button_new (const gchar *uri);
  58. GtkWidget * gtk_link_button_new_with_label (const gchar *uri,
  59. const gchar *label);
  60. G_CONST_RETURN gchar *gtk_link_button_get_uri (GtkLinkButton *link_button);
  61. void gtk_link_button_set_uri (GtkLinkButton *link_button,
  62. const gchar *uri);
  63. GtkLinkButtonUriFunc gtk_link_button_set_uri_hook (GtkLinkButtonUriFunc func,
  64. gpointer data,
  65. GDestroyNotify destroy);
  66. gboolean gtk_link_button_get_visited (GtkLinkButton *link_button);
  67. void gtk_link_button_set_visited (GtkLinkButton *link_button,
  68. gboolean visited);
  69. G_END_DECLS
  70. #endif /* __GTK_LINK_BUTTON_H__ */