mp3splt-gtk
splitpoints_window.h
Go to the documentation of this file.
1 /**********************************************************
2  *
3  * mp3splt-gtk -- utility based on mp3splt,
4  * for mp3/ogg splitting without decoding
5  *
6  * Copyright (c) 2005-2012 Alexandru Munteanu - m@ioalex.net
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
27  * USA.
28  *
29  *********************************************************/
30 
31 /*!********************************************************
32  * \file
33  *
34  * header of splitpoints_window.c
35  *********************************************************/
36 
37 #ifndef SPLITPOINTS_WINDOW_H
38 
39 #define SPLITPOINTS_WINDOW_H
40 
41 #include "all_includes.h"
42 
44 enum {
45  COL_CHECK = 0,
46  COL_DESCRIPTION = 1,
47  COL_MINUTES = 2,
48  COL_SECONDS = 3,
49  COL_HUNDR_SECS = 4,
50  COL_NUMBER = 5,
51  COL_PREVIEW = 6,
52  COL_SPLIT_PREVIEW = 7,
53  //tags
54  COL_TITLE = 8,
55  COL_ARTIST = 9,
56  COL_ALBUM = 10,
57  COL_GENRE = 11,
58  COL_YEAR = 12,
59  COL_TRACK = 13,
60  COL_COMMENT = 14,
61  NUM_COLUMNS = 15
62 } tree_columns;
63 
64 gchar *get_splitpoint_name(gint index, ui_state *ui);
66 void select_splitpoint(gint index, gui_state *gui);
67 gint get_splitpoint_time(gint this_splitpoint, ui_state *ui);
68 void remove_splitpoint(gint index,gint stop_preview, ui_state *ui);
69 void update_splitpoint(gint index, Split_point new_point, ui_state *ui);
70 void update_splitpoint_from_time(gint index, gdouble time, ui_state *ui);
71 void update_splitpoint_check(gint index, ui_state *ui);
72 void update_minutes_from_spinner(GtkWidget *widget, ui_state *ui);
73 void update_seconds_from_spinner(GtkWidget *widget, ui_state *ui);
74 void update_hundr_secs_from_spinner(GtkWidget *widget, ui_state *ui);
75 void add_splitpoint_from_player(GtkWidget *widget, ui_state *ui);
76 void add_row(gint checked, ui_state *ui);
77 GtkWidget *create_splitpoints_frame(ui_state *ui);
79 void clear_current_description(ui_state *ui);
80 void copy_filename_to_current_description(const gchar *fname, ui_state *ui);
81 void remove_all_rows(GtkWidget *widget, ui_state *ui);
82 
84 void create_trim_silence_window(GtkWidget *button, ui_state *ui);
85 
86 #endif
87