summaryrefslogtreecommitdiffstats
path: root/macosx/HBQTKitPlayer.h
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2016-05-03 18:47:14 +0200
committerDamiano Galassi <[email protected]>2016-05-03 18:47:14 +0200
commite53308f9342d911a9d3e8f4d1eeba6e53fabc0ab (patch)
treef65f5390d9174276022790a308660e17d7a3601f /macosx/HBQTKitPlayer.h
parent4ab21a0ca630dc4bac79149a6eec598921899fe5 (diff)
MacGui: use AVFoundation as the first option for the preview playback. Add volume and tracks controls to the player hud.
Diffstat (limited to 'macosx/HBQTKitPlayer.h')
-rw-r--r--macosx/HBQTKitPlayer.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/macosx/HBQTKitPlayer.h b/macosx/HBQTKitPlayer.h
new file mode 100644
index 000000000..a9a9de54a
--- /dev/null
+++ b/macosx/HBQTKitPlayer.h
@@ -0,0 +1,28 @@
+/* HBQTKitPlayer.h $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr/>.
+ It may be used under the terms of the GNU General Public License. */
+
+#import <Foundation/Foundation.h>
+#import <QuartzCore/QuartzCore.h>
+
+#import "HBPlayer.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@interface HBQTKitPlayer : NSObject <HBPlayer>
+
+@property (nonatomic, readonly) CALayer *layer;
+
+@property (nonatomic, readonly) NSTimeInterval duration;
+@property (nonatomic) NSTimeInterval currentTime;
+
+@property (nonatomic) float rate;
+@property (nonatomic) float volume;
+
+@property (nonatomic, readonly, getter=isPlayable) BOOL playable;
+
+@end
+
+NS_ASSUME_NONNULL_END