1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/* CTK - The GIMP Toolkit
 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

/*
 * Modified by the CTK+ Team and others 1997-2000.  See the AUTHORS
 * file for a list of people on the CTK+ Team.  See the ChangeLog
 * files for a list of changes.  These files are distributed with
 * CTK+ at ftp://ftp.ctk.org/pub/ctk/.
 */

#ifndef __CTK_DIALOG_H__
#define __CTK_DIALOG_H__

#if !defined (__CTK_H_INSIDE__) && !defined (CTK_COMPILATION)
#error "Only <ctk/ctk.h> can be included directly."
#endif

#include <ctk/ctkwindow.h>

G_BEGIN_DECLS

/**
 * CtkDialogFlags:
 * @CTK_DIALOG_MODAL: Make the constructed dialog modal,
 *     see ctk_window_set_modal()
 * @CTK_DIALOG_DESTROY_WITH_PARENT: Destroy the dialog when its
 *     parent is destroyed, see ctk_window_set_destroy_with_parent()
 * @CTK_DIALOG_USE_HEADER_BAR: Create dialog with actions in header
 *     bar instead of action area. Since 3.12.
 *
 * Flags used to influence dialog construction.
 */
typedef enum
{
  CTK_DIALOG_MODAL               = 1 << 0,
  CTK_DIALOG_DESTROY_WITH_PARENT = 1 << 1,
  CTK_DIALOG_USE_HEADER_BAR      = 1 << 2
} CtkDialogFlags;

/**
 * CtkResponseType:
 * @CTK_RESPONSE_NONE: Returned if an action widget has no response id,
 *     or if the dialog gets programmatically hidden or destroyed
 * @CTK_RESPONSE_REJECT: Generic response id, not used by CTK+ dialogs
 * @CTK_RESPONSE_ACCEPT: Generic response id, not used by CTK+ dialogs
 * @CTK_RESPONSE_DELETE_EVENT: Returned if the dialog is deleted
 * @CTK_RESPONSE_OK: Returned by OK buttons in CTK+ dialogs
 * @CTK_RESPONSE_CANCEL: Returned by Cancel buttons in CTK+ dialogs
 * @CTK_RESPONSE_CLOSE: Returned by Close buttons in CTK+ dialogs
 * @CTK_RESPONSE_YES: Returned by Yes buttons in CTK+ dialogs
 * @CTK_RESPONSE_NO: Returned by No buttons in CTK+ dialogs
 * @CTK_RESPONSE_APPLY: Returned by Apply buttons in CTK+ dialogs
 * @CTK_RESPONSE_HELP: Returned by Help buttons in CTK+ dialogs
 *
 * Predefined values for use as response ids in ctk_dialog_add_button().
 * All predefined values are negative; CTK+ leaves values of 0 or greater for
 * application-defined response ids.
 */
typedef enum
{
  CTK_RESPONSE_NONE         = -1,
  CTK_RESPONSE_REJECT       = -2,
  CTK_RESPONSE_ACCEPT       = -3,
  CTK_RESPONSE_DELETE_EVENT = -4,
  CTK_RESPONSE_OK           = -5,
  CTK_RESPONSE_CANCEL       = -6,
  CTK_RESPONSE_CLOSE        = -7,
  CTK_RESPONSE_YES          = -8,
  CTK_RESPONSE_NO           = -9,
  CTK_RESPONSE_APPLY        = -10,
  CTK_RESPONSE_HELP         = -11
} CtkResponseType;


#define CTK_TYPE_DIALOG                  (ctk_dialog_get_type ())
#define CTK_DIALOG(obj)                  (G_TYPE_CHECK_INSTANCE_CAST ((obj), CTK_TYPE_DIALOG, CtkDialog))
#define CTK_DIALOG_CLASS(klass)          (G_TYPE_CHECK_CLASS_CAST ((klass), CTK_TYPE_DIALOG, CtkDialogClass))
#define CTK_IS_DIALOG(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CTK_TYPE_DIALOG))
#define CTK_IS_DIALOG_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), CTK_TYPE_DIALOG))
#define CTK_DIALOG_GET_CLASS(obj)        (G_TYPE_INSTANCE_GET_CLASS ((obj), CTK_TYPE_DIALOG, CtkDialogClass))


typedef struct _CtkDialog              CtkDialog;
typedef struct _CtkDialogPrivate       CtkDialogPrivate;
typedef struct _CtkDialogClass         CtkDialogClass;

