blob: da417bf029b7ec8b66f01e90c439f68bd9938867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* HBEncodingProgressHUDController.m $
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 "HBEncodingProgressHUDController.h"
@interface HBEncodingProgressHUDController ()
@property (weak) IBOutlet NSProgressIndicator *progressIndicator;
@property (weak) IBOutlet NSTextField *infoLabel;
@end
@implementation HBEncodingProgressHUDController
- (NSString *)nibName
{
return @"HBEncodingProgressHUDController";
}
- (BOOL)canBeHidden
{
return NO;
}
- (void)setInfo:(NSString *)info
{
self.infoLabel.stringValue = info;
}
- (void)setProgress:(double)progress
{
self.progressIndicator.doubleValue = progress;
}
- (IBAction)cancelEncoding:(id)sender
{
[self.delegate cancelEncoding];
}
- (BOOL)HB_keyDown:(NSEvent *)event
{
return NO;
}
- (BOOL)HB_scrollWheel:(NSEvent *)theEvent
{
return NO;
}
@end
|