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
35 /* ----------------------------------------------------------------------------
36 GtkAssertDialog helpers
37 ---------------------------------------------------------------------------- */
39 GtkWidget
*gtk_assert_dialog_add_button_to (GtkBox
*box
, const gchar
*label
,
42 /* create the button */
43 GtkWidget
*button
= gtk_button_new_with_mnemonic (label
);
44 gtk_widget_set_can_default(button
, true);
46 /* add a stock icon inside it */
47 GtkWidget
*image
= gtk_image_new_from_stock (stock
, GTK_ICON_SIZE_BUTTON
);
48 #if GTK_CHECK_VERSION(2,6,0)
49 gtk_button_set_image (GTK_BUTTON (button
), image
);
52 /* add to the given (container) widget */
54 gtk_box_pack_end (box
, button
, FALSE
, TRUE
, 8);
59 GtkWidget
*gtk_assert_dialog_add_button (GtkAssertDialog
*dlg
, const gchar
*label
,
60 const gchar
*stock
, gint response_id
)
62 /* create the button */
63 GtkWidget
* button
= gtk_assert_dialog_add_button_to(NULL
, label
, stock
);
65 /* add the button to the dialog's action area */
66 gtk_dialog_add_action_widget (GTK_DIALOG (dlg
), button
, response_id
);
71 void gtk_assert_dialog_append_text_column (GtkWidget
*treeview
, const gchar
*name
, int index
)
73 GtkCellRenderer
*renderer
;
74 GtkTreeViewColumn
*column
;
76 renderer
= gtk_cell_renderer_text_new ();
77 column
= gtk_tree_view_column_new_with_attributes (name
, renderer
,
79 gtk_tree_view_insert_column (GTK_TREE_VIEW (treeview
), column
, index
);
80 gtk_tree_view_column_set_resizable (column
, TRUE
);
81 gtk_tree_view_column_set_reorderable (column
, TRUE
);
84 GtkWidget
*gtk_assert_dialog_create_backtrace_list_model ()
89 /* create list store */
90 store
= gtk_list_store_new (4,
91 G_TYPE_UINT
, /* stack frame number */
92 G_TYPE_STRING
, /* function prototype */
93 G_TYPE_STRING
, /* source file name */
94 G_TYPE_STRING
); /* line number */
96 /* create the tree view */
97 treeview
= gtk_tree_view_new_with_model (GTK_TREE_MODEL(store
));
98 g_object_unref (store
);
99 gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (treeview
), TRUE
);
102 gtk_assert_dialog_append_text_column(treeview
, "#", STACKFRAME_LEVEL_COLIDX
);
103 gtk_assert_dialog_append_text_column(treeview
, "Function Prototype", FUNCTION_PROTOTYPE_COLIDX
);
104 gtk_assert_dialog_append_text_column(treeview
, "Source file", SOURCE_FILE_COLIDX
);
105 gtk_assert_dialog_append_text_column(treeview
, "Line #", LINE_NUMBER_COLIDX
);
110 void gtk_assert_dialog_process_backtrace (GtkAssertDialog
*dlg
)
112 /* set busy cursor */
113 GdkWindow
*parent
= gtk_widget_get_window(GTK_WIDGET(dlg
));
114 GdkCursor
*cur
= gdk_cursor_new (GDK_WATCH
);
115 gdk_window_set_cursor (parent
, cur
);
118 (*dlg
->callback
)(dlg
->userdata
);
120 /* toggle busy cursor */
121 gdk_window_set_cursor (parent
, NULL
);
122 gdk_cursor_unref (cur
);
128 /* ----------------------------------------------------------------------------
129 GtkAssertDialog signal handlers
130 ---------------------------------------------------------------------------- */
132 static void gtk_assert_dialog_expander_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
134 /* status is not yet updated so we need to invert it to get the new one */
135 gboolean expanded
= !gtk_expander_get_expanded (GTK_EXPANDER(dlg
->expander
));
136 gtk_window_set_resizable (GTK_WINDOW (dlg
), expanded
);
138 if (dlg
->callback
== NULL
) /* was the backtrace already processed? */
141 gtk_assert_dialog_process_backtrace (dlg
);
143 /* mark the work as done (so that next activate we won't call the callback again) */
144 dlg
->callback
= NULL
;
147 static void gtk_assert_dialog_save_backtrace_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
151 dialog
= gtk_file_chooser_dialog_new ("Save assert info to file", GTK_WINDOW(dlg
),
152 GTK_FILE_CHOOSER_ACTION_SAVE
,
153 GTK_STOCK_CANCEL
, GTK_RESPONSE_CANCEL
,
154 GTK_STOCK_SAVE
, GTK_RESPONSE_ACCEPT
,
157 if (gtk_dialog_run (GTK_DIALOG (dialog
)) == GTK_RESPONSE_ACCEPT
)
159 char *filename
, *msg
, *backtrace
;
162 filename
= gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog
));
165 msg
= gtk_assert_dialog_get_message (dlg
);
166 backtrace
= gtk_assert_dialog_get_backtrace (dlg
);
168 /* open the file and write all info inside it */
169 fp
= fopen (filename
, "w");
172 fprintf (fp
, "ASSERT INFO:\n%s\n\nBACKTRACE:\n%s", msg
, backtrace
);
182 gtk_widget_destroy (dialog
);
185 static void gtk_assert_dialog_copy_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
187 char *msg
, *backtrace
;
188 GtkClipboard
*clipboard
;
191 msg
= gtk_assert_dialog_get_message (dlg
);
192 backtrace
= gtk_assert_dialog_get_backtrace (dlg
);
194 /* combine both in a single string */
195 str
= g_string_new("");
196 g_string_printf (str
, "ASSERT INFO:\n%s\n\nBACKTRACE:\n%s\n\n", msg
, backtrace
);
198 /* copy everything in default clipboard */
199 clipboard
= gtk_clipboard_get (GDK_SELECTION_CLIPBOARD
);
200 gtk_clipboard_set_text (clipboard
, str
->str
, str
->len
);
202 /* copy everything in primary clipboard too */
203 clipboard
= gtk_clipboard_get (GDK_SELECTION_PRIMARY
);
204 gtk_clipboard_set_text (clipboard
, str
->str
, str
->len
);
208 g_string_free (str
, TRUE
);
211 static void gtk_assert_dialog_continue_callback(GtkWidget
*, GtkAssertDialog
* dlg
)
214 gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(dlg
->shownexttime
)) ?
215 GTK_ASSERT_DIALOG_CONTINUE
: GTK_ASSERT_DIALOG_CONTINUE_SUPPRESSING
;
217 gtk_dialog_response (GTK_DIALOG(dlg
), response
);
221 /* ----------------------------------------------------------------------------
222 GtkAssertDialogClass implementation
223 ---------------------------------------------------------------------------- */
225 static void gtk_assert_dialog_init (GtkAssertDialog
*self
);
226 static void gtk_assert_dialog_class_init (GtkAssertDialogClass
*klass
);
229 GType
gtk_assert_dialog_get_type()
231 static GType assert_dialog_type
;
233 if (!assert_dialog_type
)
235 const GTypeInfo assert_dialog_info
=
237 sizeof (GtkAssertDialogClass
),
238 NULL
, /* base_init */
239 NULL
, /* base_finalize */
240 (GClassInitFunc
) gtk_assert_dialog_class_init
,
241 NULL
, /* class_finalize */
242 NULL
, /* class_data */
243 sizeof (GtkAssertDialog
),
244 16, /* n_preallocs */
245 (GInstanceInitFunc
) gtk_assert_dialog_init
,
248 assert_dialog_type
= g_type_register_static (GTK_TYPE_DIALOG
, "GtkAssertDialog", &assert_dialog_info
, (GTypeFlags
)0);
251 return assert_dialog_type
;
254 static void gtk_assert_dialog_class_init(GtkAssertDialogClass
*)
256 /* no special initializations required */
259 static void gtk_assert_dialog_init(GtkAssertDialog
* dlg
)
261 GtkWidget
*continuebtn
;
264 GtkWidget
*vbox
, *hbox
, *image
;
266 /* start the main vbox */
267 gtk_widget_push_composite_child ();
268 vbox
= gtk_vbox_new (FALSE
, 8);
269 gtk_container_set_border_width (GTK_CONTAINER(vbox
), 8);
270 gtk_box_pack_start(GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dlg
))), vbox
, true, true, 5);
273 /* add the icon+message hbox */
274 hbox
= gtk_hbox_new (FALSE
, 0);
275 gtk_box_pack_start (GTK_BOX(vbox
), hbox
, FALSE
, FALSE
, 0);
278 image
= gtk_image_new_from_stock (GTK_STOCK_DIALOG_ERROR
, GTK_ICON_SIZE_DIALOG
);
279 gtk_box_pack_start (GTK_BOX(hbox
), image
, FALSE
, FALSE
, 12);
282 GtkWidget
*vbox2
, *info
;
285 vbox2
= gtk_vbox_new (FALSE
, 0);
286 gtk_box_pack_start (GTK_BOX (hbox
), vbox2
, TRUE
, TRUE
, 0);
287 info
= gtk_label_new ("An assertion failed!");
288 gtk_box_pack_start (GTK_BOX(vbox2
), info
, TRUE
, TRUE
, 8);
291 dlg
->message
= gtk_label_new (NULL
);
292 gtk_label_set_selectable (GTK_LABEL (dlg
->message
), TRUE
);
293 gtk_label_set_line_wrap (GTK_LABEL (dlg
->message
), TRUE
);
294 gtk_label_set_justify (GTK_LABEL (dlg
->message
), GTK_JUSTIFY_LEFT
);
295 gtk_widget_set_size_request (GTK_WIDGET(dlg
->message
), 450, -1);
297 gtk_box_pack_end (GTK_BOX(vbox2
), GTK_WIDGET(dlg
->message
), TRUE
, TRUE
, 8);
300 /* add the expander */
301 dlg
->expander
= gtk_expander_new_with_mnemonic ("Back_trace:");
302 gtk_box_pack_start (GTK_BOX(vbox
), dlg
->expander
, TRUE
, TRUE
, 0);
303 g_signal_connect (GTK_EXPANDER(dlg
->expander
), "activate",
304 G_CALLBACK(gtk_assert_dialog_expander_callback
), dlg
);
308 GtkWidget
*hbox
, *vbox
, *button
, *sw
;
310 /* create expander's vbox */
311 vbox
= gtk_vbox_new (FALSE
, 0);
312 gtk_container_add (GTK_CONTAINER (dlg
->expander
), vbox
);
314 /* add a scrollable window under the expander */
315 sw
= gtk_scrolled_window_new (NULL
, NULL
);
316 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw
), GTK_SHADOW_ETCHED_IN
);
317 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw
), GTK_POLICY_AUTOMATIC
,
318 GTK_POLICY_AUTOMATIC
);
319 gtk_box_pack_start (GTK_BOX(vbox
), sw
, TRUE
, TRUE
, 8);
321 /* add the treeview to the scrollable window */
322 dlg
->treeview
= gtk_assert_dialog_create_backtrace_list_model ();
323 gtk_widget_set_size_request (GTK_WIDGET(dlg
->treeview
), -1, 180);
324 gtk_container_add (GTK_CONTAINER (sw
), dlg
->treeview
);
326 /* create button's hbox */
327 hbox
= gtk_hbutton_box_new ();
328 gtk_box_pack_end (GTK_BOX(vbox
), hbox
, FALSE
, FALSE
, 0);
329 gtk_button_box_set_layout (GTK_BUTTON_BOX(hbox
), GTK_BUTTONBOX_END
);
331 /* add the buttons */
332 button
= gtk_assert_dialog_add_button_to (GTK_BOX(hbox
), "Save to _file",
334 g_signal_connect (button
, "clicked",
335 G_CALLBACK(gtk_assert_dialog_save_backtrace_callback
), dlg
);
337 button
= gtk_assert_dialog_add_button_to (GTK_BOX(hbox
), "Copy to clip_board",
339 g_signal_connect (button
, "clicked", G_CALLBACK(gtk_assert_dialog_copy_callback
), dlg
);
342 /* add the checkbutton */
343 dlg
->shownexttime
= gtk_check_button_new_with_mnemonic("Show this _dialog the next time");
344 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(dlg
->shownexttime
), TRUE
);
345 gtk_box_pack_end(GTK_BOX(gtk_dialog_get_action_area(GTK_DIALOG(dlg
))), dlg
->shownexttime
, false, true, 8);
347 /* add the stop button */
348 gtk_assert_dialog_add_button (dlg
, "_Stop", GTK_STOCK_QUIT
, GTK_ASSERT_DIALOG_STOP
);
350 /* add the continue button */
351 continuebtn
= gtk_assert_dialog_add_button (dlg
, "_Continue", GTK_STOCK_YES
, GTK_ASSERT_DIALOG_CONTINUE
);
352 gtk_dialog_set_default_response (GTK_DIALOG (dlg
), GTK_ASSERT_DIALOG_CONTINUE
);
353 g_signal_connect (continuebtn
, "clicked", G_CALLBACK(gtk_assert_dialog_continue_callback
), dlg
);
355 /* complete creation */
356 dlg
->callback
= NULL
;
357 dlg
->userdata
= NULL
;
359 /* the resizable property of this window is modified by the expander:
360 when it's collapsed, the window must be non-resizable! */
361 gtk_window_set_resizable (GTK_WINDOW (dlg
), FALSE
);
362 gtk_widget_pop_composite_child ();
363 gtk_widget_show_all (GTK_WIDGET(dlg
));
368 /* ----------------------------------------------------------------------------
369 GtkAssertDialog public API
370 ---------------------------------------------------------------------------- */
372 gchar
*gtk_assert_dialog_get_message (GtkAssertDialog
*dlg
)
375 1) returned string must g_free()d !
376 2) Pango markup is automatically stripped off by GTK
378 return g_strdup (gtk_label_get_text (GTK_LABEL(dlg
->message
)));
381 gchar
*gtk_assert_dialog_get_backtrace (GtkAssertDialog
*dlg
)
383 gchar
*function
, *sourcefile
, *linenum
;
390 g_return_val_if_fail (GTK_IS_ASSERT_DIALOG (dlg
), NULL
);
391 model
= gtk_tree_view_get_model (GTK_TREE_VIEW(dlg
->treeview
));
392 string
= g_string_new("");
394 /* iterate over the list */
395 if (!gtk_tree_model_get_iter_first (model
, &iter
))
400 /* append this stack frame's info to the string */
401 gtk_tree_model_get(model
, &iter
,
402 STACKFRAME_LEVEL_COLIDX
, &count
,
403 FUNCTION_PROTOTYPE_COLIDX
, &function
,
404 SOURCE_FILE_COLIDX
, &sourcefile
,
405 LINE_NUMBER_COLIDX
, &linenum
,
408 g_string_append_printf(string
, "[%u] %s",
410 if (sourcefile
[0] != '\0')
411 g_string_append_printf (string
, " %s", sourcefile
);
412 if (linenum
[0] != '\0')
413 g_string_append_printf (string
, ":%s", linenum
);
414 g_string_append (string
, "\n");
420 } while (gtk_tree_model_iter_next (model
, &iter
));
422 /* returned string must g_free()d */
423 return g_string_free (string
, FALSE
);
426 void gtk_assert_dialog_set_message(GtkAssertDialog
*dlg
, const gchar
*msg
)
428 /* prepend and append the <b> tag
429 NOTE: g_markup_printf_escaped() is not used because it's available
430 only for glib >= 2.4 */
431 gchar
*escaped_msg
= g_markup_escape_text (msg
, -1);
432 gchar
*decorated_msg
= g_strdup_printf ("<b>%s</b>", escaped_msg
);
434 g_return_if_fail (GTK_IS_ASSERT_DIALOG (dlg
));
435 gtk_label_set_markup (GTK_LABEL(dlg
->message
), decorated_msg
);
437 g_free (decorated_msg
);
438 g_free (escaped_msg
);
441 void gtk_assert_dialog_set_backtrace_callback(GtkAssertDialog
*assertdlg
,
442 GtkAssertDialogStackFrameCallback callback
,
445 assertdlg
->callback
= callback
;
446 assertdlg
->userdata
= userdata
;
449 void gtk_assert_dialog_append_stack_frame(GtkAssertDialog
*dlg
,
450 const gchar
*function
,
451 const gchar
*sourcefile
,
459 g_return_if_fail (GTK_IS_ASSERT_DIALOG (dlg
));
460 model
= gtk_tree_view_get_model (GTK_TREE_VIEW(dlg
->treeview
));
462 /* how many items are in the list up to now ? */
463 count
= gtk_tree_model_iter_n_children (model
, NULL
);
465 linenum
= g_string_new("");
466 if ( line_number
!= 0 )
467 g_string_printf (linenum
, "%u", line_number
);
469 /* add data to the list store */
470 gtk_list_store_append (GTK_LIST_STORE(model
), &iter
);
471 gtk_list_store_set (GTK_LIST_STORE(model
), &iter
,
472 STACKFRAME_LEVEL_COLIDX
, count
+1, /* start from 1 and not from 0 */
473 FUNCTION_PROTOTYPE_COLIDX
, function
,
474 SOURCE_FILE_COLIDX
, sourcefile
,
475 LINE_NUMBER_COLIDX
, linenum
->str
,
478 g_string_free (linenum
, TRUE
);
481 GtkWidget
*gtk_assert_dialog_new(void)
483 void* dialog
= g_object_new(GTK_TYPE_ASSERT_DIALOG
, NULL
);
485 return GTK_WIDGET (dialog
);