add playlist open/save buttons
[rugen] / src / page.h
1 /*
2 * page.h -- Page handling
3 * Copyright (C) 2002-2003 Charles Yates <charles.yates@pandora.be>
4 * Copyright (C) 2010 Dan Dennedy <dan@dennedy.org>
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 Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 #ifndef _DV1394_PAGE_
22 #define _DV1394_PAGE_
23
24 #include "dv1394app.h"
25 #include <gtk/gtk.h>
26
27 /** Page structure.
28 */
29
30 struct page_t
31 {
32 GtkWidget *( *get_widget )( page );
33 void ( *get_toolbar_info )( page, GtkIconSize, GtkWidget **, char ** );
34 void ( *on_connect )( page );
35 void ( *on_disconnect )( page );
36 void ( *on_unit_change )( page, int );
37 void ( *show_status )( page, mvcp_status );
38 void ( *close )( page );
39 };
40
41 /* page api */
42 extern GtkWidget *page_get_widget( page );
43 extern void page_get_toolbar_info( page, GtkIconSize, GtkWidget **, char ** );
44 extern void page_on_connect( page );
45 extern void page_on_disconnect( page );
46 extern void page_on_unit_change( page, int );
47 extern void page_show_status( page, mvcp_status );
48 extern void page_close( page );
49
50 /* page factories */
51 extern page page_clips_init( dv1394app, struct page_t* );
52 extern page page_command_init( dv1394app );
53 extern page page_status_init( dv1394app, struct page_t* );
54 extern page page_units_init( dv1394app );
55 extern page page_operate_init( dv1394app );
56
57 #endif