blob: 12224cae71b63991700b5136833a1a1dc7b91731 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* $Id: TargetSizeField.h,v 1.2 2003/10/09 23:33:36 titer Exp $
This file is part of the HandBrake source code.
Homepage: <http://beos.titer.org/handbrake/>.
It may be used under the terms of the GNU General Public License. */
#include <Cocoa/Cocoa.h>
#include "Common.h"
@interface HBTargetSizeField : NSTextField
{
HBTitle * fTitle;
IBOutlet NSTextField * fBitrateField;
IBOutlet NSPopUpButton * fSecondaryLanguagePopUp;
IBOutlet NSPopUpButton * fAudioBitratePopUp;
}
- (void) SetHBTitle: (HBTitle *) title;
- (void) UpdateBitrate;
@end
|