1 /* ///////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk/assertdlg_gtk.cpp
3 // Purpose: GtkAssertDialog
4 // Author: Francesco Montorsi
6 // Copyright: (c) 2006 Francesco Montorsi
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////// */
10 #include "wx/wxprec.h"
12 #include "wx/platform.h"
14 #include "wx/gtk/assertdlg_gtk.h"
15 #include "wx/gtk/private/gtk2-compat.h"
19 /* ----------------------------------------------------------------------------
21 ---------------------------------------------------------------------------- */
24 NB: when changing order of the columns also update the gtk_list_store_new() call
25 in gtk_assert_dialog_create_backtrace_list_model() function
27 #define STACKFRAME_LEVEL_COLIDX 0
28 #define FUNCTION_PROTOTYPE_COLIDX 1
29 #define SOURCE_FILE_COLIDX 2
30 #define LINE_NUMBER_COLIDX 3
32 /* ----------------------------------------------------------------------------
33 GtkAssertDialog helpers
34 ---------------------------------------------------------------------------- */
36 GtkWidget
*gtk_assert_dialog_add_button_to (GtkBox
*box
, const gchar
*label
,
39 /* create the button */
40 GtkWidget
*button
= gtk_button_new_with_mnemonic (label
);
41 gtk_widget_set_can_default(button
, true);
43 /* add a stock icon inside it */
44 GtkWidget
*image
= gtk_image_new_from_stock (stock
, GTK_ICON_SIZE_BUTTON
);
45 gtk_button_set_image (GTK_BUTTON (button
), image
);
47 /* add to the given (container) widget */
49 gtk_box_pack_end (box
, button
, FALSE
, TRUE
, 8);
54 GtkWidget
*gtk_assert_dialog_add_button (GtkAssertDialog
*dlg
, const gchar
*label
,
55 const gchar
*stock
, gint response_id
)
57 /* create the button */
58 GtkWidget
* button
= gtk_assert_dialog_add_button_to(NULL
, label
, stock
);
60 /* add the button to the dialog's action area */
61 gtk_dialog_add_action_widget (GTK_DIALOG (dlg
), button
, response_id
);
66 void gtk_assert_dialog_append_text_column (GtkWidget
*treeview
, const gchar
*name
, int index
)
68 GtkCellRenderer
*renderer
;
69 GtkTreeViewColumn
*column
;
71 renderer
= gtk_cell_renderer_text_new ();
72 column
= gtk_tree_view_column_new_with_attributes (name
, renderer
,
74 gtk_tree_view_insert_column (GTK_TREE_VIEW (treeview
), column
, index
);
75 gtk_tree_view_column_set_resizable (column
, TRUE
);
76 gtk_tree_view_column_set_reorderable (column
, TRUE
);
79 GtkWidget
*gtk_assert_dialog_create_backtrace_list_model ()
84 /* create list store */
85 store
= gtk_list_store_new (4,
86 G_TYPE_UINT
, /* stack frame number */
87 G_TYPE_STRING
, /* function prototype */
88 G_TYPE_STRING
, /* source file name */
89 G_TYPE_STRING
); /* line number */
91 /* create the tree view */
92 treeview
= gtk_tree_view_new_with_model (GTK_TREE_MODEL(store
));
93 g_object_unref (store
);
94 gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (treeview
), TRUE
);
97 gtk_assert_dialog_append_text_column(treeview
, "#", STACKFRAME_LEVEL_COLIDX
);
98 gtk_assert_dialog_append_text_column(treeview
, "Function Prototype", FUNCTION_PROTOTYPE_COLIDX
);
99 gtk_assert_dialog_append_text_column(treeview
, "Source file", SOURCE_FILE_COLIDX
);
100 gtk_assert_dialog_append_text_column(treeview
, "Line #", LINE_NUMBER_COLIDX
);
105 void gtk_assert_dialog_process_backtrace (GtkAssertDialog
*dlg
)
107 /* set busy cursor */
108 GdkWindow
*parent
= gtk_widget_get_window(GTK_WIDGET(dlg
));
109 GdkCursor
*cur
= gdk_cursor_new (GDK_WATCH
);
110 gdk_window_set_cursor (parent
, cur
);
113 (*dlg
->callback
)(dlg
->userdata
);
115 /* toggle busy cursor */
116 gdk_window_set_cursor (parent
, NULL
);
120 gdk_cursor_unref (cur
);
125 /* ----------------------------------------------------------------------------
126 GtkAssertDialog signal handlers
127 ---------------------------------------------------------------------------- */
129 static void gtk_assert_dialog_expander_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
131 /* status is not yet updated so we need to invert it to get the new one */
132 gboolean expanded
= !gtk_expander_get_expanded (GTK_EXPANDER(dlg
->expander
));
133 gtk_window_set_resizable (GTK_WINDOW (dlg
), expanded
);
135 if (dlg
->callback
== NULL
) /* was the backtrace already processed? */
138 gtk_assert_dialog_process_backtrace (dlg
);
140 /* mark the work as done (so that next activate we won't call the callback again) */
141 dlg
->callback
= NULL
;
144 static void gtk_assert_dialog_save_backtrace_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
148 dialog
= gtk_file_chooser_dialog_new ("Save assert info to file", GTK_WINDOW(dlg
),
149 GTK_FILE_CHOOSER_ACTION_SAVE
,
150 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
151 GTK_STOCK_SAVE
, GTK_RESPONSE_ACCEPT
,
154 if (gtk_dialog_run (GTK_DIALOG (dialog
)) == GTK_RESPONSE_ACCEPT
)
156 char *filename
, *msg
, *backtrace
;
159 filename
= gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog
));
162 msg
= gtk_assert_dialog_get_message (dlg
);
163 backtrace
= gtk_assert_dialog_get_backtrace (dlg
);
165 /* open the file and write all info inside it */
166 fp
= fopen (filename
, "w");
169 fprintf (fp
, "ASSERT INFO:\n%s\n\nBACKTRACE:\n%s", msg
, backtrace
);
179 gtk_widget_destroy (dialog
);
182 static void gtk_assert_dialog_copy_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
184 char *msg
, *backtrace
;
185 GtkClipboard
*clipboard
;
188 msg
= gtk_assert_dialog_get_message (dlg
);
189 backtrace
= gtk_assert_dialog_get_backtrace (dlg
);
191 /* combine both in a single string */
192 str
= g_string_new("");
193 g_string_printf (str
, "ASSERT INFO:\n%s\n\nBACKTRACE:\n%s\n\n", msg
, backtrace
);
195 /* copy everything in default clipboard */
196 clipboard
= gtk_clipboard_get (GDK_SELECTION_CLIPBOARD
);
197 gtk_clipboard_set_text (clipboard
, str
->str
, str
->len
);
199 /* copy everything in primary clipboard too */
200 clipboard
= gtk_clipboard_get (GDK_SELECTION_PRIMARY
);
201 gtk_clipboard_set_text (clipboard
, str
->str
, str
->len
);
205 g_string_free (str
, TRUE
);
208 static void gtk_assert_dialog_continue_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
211 gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(dlg
->shownexttime
)) ?
212 GTK_ASSERT_DIALOG_CONTINUE
: GTK_ASSERT_DIALOG_CONTINUE_SUPPRESSING
;
214 gtk_dialog_response (GTK_DIALOG(dlg
), response
);
218 /* ----------------------------------------------------------------------------
219 GtkAssertDialogClass implementation
220 ---------------------------------------------------------------------------- */
222 static void gtk_assert_dialog_init (GtkAssertDialog
*self
);
223 static void gtk_assert_dialog_class_init (GtkAssertDialogClass
*klass
);
225 GType
gtk_assert_dialog_get_type()
227 static GType assert_dialog_type
;
229 if (!assert_dialog_type
)
231 const GTypeInfo assert_dialog_info
=
233 sizeof (GtkAssertDialogClass
),
234 NULL
, /* base_init */
235 NULL
, /* base_finalize */
236 (GClassInitFunc
) gtk_assert_dialog_class_init
,
237 NULL
, /* class_finalize */
238 NULL
, /* class_data */
239 sizeof (GtkAssertDialog
),
240 16, /* n_preallocs */
241 (GInstanceInitFunc
) gtk_assert_dialog_init
,
244 assert_dialog_type
= g_type_register_static (GTK_TYPE_DIALOG
, "GtkAssertDialog", &assert_dialog_info
, (GTypeFlags
)0);
247 return assert_dialog_type
;
250 static void gtk_assert_dialog_class_init(GtkAssertDialogClass
*)
252 /* no special initializations required */
255 static void gtk_assert_dialog_init(GtkAssertDialog
* dlg
)
257 GtkWidget
*continuebtn
;
260 GtkWidget
*vbox
, *hbox
, *image
;
262 /* start the main vbox */
263 gtk_widget_push_composite_child ();
264 vbox
= gtk_box_new(GTK_ORIENTATION_VERTICAL
, 8);
265 gtk_container_set_border_width (GTK_CONTAINER(vbox
), 8);
266 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dlg
))), vbox
, true, true, 5);
269 /* add the icon+message hbox */
270 hbox
= gtk_box_new(GTK_ORIENTATION_HORIZONTAL
, 0);
271 gtk_box_pack_start (GTK_BOX(vbox
), hbox
, FALSE
, FALSE
, 0);
274 image
= gtk_image_new_from_stock (GTK_STOCK_DIALOG_ERROR
, GTK_ICON_SIZE_DIALOG
);
275 gtk_box_pack_start (GTK_BOX(hbox
), image
, FALSE
, FALSE
, 12);
278 GtkWidget
*vbox2
, *info
;
281 vbox2
= gtk_box_new(GTK_ORIENTATION_VERTICAL
, 0);
282 gtk_box_pack_start (GTK_BOX (hbox
), vbox2
, TRUE
, TRUE
, 0);
283 info
= gtk_label_new ("An assertion failed!");
284 gtk_box_pack_start (GTK_BOX(vbox2
), info
, TRUE
, TRUE
, 8);
287 dlg
->message
= gtk_label_new (NULL
);
288 gtk_label_set_selectable (GTK_LABEL (dlg
->message
), TRUE
);
289 gtk_label_set_line_wrap (GTK_LABEL (dlg
->message
), TRUE
);
290 gtk_label_set_justify (GTK_LABEL (dlg
->message
), GTK_JUSTIFY_LEFT
);
291 gtk_widget_set_size_request (GTK_WIDGET(dlg
->message
), 450, -1);
293 gtk_box_pack_end (GTK_BOX(vbox2
), GTK_WIDGET(dlg
->message
), TRUE
, TRUE
, 8);
296 /* add the expander */
297 dlg
->expander
= gtk_expander_new_with_mnemonic ("Back_trace:");
298 gtk_box_pack_start (GTK_BOX(vbox
), dlg
->expander
, TRUE
, TRUE
, 0);
299 g_signal_connect (dlg
->expander
, "activate",
300 G_CALLBACK(gtk_assert_dialog_expander_callback
), dlg
);
304 GtkWidget
*hbox
, *vbox
, *button
, *sw
;
306 /* create expander's vbox */
307 vbox
= gtk_box_new(GTK_ORIENTATION_VERTICAL
, 0);
308 gtk_container_add (GTK_CONTAINER (dlg
->expander
), vbox
);
310 /* add a scrollable window under the expander */
311 sw
= gtk_scrolled_window_new (NULL
, NULL
);
312 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw
), GTK_SHADOW_ETCHED_IN
);
313 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw
), GTK_POLICY_AUTOMATIC
,
314 GTK_POLICY_AUTOMATIC
);
315 gtk_box_pack_start (GTK_BOX(vbox
), sw
, TRUE
, TRUE
, 8);
317 /* add the treeview to the scrollable window */
318 dlg
->treeview
= gtk_assert_dialog_create_backtrace_list_model ();
319 gtk_widget_set_size_request (GTK_WIDGET(dlg
->treeview
), -1, 180);
320 gtk_container_add (GTK_CONTAINER (sw
), dlg
->treeview
);
322 /* create button's hbox */
323 hbox
= gtk_button_box_new(GTK_ORIENTATION_HORIZONTAL
);
324 gtk_box_pack_end (GTK_BOX(vbox
), hbox
, FALSE
, FALSE
, 0);
325 gtk_button_box_set_layout (GTK_BUTTON_BOX(hbox
), GTK_BUTTONBOX_END
);
327 /* add the buttons */
328 button
= gtk_assert_dialog_add_button_to (GTK_BOX(hbox
), "Save to _file",
330 g_signal_connect (button
, "clicked",
331 G_CALLBACK(gtk_assert_dialog_save_backtrace_callback
), dlg
);
333 button
= gtk_assert_dialog_add_button_to (GTK_BOX(hbox
), "Copy to clip_board",
335 g_signal_connect (button
, "clicked", G_CALLBACK(gtk_assert_dialog_copy_callback
), dlg
);
338 /* add the checkbutton */
339 dlg
->shownexttime
= gtk_check_button_new_with_mnemonic("Show this _dialog the next time");
340 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(dlg
->shownexttime
), TRUE
);
341 gtk_box_pack_end(GTK_BOX(gtk_dialog_get_action_area(GTK_DIALOG(dlg
))), dlg
->shownexttime
, false, true, 8);
343 /* add the stop button */
344 gtk_assert_dialog_add_button (dlg
, "_Stop", GTK_STOCK_QUIT
, GTK_ASSERT_DIALOG_STOP
);
346 /* add the continue button */
347 continuebtn
= gtk_assert_dialog_add_button (dlg
, "_Continue", GTK_STOCK_YES
, GTK_ASSERT_DIALOG_CONTINUE
);
348 gtk_dialog_set_default_response (GTK_DIALOG (dlg
), GTK_ASSERT_DIALOG_CONTINUE
);
349 g_signal_connect (continuebtn
, "clicked", G_CALLBACK(gtk_assert_dialog_continue_callback
), dlg
);
351 /* complete creation */
352 dlg
->callback
= NULL
;
353 dlg
->userdata
= NULL
;
355 /* the resizable property of this window is modified by the expander:
356 when it's collapsed, the window must be non-resizable! */
357 gtk_window_set_resizable (GTK_WINDOW (dlg
), FALSE
);
358 gtk_widget_pop_composite_child ();
359 gtk_widget_show_all (GTK_WIDGET(dlg
));
362 /* ----------------------------------------------------------------------------
363 GtkAssertDialog public API
364 ---------------------------------------------------------------------------- */
366 gchar
*gtk_assert_dialog_get_message (GtkAssertDialog
*dlg
)
369 1) returned string must g_free()d !
370 2) Pango markup is automatically stripped off by GTK
372 return g_strdup (gtk_label_get_text (GTK_LABEL(dlg
->message
)));
375 gchar
*gtk_assert_dialog_get_backtrace (GtkAssertDialog
*dlg
)
377 gchar
*function
, *sourcefile
, *linenum
;
384 g_return_val_if_fail (GTK_IS_ASSERT_DIALOG (dlg
), NULL
);
385 model
= gtk_tree_view_get_model (GTK_TREE_VIEW(dlg
->treeview
));
386 string
= g_string_new("");
388 /* iterate over the list */
389 if (!gtk_tree_model_get_iter_first (model
, &iter
))
394 /* append this stack frame's info to the string */
395 gtk_tree_model_get(model
, &iter
,
396 STACKFRAME_LEVEL_COLIDX
, &count
,
397 FUNCTION_PROTOTYPE_COLIDX
, &function
,
398 SOURCE_FILE_COLIDX
, &sourcefile
,
399 LINE_NUMBER_COLIDX
, &linenum
,
402 g_string_append_printf(string
, "[%u] %s",
404 if (sourcefile
[0] != '\0')
405 g_string_append_printf (string
, " %s", sourcefile
);
406 if (linenum
[0] != '\0')
407 g_string_append_printf (string
, ":%s", linenum
);
408 g_string_append (string
, "\n");
414 } while (gtk_tree_model_iter_next (model
, &iter
));
416 /* returned string must g_free()d */
417 return g_string_free (string
, FALSE
);
420 void gtk_assert_dialog_set_message(GtkAssertDialog
*dlg
, const gchar
*msg
)
422 /* prepend and append the <b> tag
423 NOTE: g_markup_printf_escaped() is not used because it's available
424 only for glib >= 2.4 */
425 gchar
*escaped_msg
= g_markup_escape_text (msg
, -1);
426 gchar
*decorated_msg
= g_strdup_printf ("<b>%s</b>", escaped_msg
);
428 g_return_if_fail (GTK_IS_ASSERT_DIALOG (dlg
));
429 gtk_label_set_markup (GTK_LABEL(dlg
->message
), decorated_msg
);
431 g_free (decorated_msg
);
432 g_free (escaped_msg
);
435 void gtk_assert_dialog_set_backtrace_callback(GtkAssertDialog
*assertdlg
,
436 GtkAssertDialogStackFrameCallback callback
,
439 assertdlg
->callback
= callback
;
440 assertdlg
->userdata
= userdata
;
443 void gtk_assert_dialog_append_stack_frame(GtkAssertDialog
*dlg
,
444 const gchar
*function
,
445 const gchar
*sourcefile
,
453 g_return_if_fail (GTK_IS_ASSERT_DIALOG (dlg
));
454 model
= gtk_tree_view_get_model (GTK_TREE_VIEW(dlg
->treeview
));
456 /* how many items are in the list up to now ? */
457 count
= gtk_tree_model_iter_n_children (model
, NULL
);
459 linenum
= g_string_new("");
460 if ( line_number
!= 0 )
461 g_string_printf (linenum
, "%u", line_number
);
463 /* add data to the list store */
464 gtk_list_store_append (GTK_LIST_STORE(model
), &iter
);
465 gtk_list_store_set (GTK_LIST_STORE(model
), &iter
,
466 STACKFRAME_LEVEL_COLIDX
, count
+1, /* start from 1 and not from 0 */
467 FUNCTION_PROTOTYPE_COLIDX
, function
,
468 SOURCE_FILE_COLIDX
, sourcefile
,
469 LINE_NUMBER_COLIDX
, linenum
->str
,
472 g_string_free (linenum
, TRUE
);
475 GtkWidget
*gtk_assert_dialog_new(void)
477 void* dialog
= g_object_new(GTK_TYPE_ASSERT_DIALOG
, NULL
);
479 return GTK_WIDGET (dialog
);