summaryrefslogtreecommitdiffstats
path: root/macosx/HBTitleSelectionController.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBTitleSelectionController.h')
-rw-r--r--macosx/HBTitleSelectionController.h19
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