-
Notifications
You must be signed in to change notification settings - Fork 1
/
ApplicationSpecificPreferencesWindowController.h
42 lines (32 loc) · 1.5 KB
/
ApplicationSpecificPreferencesWindowController.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
//
// ApplicationSpecificPreferencesWindowController.h
// Add Folder Icons
//
// Created by Andrew Hodgkinson on 13/01/2011.
// Copyright 2011 Hipposoft. All rights reserved.
//
#import "GenericPreferencesWindowController.h"
#import "IconStyleManager.h"
@interface ApplicationSpecificPreferencesWindowController : GenericPreferencesWindowController
{
IBOutlet NSView * generalPreferencesView;
IBOutlet NSView * integrationPreferencesView;
IBOutlet NSView * finderPreferencesView;
IBOutlet NSView * updatesPreferencesView;
IBOutlet NSView * advancedPreferencesView;
/* An icon style manager instance must be supplied by the instantiator.
* It is used to look up CoreData information for the central icon style
* collection. This is needed by things like bindings.
*/
IconStyleManager * iconStyleManager;
NSManagedObjectContext * managedObjectContext;
NSManagedObjectModel * managedObjectModel;
}
@property ( strong, readonly ) IconStyleManager * iconStyleManager;
@property ( nonatomic, strong, readonly ) NSManagedObjectContext * managedObjectContext;
@property ( nonatomic, strong, readonly ) NSManagedObjectModel * managedObjectModel;
/* Allocation and initialisation */
+ ( ApplicationSpecificPreferencesWindowController * ) applicationSpecificPreferencesWindowController;
/* Listening for changes that may change the settings */
- ( void ) iconStyleListChanged: ( NSNotification * ) notification;
@end