OSDN Git Service

MacGui: Remove Target Size as a rate control option as it doesn't really work correct...
[handbrake-jp/handbrake-jp-git.git] / macosx / ChapterTitles.h
1 /*  ChapterTitles.h $
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.fr/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #include <Cocoa/Cocoa.h>
8 #include "hb.h"
9
10 @interface ChapterTitles : NSObject {
11     hb_title_t *fTitle;
12 }
13
14 // Trigger a refresh of data
15 - (void)resetWithTitle:(hb_title_t *)title;
16
17 // Table View Delegates
18 - (int)numberOfRowsInTableView:(NSTableView *)aTableView;
19
20 - (id)tableView:(NSTableView *)aTableView
21       objectValueForTableColumn:(NSTableColumn *)aTableColumn
22       row:(NSInteger)rowIndex;
23       
24 - (void)tableView:(NSTableView *)aTableView
25         setObjectValue:(id)anObject
26         forTableColumn:(NSTableColumn *)aTableColumn
27         row:(NSInteger)rowIndex;
28 @end