/**
 * CtkDialog:
 *
 * The #CtkDialog-struct contains only private fields
 * and should not be directly accessed.
 */
struct _CtkDialog
{
  CtkWindow window;

  /*< private >*/
  CtkDialogPrivate *priv;
};

/**
 * CtkDialogClass:
 * @parent_class: The parent class.
 * @response: Signal emitted when an action widget is activated.
 * @close: Signal emitted when the user uses a keybinding to close the dialog.
 */
struct _CtkDialogClass
{
  CtkWindowClass parent_class;

  /*< public >*/

  void (* response) (CtkDialog *dialog, gint response_id);

  /* Keybinding signals */

  void (* close)    (CtkDialog *dialog);

  /*< private >*/

  /* Padding for future expansion */
  void (*_ctk_reserved1) (void);
  void (*_ctk_reserved2) (void);
  void (*_ctk_reserved3) (void);
  void (*_ctk_reserved4) (void);
};


CDK_AVAILABLE_IN_ALL
GType      ctk_dialog_get_type (void) G_GNUC_CONST;
CDK_AVAILABLE_IN_ALL
CtkWidget* ctk_dialog_new      (void);

CDK_AVAILABLE_IN_ALL
CtkWidget* ctk_dialog_new_with_buttons (const gchar     *title,
                                        CtkWindow       *parent,
                                        CtkDialogFlags   flags,
                                        const gchar     *first_button_text,
                                        ...) G_GNUC_NULL_TERMINATED;

CDK_AVAILABLE_IN_ALL
void       ctk_dialog_add_action_widget (CtkDialog   *dialog,
                                         CtkWidget   *child,
                                         gint         response_id);
CDK_AVAILABLE_IN_ALL
CtkWidget* ctk_dialog_add_button        (CtkDialog   *dialog,
                                         const gchar *button_text,
                                         gint         response_id);
CDK_AVAILABLE_IN_ALL
CtkWidget *
ctk_dialog_add_button_with_icon_name (CtkDialog   *dialog,
                                      const gchar *button_text,
                                      const gchar *icon_name,
                                      gint         response_id);
CDK_AVAILABLE_IN_ALL
void       ctk_dialog_add_buttons       (CtkDialog   *dialog,
                                         const gchar *first_button_text,
                                         ...) G_GNUC_NULL_TERMINATED;

CDK_AVAILABLE_IN_ALL
void ctk_dialog_set_response_sensitive (CtkDialog *dialog,
                                        gint       response_id,
                                        gboolean   setting);
CDK_AVAILABLE_IN_ALL
void ctk_dialog_set_default_response   (CtkDialog *dialog,
                                        gint       response_id);
CDK_AVAILABLE_IN_ALL
CtkWidget* ctk_dialog_get_widget_for_response (CtkDialog *dialog,
                                               gint       response_id);
CDK_AVAILABLE_IN_ALL
gint ctk_dialog_get_response_for_widget (CtkDialog *dialog,
                                         CtkWidget *widget);

CDK_DEPRECATED_IN_3_10
gboolean ctk_alternative_dialog_button_order (CdkScreen *screen);
CDK_DEPRECATED_IN_3_10
void     ctk_dialog_set_alternative_button_order (CtkDialog *dialog,
                                                  gint       first_response_id,
                                                  ...);
CDK_DEPRECATED_IN_3_10
void     ctk_dialog_set_alternative_button_order_from_array (CtkDialog *dialog,
                                                             gint       n_params,
                                                             gint      *new_order);

/* Emit response signal */
CDK_AVAILABLE_IN_ALL
void ctk_dialog_response           (CtkDialog *dialog,
                                    gint       response_id);

/* Returns response_id */
CDK_AVAILABLE_IN_ALL
gint ctk_dialog_run                (CtkDialog *dialog);

CDK_AVAILABLE_IN_ALL
CtkWidget * ctk_dialog_get_action_area  (CtkDialog *dialog);
CDK_AVAILABLE_IN_ALL
CtkWidget * ctk_dialog_get_content_area (CtkDialog *dialog);
CDK_AVAILABLE_IN_3_12
CtkWidget * ctk_dialog_get_header_bar   (CtkDialog *dialog);

G_DEFINE_AUTOPTR_CLEANUP_FUNC(CtkDialog, g_object_unref)<--- There is an unknown macro here somewhere. Configuration is required. If G_DEFINE_AUTOPTR_CLEANUP_FUNC is a macro then please configure it.

G_END_DECLS

#endif /* __CTK_DIALOG_H__ */