~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to plugins/macosx/intf_qdview.c

Tags: upstream-0.7.2.final
ImportĀ upstreamĀ versionĀ 0.7.2.final

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
//  intf_qdview.c
3
 
//  vlc
4
 
//
5
 
//  Created by fgp on Mon Oct 29 2001.
6
 
//  Copyright (c) 2001 __MyCompanyName__. All rights reserved.
7
 
//
8
 
 
9
 
#import "intf_qdview.h"
10
 
 
11
 
NSString *VlcQuickDrawViewDidResize = @"VlcQuickDrawViewDidDraw" ;
12
 
 
13
 
@implementation VlcQuickDrawView
14
 
 
15
 
- (id)initWithFrame:(NSRect)frame {
16
 
    self = [super initWithFrame:frame];
17
 
    return self;
18
 
}
19
 
 
20
 
- (void)drawRect:(NSRect)rect {
21
 
    [super drawRect:rect] ;
22
 
    [[NSNotificationCenter defaultCenter] postNotificationName:VlcQuickDrawViewDidResize object:self] ;
23
 
}
24
 
 
25
 
@end