adityavm / growler

Safari plug-in that allows web applications to post Growl notifications using Javascript.

growler / GrowlerView.h
100644 31 lines (26 sloc) 0.852 kb
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
//
// GrowlerView.h
// Growler
//
// Created by Aditya Mukherjee on 08/07/09.
// Copyright 2009 All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>
#import <Growl/Growl.h>
 
@interface NSObject (gpGrowler)
- (void) my_webView:(id)arg1 didClearWindowObject:(id)arg2 forFrame:(id)arg3;
@end
 
@interface Growler : NSView <GrowlApplicationBridgeDelegate> {
id _windowObj;
}
- (void) setWindow : (id) arg;
- (id) getFavicon;
- (BOOL) isKeyDefined: (id)aKey forValues:(id)values;
 
- (void) growl : (WebScriptObject *) values;//for internal calls
- (void) showGrowlNotification : (WebScriptObject *) values;//for fluid
- (void) showNotification : (NSString *)arg1 :(NSString *)arg2 :(NSString *)arg3;//for prism
- (void) growler : (WebScriptObject *) values;//for my own namespace
@end
 
@interface InTheBeginning : NSObject { }
@end