You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

136 lines
5.1 KiB

  1. /* GTK - The GIMP Toolkit
  2. * Copyright (C) 2000 Red Hat, Inc.
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17. * Boston, MA 02111-1307, USA.
  18. */
  19. /*
  20. * Modified by the GTK+ Team and others 1997-2003. See the AUTHORS
  21. * file for a list of people on the GTK+ Team. See the ChangeLog
  22. * files for a list of changes. These files are distributed with
  23. * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  24. */
  25. #if defined(GTK_DISABLE_SINGLE_INCLUDES) && !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
  26. #error "Only <gtk/gtk.h> can be included directly."
  27. #endif
  28. #ifndef __GTK_MESSAGE_DIALOG_H__
  29. #define __GTK_MESSAGE_DIALOG_H__
  30. #include <gtk/gtkdialog.h>
  31. #include <gtk/gtkenums.h>
  32. G_BEGIN_DECLS
  33. #define GTK_TYPE_MESSAGE_DIALOG (gtk_message_dialog_get_type ())
  34. #define GTK_MESSAGE_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialog))
  35. #define GTK_MESSAGE_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialogClass))
  36. #define GTK_IS_MESSAGE_DIALOG(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_MESSAGE_DIALOG))
  37. #define GTK_IS_MESSAGE_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_MESSAGE_DIALOG))
  38. #define GTK_MESSAGE_DIALOG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_MESSAGE_DIALOG, GtkMessageDialogClass))
  39. typedef struct _GtkMessageDialog GtkMessageDialog;
  40. typedef struct _GtkMessageDialogClass GtkMessageDialogClass;
  41. struct _GtkMessageDialog
  42. {
  43. /*< private >*/
  44. GtkDialog parent_instance;
  45. GtkWidget *GSEAL (image);
  46. GtkWidget *GSEAL (label);
  47. };
  48. struct _GtkMessageDialogClass
  49. {
  50. GtkDialogClass parent_class;
  51. /* Padding for future expansion */
  52. void (*_gtk_reserved1) (void);
  53. void (*_gtk_reserved2) (void);
  54. void (*_gtk_reserved3) (void);
  55. void (*_gtk_reserved4) (void);
  56. };
  57. /**
  58. * GtkButtonsType:
  59. * @GTK_BUTTONS_NONE: no buttons at all
  60. * @GTK_BUTTONS_OK: an OK button
  61. * @GTK_BUTTONS_CLOSE: a Close button
  62. * @GTK_BUTTONS_CANCEL: a Cancel button
  63. * @GTK_BUTTONS_YES_NO: Yes and No buttons
  64. * @GTK_BUTTONS_OK_CANCEL: OK and Cancel buttons
  65. *
  66. * Prebuilt sets of buttons for the dialog. If
  67. * none of these choices are appropriate, simply use %GTK_BUTTONS_NONE
  68. * then call gtk_dialog_add_buttons().
  69. * <note>
  70. * Please note that %GTK_BUTTONS_OK, %GTK_BUTTONS_YES_NO
  71. * and %GTK_BUTTONS_OK_CANCEL are discouraged by the
  72. * <ulink url="http://library.gnome.org/devel/hig-book/stable/">GNOME HIG</ulink>.
  73. * </note>
  74. */
  75. typedef enum
  76. {
  77. GTK_BUTTONS_NONE,
  78. GTK_BUTTONS_OK,
  79. GTK_BUTTONS_CLOSE,
  80. GTK_BUTTONS_CANCEL,
  81. GTK_BUTTONS_YES_NO,
  82. GTK_BUTTONS_OK_CANCEL
  83. } GtkButtonsType;
  84. GType gtk_message_dialog_get_type (void) G_GNUC_CONST;
  85. GtkWidget* gtk_message_dialog_new (GtkWindow *parent,
  86. GtkDialogFlags flags,
  87. GtkMessageType type,
  88. GtkButtonsType buttons,
  89. const gchar *message_format,
  90. ...) G_GNUC_PRINTF (5, 6);
  91. GtkWidget* gtk_message_dialog_new_with_markup (GtkWindow *parent,
  92. GtkDialogFlags flags,
  93. GtkMessageType type,
  94. GtkButtonsType buttons,
  95. const gchar *message_format,
  96. ...) G_GNUC_PRINTF (5, 6);
  97. void gtk_message_dialog_set_image (GtkMessageDialog *dialog,
  98. GtkWidget *image);
  99. GtkWidget * gtk_message_dialog_get_image (GtkMessageDialog *dialog);
  100. void gtk_message_dialog_set_markup (GtkMessageDialog *message_dialog,
  101. const gchar *str);
  102. void gtk_message_dialog_format_secondary_text (GtkMessageDialog *message_dialog,
  103. const gchar *message_format,
  104. ...) G_GNUC_PRINTF (2, 3);
  105. void gtk_message_dialog_format_secondary_markup (GtkMessageDialog *message_dialog,
  106. const gchar *message_format,
  107. ...) G_GNUC_PRINTF (2, 3);
  108. GtkWidget *gtk_message_dialog_get_message_area (GtkMessageDialog *message_dialog);
  109. G_END_DECLS
  110. #endif /* __GTK_MESSAGE_DIALOG_H__ */