Remove the stale Updates check preferences pane, and remove the donation option from the menu, as it is considered In App Purchases. Consider adding actual App Store In App Purchase options of "Buy me a coffee" or similar, with no guarantee of return for the purchase, other than furthering development. Make them repeatable purchases. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
40 lines
908 B
Objective-C
40 lines
908 B
Objective-C
//
|
|
// PreferencesController.h
|
|
// Preferences
|
|
//
|
|
// Created by Vincent Spader on 9/4/06.
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "PreferencePanePlugin.h"
|
|
|
|
#import "GeneralPane.h"
|
|
#import "HotKeyPane.h"
|
|
#import "MIDIPane.h"
|
|
#import "OutputPane.h"
|
|
|
|
@interface GeneralPreferencesPlugin : NSObject <PreferencePanePlugin> {
|
|
IBOutlet HotKeyPane *hotKeyPane;
|
|
IBOutlet OutputPane *outputPane;
|
|
IBOutlet MIDIPane *midiPane;
|
|
IBOutlet GeneralPane *generalPane;
|
|
|
|
IBOutlet NSView *playlistView;
|
|
IBOutlet NSView *notificationsView;
|
|
IBOutlet NSView *appearanceView;
|
|
|
|
__weak IBOutlet NSButton *iTunesStyleCheck;
|
|
}
|
|
|
|
- (HotKeyPane *)hotKeyPane;
|
|
- (OutputPane *)outputPane;
|
|
- (MIDIPane *)midiPane;
|
|
- (GeneralPane *)generalPane;
|
|
|
|
- (GeneralPreferencePane *)playlistPane;
|
|
- (GeneralPreferencePane *)notificationsPane;
|
|
- (GeneralPreferencePane *)appearancePane;
|
|
|
|
@end
|