-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathLHAppDelegate.h
More file actions
37 lines (26 loc) · 785 Bytes
/
LHAppDelegate.h
File metadata and controls
37 lines (26 loc) · 785 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
//
// LHAppDelegate.h
// LastHistory
//
// Created by Frederik Seiffert on 29.10.09.
// Copyright 2009 Frederik Seiffert. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class LFWebService;
@interface LHAppDelegate : NSObject {
IBOutlet NSWindow *welcomeWindow;
IBOutlet NSTextField *usernameField;
IBOutlet NSPopUpButton *recentDocumentsButton;
NSDate *_launchDate;
BOOL _busy;
LFWebService *_lfWebService;
}
@property (assign) BOOL busy;
@property (readonly) LFWebService *lfWebService;
- (IBAction)showWelcomeWindow:(id)sender;
- (IBAction)closeWelcomeWindow:(id)sender;
- (IBAction)openSurvey:(id)sender;
- (IBAction)openWebsite:(id)sender;
- (IBAction)lfAuthenticate:(id)sender;
- (BOOL)lfCheckUsername:(NSString *)username error:(NSError **)outError;
@end