root/sweep/trunk/src/file_dialogs.h

Revision 218, 1.4 kB (checked in by kickback, 7 years ago)

file_dialogs.h: Gtk2 port.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 /*
2  * Sweep, a sound wave editor.
3  *
4  * Copyright (C) 2000 Conrad Parker
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __FILE_DIALOGS_H__
22 #define __FILE_DIALOGS_H__
23
24 #include <sweep/sweep_types.h>
25
26 void
27 mp3_unsupported_dialog (void);
28
29 sw_file_format_t
30 guess_file_format (gchar * pathname);
31
32 gboolean
33 sample_mtime_changed (sw_sample * sample);
34
35 sw_sample *
36 sample_load(const gchar * pathname);
37
38 void
39 sample_load_cb(GtkWidget * wiget, gpointer data);
40
41 void
42 sample_revert_ok_cb (GtkWidget * widget, gpointer data);
43
44 void
45 sample_revert_cb (GtkWidget * widget, gpointer data);
46
47 void
48 sample_save_as_cb(GtkWidget * wiget, gpointer data);
49
50 void
51 sample_save_cb(GtkWidget * wiget, gpointer data);
52
53 void
54 sample_store_and_free_pathname (sw_sample * sample, gchar * pathname);
55
56 #endif /* __FILE_DIALOGS_H__ */
Note: See TracBrowser for help on using the browser.