-
Notifications
You must be signed in to change notification settings - Fork 0
/
TLJimBos.h
38 lines (28 loc) · 875 Bytes
/
TLJimBos.h
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
//
// TLJimBos.h
// Mercatalog
//
// Created by Nathan Vander Wilt on 1/20/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
extern NSString* const TLJimBosAppRegisteredNotification;
@interface TLJimBos : NSObject {
IBOutlet NSWindow* registrationWindow;
__weak IBOutlet NSTextField* nameField;
__weak IBOutlet NSTextField* emailField;
__weak IBOutlet NSTextField* registrationCode;
__weak IBOutlet NSButton* registerButton;
@private
}
+ (id)sharedRegistrar;
- (BOOL)isRegistered;
- (BOOL)continueExportDemoPrompt;
- (IBAction)showRegistrationWindow:(id)sender;
- (IBAction)closeRegistrationWindow:(id)sender;
- (IBAction)buyMercatalog:(id)sender;
- (IBAction)contactCalfTrail:(id)sender;
- (IBAction)registerByForm:(id)sender;
- (BOOL)registerApplication:(NSString*)licenseKey
user:(NSString*)userName;
@end