diff options
author | ritsuka <[email protected]> | 2015-01-25 08:02:47 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-01-25 08:02:47 +0000 |
commit | 8e7fdbaed7f2ece531fee19ebc6c3f0f284b795d (patch) | |
tree | b812001465c02d5ff86e8eaa7ae80a80bca885da /macosx/HBTitleSelectionController.h | |
parent | ffc93adeaa23923c1c8b401e45cf4b155e4e99eb (diff) |
MacGui: add a "Add Titles to Queue…" menu item that let select which titles are added to the queue.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6810 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBTitleSelectionController.h')
-rw-r--r-- | macosx/HBTitleSelectionController.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/macosx/HBTitleSelectionController.h b/macosx/HBTitleSelectionController.h new file mode 100644 index 000000000..3dda1984b --- /dev/null +++ b/macosx/HBTitleSelectionController.h @@ -0,0 +1,19 @@ +/* HBTitleSelectionController.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 <Cocoa/Cocoa.h> + +@protocol HBTitleSelectionDelegate <NSObject> + +- (void)didSelectIndexes:(NSIndexSet *)indexes; + +@end + +@interface HBTitleSelectionController : NSWindowController + +- (instancetype)initWithTitles:(NSArray *)titles delegate:(id<HBTitleSelectionDelegate>)delegate; + +@end |