File: MyImageAlignerPrefs.m

package info (click to toggle)
lynkeos.app 3.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 6,740 kB
  • sloc: objc: 40,528; ansic: 811; cpp: 150; sh: 68; makefile: 27
file content (205 lines) | stat: -rw-r--r-- 6,064 bytes parent folder | download | duplicates (3)
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// 
//  Lynkeos
//  $Id$
//
//  Created by Jean-Etienne LAMIAUD on Wed May 16 2007.
//  Copyright (c) 2007-2018. 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 "MyImageAlignerPrefs.h"

NSString * const K_PREF_ALIGN_FREQUENCY_CUTOFF = @"Align frequency cutoff";
NSString * const K_PREF_ALIGN_PRECISION_THRESHOLD = @"Align precision threshold";
NSString * const K_PREF_ALIGN_IMAGE_UPDATING = @"Align image updating";
NSString * const K_PREF_ALIGN_CHECK = @"Align check";
NSString * const K_PREF_ALIGN_MULTIPROC = @"Multiprocessor align";

//! MyImageAlignerPrefs singleton instance
static MyImageAlignerPrefs *myImageAlignerPrefsInstance = nil;

/*!
 * @abstract Private methods of MyImageAlignerPrefs
 */
@interface MyImageAlignerPrefs(Private)
//! Set the preference to the factory defaults
- (void) initPrefs ;
//! Read the preferences user values
- (void) readPrefs;
//! Set the panel fields to the current values
- (void) updatePanel;
@end

@implementation MyImageAlignerPrefs(Private)
- (void) initPrefs
{
   // Set the factory defaults
   _alignFrequencyCutoff = 0.41;
   _alignThreshold = 0.125;
   _alignImageUpdating = YES;
   _alignCheck = NO;
   _alignMultiProc = ListThreadsOptimizations;
}

- (void) readPrefs
{
   NSUserDefaults *user = [NSUserDefaults standardUserDefaults];
   ParallelOptimization_t opt;

   getNumericPref(&_alignFrequencyCutoff, K_PREF_ALIGN_FREQUENCY_CUTOFF,
                  0.0, 0.71);
   getNumericPref(&_alignThreshold, K_PREF_ALIGN_PRECISION_THRESHOLD,
                  0.0, 1.0);
   if ( [user objectForKey:K_PREF_ALIGN_IMAGE_UPDATING] != nil )
      _alignImageUpdating = [user boolForKey:K_PREF_ALIGN_IMAGE_UPDATING];
   _alignCheck = [user boolForKey:K_PREF_ALIGN_CHECK];
   if ( [user objectForKey:K_PREF_ALIGN_MULTIPROC] != nil )
   {
      opt = (ParallelOptimization_t)[user integerForKey:K_PREF_ALIGN_MULTIPROC];
      // Compatibility with old prefs : FFTW3 threads is converted to none
      if ( opt == FFTW3ThreadsOptimization )
         _alignMultiProc = NoParallelOptimization;
      else
         _alignMultiProc = opt;
   }
}

- (void) updatePanel
{
   [_alignFrequencyCutoffSlider setDoubleValue: _alignFrequencyCutoff*10.0];
   [_alignFrequencyCutoffText setDoubleValue: _alignFrequencyCutoff];
   [_alignThresholdSlider setDoubleValue: _alignThreshold*100.0];
   [_alignThresholdText setDoubleValue: _alignThreshold*100.0];
   [_alignImageUpdatingButton setState: 
                                (_alignImageUpdating ? NSOnState : NSOffState)];
   [_alignCheckButton setState:(_alignCheck ? NSOnState : NSOffState)];
   [_alignMultiProcPopup selectItemWithTag: _alignMultiProc];
}
@end

@implementation MyImageAlignerPrefs

+ (void) getPreferenceTitle:(NSString**)title
                       icon:(NSImage**)icon
                        tip:(NSString**)tip
{
   *title = NSLocalizedString(@"Align",@"Align tool");
   *icon = [NSImage imageNamed:@"Align"];
   *tip = nil;
}

+ (id <LynkeosPreferences>) getPreferenceInstance
{
   if ( myImageAlignerPrefsInstance == nil )
      [[self alloc] init];

   return( myImageAlignerPrefsInstance );
}


- (id) init
{
   NSAssert( myImageAlignerPrefsInstance == nil,
             @"More than one creation of MyImageAlignerPrefs" );

   if ( (self = [super init]) != nil )
   {
      [self initPrefs];

      myImageAlignerPrefsInstance = 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 setFloat:_alignFrequencyCutoff forKey:K_PREF_ALIGN_FREQUENCY_CUTOFF];
   [prefs setFloat:_alignThreshold forKey:K_PREF_ALIGN_PRECISION_THRESHOLD];
   [prefs setBool:_alignImageUpdating forKey:K_PREF_ALIGN_IMAGE_UPDATING];
   [prefs setBool:_alignCheck forKey:K_PREF_ALIGN_CHECK];
   [prefs setInteger:_alignMultiProc forKey:K_PREF_ALIGN_MULTIPROC];
}

- (void) revertPreferences
{
   [self readPrefs];
   [self updatePanel];
}

- (void) resetPreferences:(NSUserDefaults*)prefs
{
   [self initPrefs];
   [self savePreferences:prefs];
   [self updatePanel];
}

- (IBAction)changeAlignFrequencyCutoff:(id)sender
{
   _alignFrequencyCutoff = [sender doubleValue];

   if ( sender == _alignFrequencyCutoffSlider )
   {
      _alignFrequencyCutoff /= 10.0;
      [_alignFrequencyCutoffText setDoubleValue: _alignFrequencyCutoff];
   }
   else
      [_alignFrequencyCutoffSlider setDoubleValue: _alignFrequencyCutoff*10.0];
}

- (IBAction)changeAlignThreshold:(id)sender
{
   _alignThreshold = [sender doubleValue]/100.0;

   if ( sender != _alignThresholdSlider )
      [_alignThresholdSlider setDoubleValue: _alignThreshold*100.0];

   if ( sender != _alignThresholdText )
      [_alignThresholdText setDoubleValue: _alignThreshold*100.0];
}

- (IBAction)changeAlignImageUpdating:(id)sender
{
   _alignImageUpdating = ([sender state] == NSOnState);
}

- (IBAction)changeAlignCheck:(id)sender
{
   _alignCheck = ([sender state] == NSOnState);
}

- (IBAction)changeAlignMultiProc:(id)sender
{
   _alignMultiProc = (ParallelOptimization_t)[[sender selectedItem] tag];
}
@end