Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

91 строка
3.6 KiB

  1. /*
  2. * GTK - The GIMP Toolkit
  3. * Copyright (C) 1998, 1999 Red Hat, Inc.
  4. * All rights reserved.
  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 License as
  8. * published by the Free Software Foundation; either version 2 of the
  9. * 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 the Gnome Library; see the file COPYING.LIB. If not,
  18. * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. * Boston, MA 02111-1307, USA.
  20. */
  21. /*
  22. * Author: James Henstridge <james@daa.com.au>
  23. *
  24. * Modified by the GTK+ Team and others 2003. See the AUTHORS
  25. * file for a list of people on the GTK+ Team. See the ChangeLog
  26. * files for a list of changes. These files are distributed with
  27. * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  28. */
  29. #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
  30. #error "Only <gtk/gtk.h> can be included directly."
  31. #endif
  32. #ifndef __GTK_RADIO_ACTION_H__
  33. #define __GTK_RADIO_ACTION_H__
  34. #include <gtk/gtktoggleaction.h>
  35. G_BEGIN_DECLS
  36. #define GTK_TYPE_RADIO_ACTION (gtk_radio_action_get_type ())
  37. #define GTK_RADIO_ACTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_RADIO_ACTION, GtkRadioAction))
  38. #define GTK_RADIO_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_RADIO_ACTION, GtkRadioActionClass))
  39. #define GTK_IS_RADIO_ACTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_RADIO_ACTION))
  40. #define GTK_IS_RADIO_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_RADIO_ACTION))
  41. #define GTK_RADIO_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GTK_TYPE_RADIO_ACTION, GtkRadioActionClass))
  42. typedef struct _GtkRadioAction GtkRadioAction;
  43. typedef struct _GtkRadioActionPrivate GtkRadioActionPrivate;
  44. typedef struct _GtkRadioActionClass GtkRadioActionClass;
  45. struct _GtkRadioAction
  46. {
  47. GtkToggleAction parent;
  48. /*< private >*/
  49. GtkRadioActionPrivate *GSEAL (private_data);
  50. };
  51. struct _GtkRadioActionClass
  52. {
  53. GtkToggleActionClass parent_class;
  54. void (* changed) (GtkRadioAction *action, GtkRadioAction *current);
  55. /* Padding for future expansion */
  56. void (*_gtk_reserved1) (void);
  57. void (*_gtk_reserved2) (void);
  58. void (*_gtk_reserved3) (void);
  59. void (*_gtk_reserved4) (void);
  60. };
  61. GType gtk_radio_action_get_type (void) G_GNUC_CONST;
  62. GtkRadioAction *gtk_radio_action_new (const gchar *name,
  63. const gchar *label,
  64. const gchar *tooltip,
  65. const gchar *stock_id,
  66. gint value);
  67. GSList *gtk_radio_action_get_group (GtkRadioAction *action);
  68. void gtk_radio_action_set_group (GtkRadioAction *action,
  69. GSList *group);
  70. gint gtk_radio_action_get_current_value (GtkRadioAction *action);
  71. void gtk_radio_action_set_current_value (GtkRadioAction *action,
  72. gint current_value);
  73. G_END_DECLS
  74. #endif /* __GTK_RADIO_ACTION_H__ */