Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

101 Zeilen
4.4 KiB

  1. /* GTK - The GIMP Toolkit
  2. * Copyright (C) 1998 David Abilleira Freijeiro <odaf@nexo.es>
  3. * All rights reserved
  4. * Based on gnome-color-picker by Federico Mena <federico@nuclecu.unam.mx>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Library General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Library General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Library General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Cambridge, MA 02139, USA.
  19. */
  20. /*
  21. * Modified by the GTK+ Team and others 2003. See the AUTHORS
  22. * file for a list of people on the GTK+ Team. See the ChangeLog
  23. * files for a list of changes. These files are distributed with
  24. * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  25. */
  26. #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
  27. #error "Only <gtk/gtk.h> can be included directly."
  28. #endif
  29. #ifndef __GTK_FONT_BUTTON_H__
  30. #define __GTK_FONT_BUTTON_H__
  31. #include <gtk/gtkbutton.h>
  32. G_BEGIN_DECLS
  33. /* GtkFontButton is a button widget that allow user to select a font.
  34. */
  35. #define GTK_TYPE_FONT_BUTTON (gtk_font_button_get_type ())
  36. #define GTK_FONT_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_FONT_BUTTON, GtkFontButton))
  37. #define GTK_FONT_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_FONT_BUTTON, GtkFontButtonClass))
  38. #define GTK_IS_FONT_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_FONT_BUTTON))
  39. #define GTK_IS_FONT_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_FONT_BUTTON))
  40. #define GTK_FONT_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_FONT_BUTTON, GtkFontButtonClass))
  41. typedef struct _GtkFontButton GtkFontButton;
  42. typedef struct _GtkFontButtonClass GtkFontButtonClass;
  43. typedef struct _GtkFontButtonPrivate GtkFontButtonPrivate;
  44. struct _GtkFontButton {
  45. GtkButton button;
  46. /*< private >*/
  47. GtkFontButtonPrivate *GSEAL (priv);
  48. };
  49. struct _GtkFontButtonClass {
  50. GtkButtonClass parent_class;
  51. /* font_set signal is emitted when font is chosen */
  52. void (* font_set) (GtkFontButton *gfp);
  53. /* Padding for future expansion */
  54. void (*_gtk_reserved1) (void);
  55. void (*_gtk_reserved2) (void);
  56. void (*_gtk_reserved3) (void);
  57. void (*_gtk_reserved4) (void);
  58. };
  59. GType gtk_font_button_get_type (void) G_GNUC_CONST;
  60. GtkWidget *gtk_font_button_new (void);
  61. GtkWidget *gtk_font_button_new_with_font (const gchar *fontname);
  62. G_CONST_RETURN gchar *gtk_font_button_get_title (GtkFontButton *font_button);
  63. void gtk_font_button_set_title (GtkFontButton *font_button,
  64. const gchar *title);
  65. gboolean gtk_font_button_get_use_font (GtkFontButton *font_button);
  66. void gtk_font_button_set_use_font (GtkFontButton *font_button,
  67. gboolean use_font);
  68. gboolean gtk_font_button_get_use_size (GtkFontButton *font_button);
  69. void gtk_font_button_set_use_size (GtkFontButton *font_button,
  70. gboolean use_size);
  71. G_CONST_RETURN gchar* gtk_font_button_get_font_name (GtkFontButton *font_button);
  72. gboolean gtk_font_button_set_font_name (GtkFontButton *font_button,
  73. const gchar *fontname);
  74. gboolean gtk_font_button_get_show_style (GtkFontButton *font_button);
  75. void gtk_font_button_set_show_style (GtkFontButton *font_button,
  76. gboolean show_style);
  77. gboolean gtk_font_button_get_show_size (GtkFontButton *font_button);
  78. void gtk_font_button_set_show_size (GtkFontButton *font_button,
  79. gboolean show_size);
  80. G_END_DECLS
  81. #endif /* __GTK_FONT_BUTTON_H__ */