summaryrefslogtreecommitdiffstats
path: root/macosx/TargetSizeField.h
blob: 6bc4a716f4efb50e5e8dec4fdb2cb22fd8a085e1 (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.1.1.1 2003/11/03 12:03:51 titer Exp $

   This file is part of the HandBrake source code.
   Homepage: <http://handbrake.m0k.org/>.
   It may be used under the terms of the GNU General Public License. */

#include <Cocoa/Cocoa.h>

#include "HandBrake.h"

@interface HBTargetSizeField : NSTextField

{
    HBTitle                * fTitle;
    IBOutlet NSTextField   * fBitrateField;
    IBOutlet NSPopUpButton * fSecondaryLanguagePopUp;
    IBOutlet NSPopUpButton * fAudioBitratePopUp;
}

- (void) SetHBTitle: (HBTitle *) title;
- (void) UpdateBitrate;

@end