mp3splt-gtk
split_files.h
1 /**********************************************************
2  *
3  * mp3splt-gtk -- utility based on mp3splt,
4  * for mp3/ogg splitting without decoding
5  *
6  * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr
7  *
8  * http://mp3splt.sourceforge.net/
9  *
10  *********************************************************/
11 
12 /**********************************************************
13  *
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
27  * USA.
28  *
29  *********************************************************/
30 
31 /**********************************************************
32  * Filename: split_files.h
33  *
34  * header of split_files.c
35  *
36  *********************************************************/
37 
38 GtkTreeModel *create_split_model();
39 GtkTreeView *create_split_files_tree();
40 void create_split_columns (GtkTreeView *tree_view);
41 void remove_all_split_rows ();
42 guchar *get_real_naame(guchar *filename);
43 void add_split_row(const gchar *name);
44 void remove_split_selected_row();
45 void queue_files_button_event( GtkWidget *widget,
46  gpointer data );
47 void remove_file_button_event(GtkWidget *widget,
48  gpointer data);
49 GtkWidget *create_queue_buttons_hbox();
50 void split_tree_row_activated (GtkTreeView *tree_view,
51  GtkTreePath *arg1,
52  GtkTreeViewColumn *arg2,
53  gpointer data);
54 void split_selection_changed(GtkTreeSelection *selection,
55  gpointer data);
56 void close_split_popup_window_event( GtkWidget *window,
57  gpointer data );
58 void handle_split_detached_event (GtkHandleBox *handlebox,
59  GtkWidget *widget,
60  gpointer data);
61 GtkWidget *create_split_files();
62 gchar *get_filename_from_split_files(gint number);