]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/applescript.h
Useless #includes
[vlc] / modules / gui / macosx / applescript.h
index 929f8af78bbf1015531e65d2bbc333ee3e9391fa..1021687bf93e8b29a1df15cac62cfcd930d817a7 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
\ No newline at end of file
+@end
+
+/*****************************************************************************
+* Category that adds AppleScript support to NSApplication
+*****************************************************************************/
+@interface NSApplication(ScriptSupport)
+
+@property (readwrite) BOOL scriptFullscreenMode;
+@property (readwrite) int audioVolume;
+@property (readwrite) int currentTime;
+@property (readonly) int durationOfCurrentItem;
+@property (readonly) NSString *pathOfCurrentItem;
+@property (readonly) NSString *nameOfCurrentItem;
+
+@end