-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdouban_fmAppDelegate.h
More file actions
43 lines (32 loc) · 909 Bytes
/
douban_fmAppDelegate.h
File metadata and controls
43 lines (32 loc) · 909 Bytes
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
//
// douban_fmAppDelegate.h
// douban.fm
//
// Created by xhan on 10-7-6.
// Copyright 2010 Baidu.com. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>
@interface douban_fmAppDelegate : NSObject <NSApplicationDelegate,NSWindowDelegate> {
NSWindow *window;
WebView *webView;
NSView* splashView;
NSTextFieldCell* notifyFieldCell;
NSProgressIndicator* activityIndicator;
}
@property (nonatomic, retain) IBOutlet NSTextFieldCell *notifyFieldCell;
@property (nonatomic, retain) IBOutlet NSProgressIndicator *activityIndicator;
@property (nonatomic, retain) IBOutlet NSView *splashView;
@property (nonatomic, retain) IBOutlet WebView *webView;
@property (assign) IBOutlet NSWindow *window;
@end
/*
# application load sequence
------------------------
awake
finish launching
start loading
title: 豆瓣电台
finished loading
title: 不眠 - 豆瓣电台
*/