]> git.sesse.net Git - vlc/blob - modules/gui/macosx/embeddedwindow.m
* removed some further hangover from the original patch and finally added embeddedWin...
[vlc] / modules / gui / macosx / embeddedwindow.m
1 /*****************************************************************************
2  * embeddedwindow.m: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Benjamin Pracht <bigben at videolan dot org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #include "intf.h"
29 #include "vout.h"
30 #include "embeddedwindow.h"
31
32 /*****************************************************************************
33  * VLCEmbeddedWindow Implementation
34  *****************************************************************************/
35
36 @implementation VLCEmbeddedWindow
37
38 - (void)awakeFromNib
39 {
40     [o_window setDelegate: self];
41
42     [o_btn_backward setToolTip: _NS("Rewind")];
43     [o_btn_forward setToolTip: _NS("Fast Forward")];
44     [o_btn_fullscreen setToolTip: _NS("Fullscreen")];
45     [o_btn_play setToolTip: _NS("Play")];
46     [o_slider setToolTip: _NS("Position")];
47
48     o_img_play = [NSImage imageNamed: @"play_embedded"];
49     o_img_play_pressed = [NSImage imageNamed: @"play_embedded_blue"];
50     o_img_pause = [NSImage imageNamed: @"pause_embedded"];
51     o_img_pause_pressed = [NSImage imageNamed: @"pause_embedded_blue"];
52 }
53
54 - (void)setTime:(NSString *)o_arg_time position:(float)f_position
55 {
56     [o_time setStringValue: o_arg_time];
57     [o_slider setFloatValue: f_position];
58 }
59
60 - (void)playStatusUpdated:(int)i_status
61 {
62     if( i_status == PLAYING_S )
63     {
64         [o_btn_play setImage: o_img_pause];
65         [o_btn_play setAlternateImage: o_img_pause_pressed];
66         [o_btn_play setToolTip: _NS("Pause")];
67     }
68     else
69     {
70         [o_btn_play setImage: o_img_play];
71         [o_btn_play setAlternateImage: o_img_play_pressed];
72         [o_btn_play setToolTip: _NS("Play")];
73     }
74 }
75
76 - (void)setSeekable:(BOOL)b_seekable
77 {
78     [o_btn_forward setEnabled: b_seekable];
79     [o_btn_backward setEnabled: b_seekable];
80     [o_slider setEnabled: b_seekable];
81 }
82
83 - (void)setFullscreen:(BOOL)b_fullscreen
84 {
85     [o_btn_fullscreen setState: b_fullscreen];
86 }
87
88 - (BOOL)windowShouldClose:(id)sender
89 {
90     playlist_t * p_playlist = vlc_object_find( VLCIntf, VLC_OBJECT_PLAYLIST,
91                                                        FIND_ANYWHERE );
92     if( p_playlist == NULL )
93     {
94         return NO;
95     }
96
97     playlist_Stop( p_playlist );
98     vlc_object_release( p_playlist );
99     return YES;
100 }
101
102 @end