]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/CoreInteraction.h
macosx: try to correctly hide fspanel
[vlc] / modules / gui / macosx / CoreInteraction.h
index 0f237f08d10eec04fa7c866112134701462957cb..2db0a04c2d7f3ac569b07121570f5feacf84c452 100644 (file)
@@ -27,6 +27,7 @@
 
 @interface VLCCoreInteraction : NSObject {
     int i_currentPlaybackRate;
+    mtime_t timeA, timeB;
 }
 + (VLCCoreInteraction *)sharedInstance;
 @property (readwrite) int volume;
@@ -37,7 +38,7 @@
 @property (readonly) NSString * nameOfCurrentPlaylistItem;
 @property (nonatomic, readwrite) BOOL mute;
 
-- (void)play;
+- (void)playOrPause;
 - (void)pause;
 - (void)stop;
 - (void)faster;
 - (void)repeatAll;
 - (void)repeatOff;
 - (void)shuffle;
+- (void)setAtoB;
+- (void)resetAtoB;
+- (void)updateAtoB;
 
 - (void)volumeUp;
 - (void)volumeDown;
+- (void)toggleMute;
 
 - (BOOL)performDragOperation:(id <NSDraggingInfo>)sender;