]> git.sesse.net Git - vlc/blob - plugins/macosx/intf_qdview.c
New interface for MacOS X, courtesy of Florian G. Pflug.
[vlc] / plugins / macosx / intf_qdview.c
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