summaryrefslogtreecommitdiffstats
path: root/macosx/HBChapterTitlesController.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBChapterTitlesController.h')
-rw-r--r--macosx/HBChapterTitlesController.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/macosx/HBChapterTitlesController.h b/macosx/HBChapterTitlesController.h
new file mode 100644
index 000000000..f56fd367b
--- /dev/null
+++ b/macosx/HBChapterTitlesController.h
@@ -0,0 +1,29 @@
+/* ChapterTitles.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. */
+
+#include <Cocoa/Cocoa.h>
+
+/**
+ * HBChapterTitlesController
+ * Responds to HBTitleChangedNotification notifications.
+ */
+@interface HBChapterTitlesController : NSViewController
+
+- (void)enableUI:(BOOL)b;
+- (void)addChaptersFromQueue:(NSMutableArray *)newChaptersArray;
+
+/**
+ * Enable/disable chapters markers
+ */
+@property (readwrite, nonatomic) BOOL createChapterMarkers;
+
+/**
+ * Get the list of chapter titles
+ */
+@property (readonly, nonatomic) NSArray *chapterTitlesArray;
+
+
+@end