diff options
author | Damiano Galassi <[email protected]> | 2015-10-24 10:50:27 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2015-10-24 10:50:27 +0200 |
commit | 7e32b94a04e073aa94b51811200b664a5001f983 (patch) | |
tree | 8b328e88162db42ee1d9237a61ea2c97f4c0183d /macosx/HBAudio.h | |
parent | 97e6ad384476b97cbc36bfb0a81ac179b1fc7d70 (diff) |
MacGui: add redo/undo supports to the audio part of HBJob.
Diffstat (limited to 'macosx/HBAudio.h')
-rw-r--r-- | macosx/HBAudio.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/macosx/HBAudio.h b/macosx/HBAudio.h index af37f4aa8..045970e6a 100644 --- a/macosx/HBAudio.h +++ b/macosx/HBAudio.h @@ -20,7 +20,7 @@ extern NSString *HBAudioChangedNotification; - (instancetype)initWithTitle:(HBTitle *)title; @property (nonatomic, readonly) NSMutableArray *tracks; -@property (nonatomic, readonly) HBAudioDefaults *defaults; +@property (nonatomic, readwrite) HBAudioDefaults *defaults; - (void)addAllTracks; - (void)removeAll; @@ -30,7 +30,8 @@ extern NSString *HBAudioChangedNotification; - (void)settingTrackToNone:(HBAudioTrack *)newNoneTrack; - (void)switchingTrackFromNone:(nullable HBAudioTrack *)noLongerNoneTrack; -- (void)containerChanged:(int)container; +@property (nonatomic, readwrite) int container; +@property (nonatomic, readwrite, weak, nullable) NSUndoManager *undo; @end |