-
Notifications
You must be signed in to change notification settings - Fork 1
/
Add_Folder_IconsAppDelegate.h
50 lines (39 loc) · 1.34 KB
/
Add_Folder_IconsAppDelegate.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
39
40
41
42
43
44
45
46
47
48
49
50
//
// Add_Folder_IconsAppDelegate.h
// Add Folder Icons
//
// Created by Andrew Hodgkinson on 14/03/2010.
// Copyright 2010, 2011 Hipposoft. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "IconStyleManager.h"
#import "MainMenuController.h"
#import "SplashWindowController.h"
#import "MainWindowController.h"
#import "ManageStylesWindowController.h"
#import "ApplicationSpecificPreferencesWindowController.h"
#ifdef UPDATABLE
#import "UpdateHelper.h"
#endif
#define SPLASH_WINDOW_CONTROLLER_NIB_NAME @"SplashWindow"
#define MAIN_WINDOW_CONTROLLER_NIB_NAME @"MainWindow"
#define MANAGE_STYLES_CONTROLLER_NIB_NAME @"ManageStyles"
@interface Add_Folder_IconsAppDelegate : NSObject < NSApplicationDelegate >
{
IBOutlet MainMenuController * mainMenuController;
IconStyleManager * iconStyleManager;
MainWindowController * mainWindowController;
ManageStylesWindowController * manageStylesWindowController;
SplashWindowController * splashWindowController;
#ifdef UPDATABLE
UpdateHelper * updateHelper;
#endif
}
#ifdef UPDATABLE
@property ( readonly ) UpdateHelper * updateHelper;
#endif
- ( void ) establishDefaultPreferences;
- ( CGImageRef ) standardFolderIcon;
- ( IBAction ) showPreferences: ( id ) sender;
- ( IBAction ) showManageStyles: ( id ) sender;
@end