[21038] | 1 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- |
---|
| 2 | |
---|
| 3 | nautilus-cd-burner.c: easy to use cd burner software |
---|
| 4 | |
---|
[21564] | 5 | Copyright (C) 2002-2004 Red Hat, Inc. |
---|
[21038] | 6 | |
---|
| 7 | This program is free software; you can redistribute it and/or |
---|
| 8 | modify it under the terms of the GNU General Public License as |
---|
| 9 | published by the Free Software Foundation; either version 2 of the |
---|
| 10 | License, or (at your option) any later version. |
---|
| 11 | |
---|
| 12 | This program is distributed in the hope that it will be useful, |
---|
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 15 | General Public License for more details. |
---|
| 16 | |
---|
| 17 | You should have received a copy of the GNU General Public |
---|
| 18 | License along with this program; if not, write to the |
---|
| 19 | Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
---|
| 20 | Boston, MA 02111-1307, USA. |
---|
| 21 | |
---|
| 22 | Authors: Alexander Larsson <alexl@redhat.com> |
---|
[21564] | 23 | Bastien Nocera <hadess@hadess.net> |
---|
[21038] | 24 | */ |
---|
| 25 | #include "config.h" |
---|
| 26 | #include <libgnome/gnome-i18n.h> |
---|
| 27 | #include <glib/glist.h> |
---|
| 28 | #include <gtk/gtkwindow.h> |
---|
| 29 | |
---|
| 30 | #include "cd-drive.h" |
---|
| 31 | #include "cd-recorder.h" |
---|
| 32 | |
---|
| 33 | /* UI callbacks: */ |
---|
| 34 | extern void cd_progress_set_text (const char *text); |
---|
| 35 | extern void cd_progress_set_fraction (double fraction); |
---|
| 36 | extern void cd_progress_set_image_spinning (gboolean spinning); |
---|
| 37 | extern void cd_progress_set_cancel_func (CancelFunc cancel_func, |
---|
| 38 | gboolean cancel_dangerous, |
---|
| 39 | gpointer user_data); |
---|
| 40 | GtkWindow * cd_progress_get_window (void); |
---|
| 41 | |
---|
| 42 | |
---|