995539a948a00fc54b6253baaae1cdefb93cc06c
[rugen] / src / dv1394app.c
1 /*
2 * dv1394app.c -- GTK+ 2 dv1394d client demo
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 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <gtk/gtk.h>
29 #include <gdk/gdkkeysyms.h>
30
31 #include "interface.h"
32 #include "support.h"
33 #include "dv1394app.h"
34 #include "page.h"
35 #include "gtkenhancedscale.h"
36 #include <mvcp/mvcp_remote.h>
37 #include <melted/melted_local.h>
38
39
40 /** Window close event.
41 */
42
43 static gboolean on_main_window_delete_event( GtkWidget *widget, GdkEvent *event, gpointer user_data )
44 {
45 gtk_exit( 0 );
46 return TRUE;
47 }
48
49 static gboolean instance_connect( dv1394app this, char *server, char *port )
50 {
51 if ( this->parser == NULL )
52 {
53 if ( strstr( server, ".conf" ) == NULL )
54 this->parser = mvcp_parser_init_remote( server, atoi( port ) );
55 else
56 this->parser = melted_parser_init_local( );
57
58 this->command = mvcp_init( this->parser );
59
60 if ( strstr( server, ".conf" ) != NULL )
61 mvcp_run( this->command, server );
62
63 if ( mvcp_connect( this->command ) == mvcp_ok )
64 {
65 struct timespec t = { 1, 0 };
66 nanosleep( &t, NULL );
67 //gdk_threads_leave( );
68 dv1394app_connect( this );
69 //gdk_threads_enter( );
70 }
71 else
72 {
73 mvcp_close( this->command );
74 mvcp_parser_close( this->parser );
75 this->parser = NULL;
76 // beep( );
77 }
78 }
79
80 return this->parser != NULL;
81 }
82
83 /** Connection window - Connect button pressed.
84 */
85
86 static gboolean on_connect_pressed( GtkWidget *button, gpointer user_data )
87 {
88 dv1394app this = user_data;
89 GtkWidget *widget;
90 char *server;
91 char *port;
92
93 if ( this->parser == NULL )
94 {
95 widget = lookup_widget( this->connect, "entry_server" );
96 server = ( char * )gtk_entry_get_text( GTK_ENTRY( widget ) );
97 widget = lookup_widget( this->connect, "entry_port" );
98 port = ( char * )gtk_entry_get_text( GTK_ENTRY( widget ) );
99 instance_connect( this, server, port );
100 }
101 gtk_widget_destroy( this->connect );
102 this->guard = 1;
103 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( lookup_widget( this->window, "button_connect" ) ), TRUE );
104 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( lookup_widget( this->window, "button_disconnect" ) ), FALSE );
105 this->guard = 0;
106
107 return FALSE;
108 }
109
110 /** Connection window - Cancel button pressed.
111 */
112
113 static gboolean on_cancel_pressed( GtkWidget *button, gpointer user_data )
114 {
115 dv1394app this = user_data;
116 if ( this->guard ) return FALSE;
117 gtk_widget_destroy( this->connect );
118 return FALSE;
119 }
120
121 /** Main window - connect menu item selected.
122 */
123
124 void on_item_connect_activate( GtkMenuItem *menuitem, gpointer user_data )
125 {
126 dv1394app this = user_data;
127 GtkWidget *widget;
128
129 if ( this->guard ) return;
130 this->connect = create_window_connection( );
131
132 /* Connection set up handling */
133 widget = lookup_widget( this->connect, "button_connect" );
134 gtk_signal_connect( GTK_OBJECT( widget ), "clicked", GTK_SIGNAL_FUNC( on_connect_pressed ), this );
135 widget = lookup_widget( this->connect, "button_cancel" );
136 gtk_signal_connect( GTK_OBJECT( widget ), "clicked", GTK_SIGNAL_FUNC( on_cancel_pressed ), this );
137
138 gtk_widget_show( this->connect );
139 }
140
141 /** Main window - disconnect menu item selected.
142 */
143
144 void on_item_disconnect_activate( GtkMenuItem *menuitem, gpointer user_data )
145 {
146 dv1394app this = user_data;
147
148 if ( this->guard ) return;
149 dv1394app_disconnect( this );
150
151 this->guard = 1;
152 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( lookup_widget( this->window, "button_connect" ) ), FALSE );
153 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( lookup_widget( this->window, "button_disconnect" ) ), TRUE );
154 this->guard = 0;
155 }
156
157 /** Main window - quit menu item selected.
158 */
159
160 void on_item_quit_activate( GtkMenuItem *menuitem, gpointer user_data )
161 {
162 gtk_main_quit( );
163 }
164
165 static gboolean on_page_switch_pressed( GtkWidget *button, gpointer user_data )
166 {
167 dv1394app this = user_data;
168 int index = 0;
169 GtkWidget *notebook = lookup_widget( button, "notebook1" );
170
171 if ( this->guard ) return TRUE;
172 this->guard = 1;
173 for ( index = 0; index < this->page_count; index ++ )
174 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( this->page_buttons[ index ] ), FALSE );
175 for ( index = 0; index < this->page_count; index ++ )
176 {
177 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( this->page_buttons[ index ] ), FALSE );
178 if ( this->page_buttons[ index ] == button )
179 break;
180 }
181 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( this->page_buttons[ index ] ), TRUE );
182 gtk_notebook_set_current_page( GTK_NOTEBOOK( notebook ), index );
183 this->guard = 0;
184
185 return TRUE;
186 }
187
188 static gboolean on_transport_pressed( GtkWidget *button, gpointer data )
189 {
190 int index = 0;
191 dv1394app this = ( dv1394app )data;
192 mvcp dv = dv1394app_get_command( this );
193 int unit = dv1394app_get_selected_unit( this );
194
195 for ( index = 0; index < TRANSPORT_BUTTONS_COUNT; index ++ )
196 if ( this->buttons[ index ] == button )
197 break;
198
199 switch( index )
200 {
201 case 0:
202 mvcp_unit_clip_goto( dv, unit, mvcp_absolute, 0, 0 );
203 break;
204
205 case 1:
206 mvcp_unit_goto( dv, unit, 0 );
207 break;
208
209 case 2:
210 mvcp_unit_rewind( dv, unit );
211 break;
212
213 case 3:
214 mvcp_unit_step( dv, unit, -1 );
215 break;
216
217 case 4:
218 mvcp_unit_pause( dv, unit );
219 break;
220
221 case 5:
222 mvcp_unit_play( dv, unit );
223 break;
224
225 case 6:
226 mvcp_unit_stop( dv, unit );
227 break;
228
229 case 7:
230 mvcp_unit_step( dv, unit, 1 );
231 break;
232
233 case 8:
234 mvcp_unit_fast_forward( dv, unit );
235 break;
236
237 case 9:
238 mvcp_unit_clip_goto( dv, unit, mvcp_relative, 1, 0 );
239 break;
240
241 case 10:
242 mvcp_unit_clip_goto( dv, unit, mvcp_absolute, 9999, -1 );
243 break;
244
245 case 11:
246 mvcp_unit_set( dv, unit, "eof", "loop");
247 break;
248
249 case 12:
250 mvcp_unit_set( dv, unit, "eof", "pause");
251 break;
252
253 default:
254 break;
255 }
256
257 return TRUE;
258 }
259
260 static void dv1394app_register_page( dv1394app this, page item )
261 {
262 GtkWidget *toolbar = lookup_widget( this->window, "toolbar1" );
263 GtkIconSize size = gtk_toolbar_get_icon_size( GTK_TOOLBAR( toolbar ) );
264 GtkWidget *widget = lookup_widget( this->window, "notebook1" );
265 GtkWidget *bin = gtk_frame_new( NULL );
266 char *label = NULL;
267
268 this->pages[ this->page_count ] = item;
269 gtk_widget_reparent( GTK_BIN( page_get_widget( item ) )->child, bin );
270 gtk_container_add(GTK_CONTAINER( widget ), bin );
271 gtk_frame_set_label_align( GTK_FRAME( bin ), 0, 0 );
272 gtk_frame_set_shadow_type( GTK_FRAME( bin ), GTK_SHADOW_NONE );
273 gtk_widget_show( bin );
274
275 page_get_toolbar_info( item, size, &widget, &label );
276 this->page_buttons[ this->page_count ] = gtk_toolbar_append_element( GTK_TOOLBAR ( toolbar ), GTK_TOOLBAR_CHILD_TOGGLEBUTTON, NULL, label, NULL, NULL, widget, NULL, NULL);
277 gtk_label_set_use_underline( GTK_LABEL(((GtkToolbarChild*)(g_list_last( GTK_TOOLBAR( toolbar )->children)->data))->label), TRUE);
278 gtk_widget_show( widget );
279 gtk_signal_connect( GTK_OBJECT( this->page_buttons[ this->page_count ] ), "clicked", GTK_SIGNAL_FUNC( on_page_switch_pressed ), this );
280 gtk_signal_connect( GTK_OBJECT( this->page_buttons[ this->page_count ] ), "activate", GTK_SIGNAL_FUNC( on_page_switch_pressed ), this );
281
282 this->page_count ++;
283 }
284
285 static GtkAdjustment *trim_adj[3];
286 #define TRIM_ADJ_POS 0
287 #define TRIM_ADJ_IN 1
288 #define TRIM_ADJ_OUT 2
289
290 void dv1394app_show_status( dv1394app this, mvcp_status status )
291 {
292 int index = 0;
293 for ( index = 0; index < this->page_count; index ++ )
294 page_show_status( this->pages[ index ], status );
295
296 if ( status->seek_flag != this->seek_flag )
297 {
298 gtk_widget_set_sensitive( lookup_widget( dv1394app_get_widget( this ), "transport_2" ), status->seek_flag );
299 gtk_widget_set_sensitive( lookup_widget( dv1394app_get_widget( this ), "transport_3" ), status->seek_flag );
300 gtk_widget_set_sensitive( lookup_widget( dv1394app_get_widget( this ), "transport_7" ), status->seek_flag );
301 gtk_widget_set_sensitive( lookup_widget( dv1394app_get_widget( this ), "transport_8" ), status->seek_flag );
302 this->seek_flag = status->seek_flag;
303 }
304
305 if ( !this->trim_in_use )
306 {
307 int upper = status->length > 0 ? status->length - 1 : 0;
308 trim_adj[TRIM_ADJ_IN]->upper = upper;
309 trim_adj[TRIM_ADJ_IN]->value = status->in;
310 trim_adj[TRIM_ADJ_OUT]->upper = upper;
311 trim_adj[TRIM_ADJ_OUT]->value = status->out;
312 trim_adj[TRIM_ADJ_POS]->upper = upper;
313 trim_adj[TRIM_ADJ_POS]->value = status->position;
314 gtk_signal_emit_by_name( GTK_OBJECT(trim_adj[TRIM_ADJ_POS]), "value_changed" );
315 }
316
317 gtk_widget_set_sensitive( lookup_widget( dv1394app_get_widget( this ), "transport_11" ), this->eof == 'p' );
318 gtk_widget_set_sensitive( lookup_widget( dv1394app_get_widget( this ), "transport_12" ), this->eof == 'l' );
319 }
320
321 static gboolean trim_pressed( GtkWidget *button, GdkEventButton *event, gpointer user_data )
322 {
323 dv1394app this = (dv1394app)user_data;
324 mvcp_unit_pause( dv1394app_get_command( this ), this->selected_unit );
325 this->trim_in = -1;
326 this->trim_out = -1;
327 this->trim_in_use = 1;
328 return FALSE;
329 }
330
331 static gboolean trim_released( GtkWidget *button, GdkEventButton *event, gpointer user_data )
332 {
333 dv1394app this = (dv1394app)user_data;
334 this->trim_in_use = 0;
335 if ( this->trim_in != -1 )
336 mvcp_unit_set_in( dv1394app_get_command( this ), this->selected_unit, this->trim_in );
337 if ( this->trim_out != -1 )
338 mvcp_unit_set_out( dv1394app_get_command( this ), this->selected_unit, this->trim_out );
339 return TRUE;
340 }
341
342 static gboolean on_trim_value_changed_event( GtkWidget *button, gpointer user_data )
343 {
344 dv1394app this = (dv1394app)user_data;
345 if ( this->trim_in_use )
346 {
347 char *value;
348 g_object_get( G_OBJECT( button ), "user_data", &value, NULL );
349
350 if ( !strcmp( value, "position" ) )
351 {
352 mvcp_unit_goto( dv1394app_get_command( this ), this->selected_unit, trim_adj[TRIM_ADJ_POS]->value );
353 }
354 else if ( !strcmp( value, "in" ) )
355 {
356 this->trim_in = trim_adj[TRIM_ADJ_IN]->value;
357 mvcp_unit_goto( dv1394app_get_command( this ), this->selected_unit, trim_adj[TRIM_ADJ_IN]->value );
358 }
359 else if ( !strcmp( value, "out" ) )
360 {
361 this->trim_out = trim_adj[TRIM_ADJ_OUT]->value;
362 mvcp_unit_goto( dv1394app_get_command( this ), this->selected_unit, trim_adj[TRIM_ADJ_OUT]->value );
363 }
364
365 gtk_widget_queue_draw (lookup_widget(this->window, "vbox_trim") );
366 return TRUE;
367 }
368 return FALSE;
369 }
370
371 /** Initialiser for application state.
372 */
373
374 dv1394app dv1394app_init( GtkWidget *window, char *instance )
375 {
376 dv1394app this = calloc( 1, sizeof( dv1394app_t ) );
377
378 if ( this != NULL )
379 {
380 GtkWidget *widget;
381
382 this->window = window;
383
384 /* Window destroy event */
385 gtk_signal_connect( GTK_OBJECT( this->window ), "destroy", GTK_SIGNAL_FUNC( on_main_window_delete_event ), this );
386
387 /* Menu item signal handling */
388 // widget = lookup_widget( this->window, "item_connect" );
389 // gtk_signal_connect( GTK_OBJECT( widget ), "activate", GTK_SIGNAL_FUNC( on_item_connect_activate ), this );
390 widget = lookup_widget( this->window, "button_connect" );
391 gtk_signal_connect( GTK_OBJECT( widget ), "clicked", GTK_SIGNAL_FUNC( on_item_connect_activate ), this );
392 // widget = lookup_widget( this->window, "item_disconnect" );
393 // gtk_signal_connect( GTK_OBJECT( widget ), "activate", GTK_SIGNAL_FUNC( on_item_disconnect_activate ), this );
394 widget = lookup_widget( this->window, "button_disconnect" );
395 gtk_signal_connect( GTK_OBJECT( widget ), "clicked", GTK_SIGNAL_FUNC( on_item_disconnect_activate ), this );
396 // widget = lookup_widget( this->window, "item_quit" );
397 // gtk_signal_connect( GTK_OBJECT( widget ), "activate", GTK_SIGNAL_FUNC( on_item_quit_activate ), this );
398 // widget = lookup_widget( this->window, "button_quit" );
399 // gtk_signal_connect( GTK_OBJECT( widget ), "clicked", GTK_SIGNAL_FUNC( on_item_quit_activate ), this );
400
401 /* Initialise the pages. */
402 dv1394app_register_page( this, page_status_init( this ) );
403 dv1394app_register_page( this, page_clips_init( this ) );
404 dv1394app_register_page( this, page_command_init( this ) );
405 this->guard = 1;
406 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( this->page_buttons[ 0 ] ), TRUE );
407 this->guard = 0;
408
409 /* Remove the empty page */
410 widget = lookup_widget( this->window, "notebook1" );
411 gtk_notebook_remove_page( GTK_NOTEBOOK( widget ), 0 );
412
413 guint keys[ ] = { GDK_0, GDK_1, GDK_2, GDK_3, GDK_4, GDK_5, GDK_6, GDK_7, GDK_8, GDK_9, GDK_A };
414 int index;
415 GtkAccelGroup *accel_group = gtk_accel_group_new( );
416
417 for ( index = 0; index < TRANSPORT_BUTTONS_COUNT; index ++ )
418 {
419 char name[ 256 ];
420 sprintf( name, "transport_%d", index );
421 this->buttons[ index ] = lookup_widget( dv1394app_get_widget( this ), name );
422 gtk_signal_connect( GTK_OBJECT( this->buttons[ index ] ), "clicked", GTK_SIGNAL_FUNC( on_transport_pressed ), this );
423 gtk_widget_add_accelerator( this->buttons[ index ], "clicked", accel_group, keys[ index ], GDK_CONTROL_MASK, GTK_ACCEL_VISIBLE );
424 }
425
426 gtk_window_add_accel_group( GTK_WINDOW( dv1394app_get_widget( this ) ), accel_group);
427
428 trim_adj[TRIM_ADJ_POS] = GTK_ADJUSTMENT( gtk_adjustment_new( 0, 0, 1000, 1, 10, 0 ) );
429 g_object_set( G_OBJECT( trim_adj[TRIM_ADJ_POS] ), "user_data", "position", NULL );
430 trim_adj[TRIM_ADJ_IN] = GTK_ADJUSTMENT( gtk_adjustment_new( 0, 0, 1000, 1, 10, 0 ) );
431 g_object_set( G_OBJECT( trim_adj[TRIM_ADJ_IN] ), "user_data", "in", NULL );
432 trim_adj[TRIM_ADJ_OUT] = GTK_ADJUSTMENT( gtk_adjustment_new( 0, 0, 1000, 1, 10, 0 ) );
433 g_object_set( G_OBJECT( trim_adj[TRIM_ADJ_OUT] ), "user_data", "out", NULL );
434
435 int i;
436 for (i = 0; i < 3; i++)
437 gtk_signal_connect (GTK_OBJECT (trim_adj[i]), "value_changed", GTK_SIGNAL_FUNC (on_trim_value_changed_event), this );
438
439 GtkWidget *trim = gtk_enhanced_scale_new( (GtkObject**) trim_adj, 3);
440 if ( trim != NULL )
441 {
442 gtk_widget_set_name (trim, "trim");
443 GTK_WIDGET_UNSET_FLAGS( GTK_WIDGET( trim ), GTK_CAN_FOCUS );
444 gtk_widget_ref(trim);
445 gtk_object_set_data_full (GTK_OBJECT( this->window ), "trim", trim, (GtkDestroyNotify) gtk_widget_unref);
446 GtkWidget *vbox_trim = lookup_widget(this->window, "vbox_trim");
447 gtk_widget_show(trim);
448 gtk_box_pack_start(GTK_BOX (vbox_trim), trim, TRUE, TRUE, 0);
449 gtk_signal_connect( GTK_OBJECT( trim ), "button_press_event", GTK_SIGNAL_FUNC (trim_pressed), this );
450 gtk_signal_connect( GTK_OBJECT( trim ), "button_release_event", GTK_SIGNAL_FUNC (trim_released), this );
451 }
452 this->seek_flag = 1;
453 }
454
455 if ( instance != NULL )
456 {
457 char *server = strdup( instance );
458 char *port = strchr( server, ':' );
459 if ( port != NULL )
460 *port ++ = '\0';
461 else
462 port = "5250";
463 this->guard = 1;
464 if ( instance_connect( this, server, port ) )
465 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( lookup_widget( this->window, "button_connect" ) ), TRUE );
466 else
467 gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( lookup_widget( this->window, "button_disconnect" ) ), TRUE );
468 this->guard = 0;
469 free( server );
470 }
471
472
473 return this;
474 }
475
476 /** Get the app window widget.
477 */
478
479 GtkWidget *dv1394app_get_widget( dv1394app this )
480 {
481 return this->window;
482 }
483
484 /** Get the applications parser.
485 */
486
487 mvcp_parser dv1394app_get_parser( dv1394app this )
488 {
489 return this->parser;
490 }
491
492 /** Return the command parser.
493 */
494
495 mvcp dv1394app_get_command( dv1394app this )
496 {
497 return this->command;
498 }
499
500 /** Issue a connect to all pages.
501 */
502
503 void dv1394app_connect( dv1394app this )
504 {
505 int index = 0;
506 for ( index = 0; index < this->page_count; index ++ )
507 page_on_connect( this->pages[ index ] );
508 }
509
510 /** Inform all pages that the unit has changed.
511 */
512
513 void dv1394app_on_unit_change( dv1394app this, int unit )
514 {
515 int index = 0;
516 this->selected_unit = unit;
517 for ( index = 0; index < this->page_count; index ++ )
518 page_on_unit_change( this->pages[ index ], unit );
519 }
520
521 /** Return the selected unit.
522 */
523
524 int dv1394app_get_selected_unit( dv1394app this )
525 {
526 return this->selected_unit;
527 }
528
529 /** Issue a disconnect to all pages.
530 */
531
532 void dv1394app_disconnect( dv1394app this )
533 {
534 int index = 0;
535 if ( this->parser != NULL )
536 {
537 for ( index = 0; index < this->page_count; index ++ )
538 page_on_disconnect( this->pages[ index ] );
539 mvcp_close( this->command );
540 this->command = NULL;
541 mvcp_parser_close( this->parser );
542 this->parser = NULL;
543 }
544 }
545
546 /** Close application.
547 */
548
549 void dv1394app_close( dv1394app this )
550 {
551 dv1394app_disconnect( this );
552 while ( this->page_count > 0 )
553 page_close( this->pages[ -- this->page_count ] );
554 free( this );
555 }