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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
//
// Lynkeos
// $Id: MyImageStackerPrefs.m 585 2018-09-08 21:30:37Z j-etienne $
//
// Created by Jean-Etienne LAMIAUD on Wed June 18 2007.
// Copyright (c) 2007-2013. Jean-Etienne LAMIAUD
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
#include "MyUserPrefsController.h"
#include "MyImageStackerPrefs.h"
NSString * const K_PREF_STACK_IMAGE_UPDATING = @"Stack image updating";
NSString * const K_PREF_STACK_MULTIPROC = @"Multiprocessor stack";
//! MyImageStackerPrefs singleton instance
static MyImageStackerPrefs *myImageStackerPrefsInstance = nil;
/*!
* @abstract Private methods of MyImageStackerPrefs
*/
@interface MyImageStackerPrefs(Private)
//! Set the preferences to their factory defaults values
- (void) initPrefs ;
//! Read the user preferences values
- (void) readPrefs;
//! Update the panel fields to their current values
- (void) updatePanel;
@end
@implementation MyImageStackerPrefs(Private)
- (void) initPrefs
{
// Set the factory defaults
_stackImageUpdating = NO;
_stackMultiProc = ListThreadsOptimizations;
}
- (void) readPrefs
{
NSUserDefaults *user = [NSUserDefaults standardUserDefaults];
ParallelOptimization_t opt;
if ( [user objectForKey:K_PREF_STACK_IMAGE_UPDATING] != nil )
_stackImageUpdating = [user boolForKey:K_PREF_STACK_IMAGE_UPDATING];
if ( [user objectForKey:K_PREF_STACK_MULTIPROC] != nil )
{
opt = (ParallelOptimization_t)[user integerForKey:K_PREF_STACK_MULTIPROC];
// Compatibility with old prefs : YES is converted to parallels lists
_stackMultiProc = (opt == NoParallelOptimization ?
opt : ListThreadsOptimizations );
}
}
- (void) updatePanel
{
[_stackImageUpdatingButton setState:
(_stackImageUpdating ? NSOnState : NSOffState)];
[_stackMultiProcPopup selectItemWithTag: _stackMultiProc];
}
@end
@implementation MyImageStackerPrefs
+ (void) getPreferenceTitle:(NSString**)title
icon:(NSImage**)icon
tip:(NSString**)tip
{
*title = NSLocalizedString(@"Stack",@"Stack tool");
*icon = [NSImage imageNamed:@"Photolist"];
*tip = nil;
}
+ (id <LynkeosPreferences>) getPreferenceInstance
{
if ( myImageStackerPrefsInstance == nil )
[[self alloc] init];
return( myImageStackerPrefsInstance );
}
- (id) init
{
NSAssert( myImageStackerPrefsInstance == nil,
@"More than one creation of MyImageStackerPrefs" );
if ( (self = [super init]) != nil )
{
[self initPrefs];
myImageStackerPrefsInstance = self;
}
return( self );
}
- (void) awakeFromNib
{
// Update with database value, if any
[self readPrefs];
// And rewrite them to ensure correct values
[self savePreferences:[NSUserDefaults standardUserDefaults]];
// Finally initialize the GUI
[self updatePanel];
}
- (NSView*) getPreferencesView
{
return( _prefsView );
}
- (void) savePreferences:(NSUserDefaults*)prefs
{
[prefs setBool:_stackImageUpdating forKey:K_PREF_STACK_IMAGE_UPDATING];
[prefs setInteger:_stackMultiProc forKey:K_PREF_STACK_MULTIPROC];
}
- (void) revertPreferences
{
[self readPrefs];
[self updatePanel];
}
- (void) resetPreferences:(NSUserDefaults*)prefs
{
[self initPrefs];
[self savePreferences:prefs];
[self updatePanel];
}
- (IBAction)changeStackImageUpdating:(id)sender
{
_stackImageUpdating = ([sender state] == NSOnState);
}
- (IBAction)changeStackMultiProc:(id)sender
{
_stackMultiProc = (ParallelOptimization_t)[sender selectedTag];
}
@end
|