blob: 55778bf1661df78ea177e79c49014617c552f8e5 [file] [log] [blame]
/*
* Copyright (C) 2009, 2010 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License (not later!)
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
#ifndef _TRACE_GUI
#define _TRACE_GUI
#include <gtk/gtk.h>
enum trace_dialog_type {
TRACE_GUI_INFO,
TRACE_GUI_WARNING,
TRACE_GUI_ERROR,
};
void trace_show_help(GtkWidget *window, const gchar *link, GError **error);
void trace_dialog(GtkWindow *parent, enum trace_dialog_type type,
gchar *message, ...);
gchar *trace_get_file_dialog(const gchar *title);
#endif /* _TRACE_GUI */