]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/applescript.h
macosx: add yosemite guard
[vlc] / modules / gui / macosx / applescript.h
index f0c8e95aab988c1d33d70990834d8115ea967d78..71dff0c399d7a7330fac6de2b5ecc9ae872a0229 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * applescript.h: MacOS X AppleScript support
  *****************************************************************************
- * Copyright (C) 2002-2003 the VideoLAN team
+ * Copyright (C) 2002-2012 VLC authors and VideoLAN
  * $Id$
  *
  * Authors: Derk-Jan Hartman <thedj@users.sourceforge.net>
@@ -10,7 +10,7 @@
  * 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
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#import <Cocoa/Cocoa.h>
+
 /*****************************************************************************
- * VLGetURLScriptCommand interface 
+ * VLGetURLScriptCommand interface
  *****************************************************************************/
 @interface VLGetURLScriptCommand : NSScriptCommand
 @end
 
 /*****************************************************************************
- * VLControlScriptCommand interface 
+ * VLControlScriptCommand interface
  *****************************************************************************/
 @interface VLControlScriptCommand : NSScriptCommand
 @end
 *****************************************************************************/
 @interface NSApplication(ScriptSupport)
 
-- (BOOL) scriptFullscreenMode;
-- (void) setScriptFullscreenMode: (BOOL) mode;
+@property (readwrite) BOOL scriptFullscreenMode;
+@property (readwrite) int audioVolume;
+@property (readwrite) int audioDesync;
+@property (readwrite) int currentTime;
+@property (readonly) int durationOfCurrentItem;
+@property (readonly) NSString *pathOfCurrentItem;
+@property (readonly) NSString *nameOfCurrentItem;
 
-@end
\ No newline at end of file
+@end