~videolan/vlc/master-manual

« back to all changes in this revision

Viewing changes to modules/gui/macosx/MainWindow.h

  • Committer: Benjamin Drung
  • Date: 2013-11-23 13:15:45 UTC
  • Revision ID: bdrung@ubuntu.com-20131123131545-h7m83t7ggnhkyjqs
Manual import commit 23ab7c47138056a2e1846046c1f8056d6a74860e from vlc branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * MainWindow.h: MacOS X interface module
3
3
 *****************************************************************************
4
4
 * Copyright (C) 2002-2013 VLC authors and VideoLAN
5
 
 * $Id: dedb58028a0101b7a992018349678449499c392f $
 
5
 * $Id: d6d3bd0029ef93d0974aad77966a9d8419640c7b $
6
6
 *
7
7
 * Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
8
8
 *          Jon Lech Johansen <jon-vl@nanocrew.net>
42
42
@class VLCMainWindowControlsBar;
43
43
@class VLCVoutView;
44
44
 
 
45
typedef enum {
 
46
    psUserEvent,
 
47
    psUserMenuEvent,
 
48
    psVideoStartedOrStoppedEvent,
 
49
    psPlaylistItemChangedEvent
 
50
} VLCPlaylistStateEvent;
 
51
 
45
52
@interface VLCMainWindow : VLCVideoWindowCommon <PXSourceListDataSource, PXSourceListDelegate, NSWindowDelegate, NSAnimationDelegate, NSSplitViewDelegate> {
46
53
 
47
54
    IBOutlet id o_search_fld;
105
112
 
106
113
- (VLCMainWindowControlsBar *)controlsBar;
107
114
 
108
 
- (IBAction)togglePlaylist:(id)sender;
 
115
- (void)changePlaylistState:(VLCPlaylistStateEvent)event;
109
116
 
110
117
- (IBAction)dropzoneButtonAction:(id)sender;
111
118