|
|
|
|
/*****************************************************************************
|
|
|
|
|
* Windows.h: MacOS X interface module
|
|
|
|
|
*****************************************************************************
|
|
|
|
|
* Copyright (C) 2012 VLC authors and VideoLAN
|
|
|
|
|
* $Id$
|
|
|
|
|
*
|
|
|
|
|
* Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
|
|
|
|
|
* David Fuhrmann <david dot fuhrmann at googlemail dot com>
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
#import "CompatibilityFixes.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* VLCWindow
|
|
|
|
|
*
|
|
|
|
|
* Missing extension to NSWindow
|
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
@interface VLCWindow : NSWindow
|
|
|
|
|
{
|
|
|
|
|
BOOL b_canBecomeKeyWindow;
|
|
|
|
|
BOOL b_isset_canBecomeKeyWindow;
|
|
|
|
|
BOOL b_canBecomeMainWindow;
|
|
|
|
|
BOOL b_isset_canBecomeMainWindow;
|
|
|
|
|
NSViewAnimation *o_current_animation;
|
|
|
|
|
}
|
|
|
|
|
@property (readwrite) BOOL canBecomeKeyWindow;
|
|
|
|
|
@property (readwrite) BOOL canBecomeMainWindow;
|
|
|
|
|
|
|
|
|
|
/* animate mode is only supported in >=10.4 */
|
|
|
|
|
- (void)orderFront: (id)sender animate: (BOOL)animate;
|
|
|
|
|
|
|
|
|
|
/* animate mode is only supported in >=10.4 */
|
|
|
|
|
- (void)orderOut: (id)sender animate: (BOOL)animate;
|
|
|
|
|
|
|
|
|
|
/* animate mode is only supported in >=10.4 */
|
|
|
|
|
- (void)orderOut: (id)sender animate: (BOOL)animate callback:(NSInvocation *)callback;
|
|
|
|
|
|
|
|
|
|
/* animate mode is only supported in >=10.4 */
|
|
|
|
|
- (void)closeAndAnimate: (BOOL)animate;
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
@class VLCControlsBarCommon;
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* VLCVideoWindowCommon
|
|
|
|
|
*
|
|
|
|
|
* Common code for main window, detached window and extra video window
|
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
@interface VLCVideoWindowCommon : VLCWindow
|
|
|
|
|
{
|
|
|
|
|
NSRect previousSavedFrame;
|
|
|
|
|
BOOL b_dark_interface;
|
|
|
|
|
|
|
|
|
|
IBOutlet id o_titlebar_view; // only set in main or detached window
|
|
|
|
|
|
|
|
|
|
IBOutlet VLCControlsBarCommon* o_controls_bar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@property (readonly) VLCControlsBarCommon* controlsBar;
|
|
|
|
|
|
|
|
|
|
- (void)setTitle:(NSString *)title;
|
|
|
|
|
|
|
|
|
|
@end
|