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
|
//
// Lynkeos
// $Id: MyUserPrefsController.h,v 1.5 2005/02/01 22:55:44 j-etienne Exp $
//
// Created by Jean-Etienne LAMIAUD on Sun Feb 8 2004.
// Copyright (c) 2003-2005. 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.
//
// This class is a singleton object controlling the user preferences window
#ifndef __MYUSERPREFSCONTROLLER_H
#define __MYUSERPREFSCONTROLLER_H
#ifdef GNUSTEP
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
#import "LynkeosCommon.h"
#else
#import <Cocoa/Cocoa.h>
#endif
// Preferences keys
#define K_PREF_ADJUST_FFT_SIZES @"Adjust FFT sizes"
#define K_PREF_ALIGN_FREQUENCY_CUTOFF @"Align frequency cutoff"
#define K_PREF_ALIGN_PRECISION_THRESHOLD @"Align precision threshold"
#define K_PREF_ALIGN_IMAGE_UPDATING @"Align image updating"
#define K_PREF_ALIGN_MULTIPROC @"Multiprocessor align"
#define K_PREF_ANALYSIS_LOWER_CUTOFF @"Analysis lower cutoff"
#define K_PREF_ANALYSIS_UPPER_CUTOFF @"Analysis upper cutoff"
#define K_PREF_ANALYSIS_IMAGE_UPDATING @"Analysis image updating"
#define K_PREF_ANALYSIS_MULTIPROC @"Multiprocessor analysis"
#define K_PREF_STACK_IMAGE_UPDATING @"Stack image updating"
#define K_PREF_STACK_MULTIPROC @"Multiprocessor stack"
#define K_PREF_PROCESS_MULTIPROC @"Multiprocessor processing"
// Types
typedef enum
{
NoParallelOptimization = 0,
FFTW3ThreadsOptimization,
ListThreadsOptimizations
} ParalelOptimization_t;
@interface MyUserPrefsController : NSObject
{
@private
// GUI controls
IBOutlet NSPanel* _panel;
IBOutlet NSButton* _adjustFFTSizesButton;
IBOutlet NSPopUpButton* _soundPopup;
IBOutlet NSSlider* _alignFrequencyCutoffSlider;
IBOutlet NSTextField* _alignFrequencyCutoffText;
IBOutlet NSSlider* _alignThresholdSlider;
IBOutlet NSTextField* _alignThresholdText;
IBOutlet NSButton* _alignImageUpdatingButton;
IBOutlet NSPopUpButton* _alignMultiProcPopup;
IBOutlet NSSlider* _analysisLowerCutoffSlider;
IBOutlet NSTextField* _analysisLowerCutoffText;
IBOutlet NSSlider* _analysisUpperCutoffSlider;
IBOutlet NSTextField* _analysisUpperCutoffText;
IBOutlet NSButton* _analysisImageUpdatingButton;
IBOutlet NSPopUpButton* _analysisMultiProcPopup;
IBOutlet NSButton* _stackImageUpdatingButton;
IBOutlet NSPopUpButton* _stackMultiProcPopup;
IBOutlet NSPopUpButton* _processMultiProcPopup;
// Internals
NSUserDefaults* _user;
// Preferences
bool _adjustFFTSizes;
double _alignFrequencyCutoff;
double _alignThreshold;
bool _alignImageUpdating;
ParalelOptimization_t _alignMultiProc;
double _analysisLowerCutoff;
double _analysisUpperCutoff;
bool _analysisImageUpdating;
ParalelOptimization_t _analysisMultiProc;
bool _stackImageUpdating;
bool _stackMultiProc;
bool _processMultiProc;
}
// Accessors
+ (MyUserPrefsController*) getUserPref ;
+ (bool) adjustFFTSizes;
+ (double) alignFrequencyCutoff;
+ (double) alignThreshold;
+ (bool) alignImageUpdating;
+ (ParalelOptimization_t) alignMultiProc;
+ (double) analysisLowerCutoff;
+ (double) analysisUpperCutoff;
+ (bool) analysisImageUpdating;
+ (ParalelOptimization_t) analysisMultiProc;
+ (bool) stackImageUpdating;
+ (bool) stackMultiProc;
+ (bool) processMultiProc;
// GUI actions
- (IBAction)changeAdjustFFTSizes:(id)sender;
- (IBAction)changeEndProcessingSound:(id)sender;
- (IBAction)changeAlignFrequencyCutoff:(id)sender;
- (IBAction)changeAlignThreshold:(id)sender;
- (IBAction)changeAlignImageUpdating:(id)sender;
- (IBAction)changeAlignMultiProc:(id)sender;
- (IBAction)changeAnalysisLowerCutoff:(id)sender;
- (IBAction)changeAnalysisUpperCutoff:(id)sender;
- (IBAction)changeAnalysisImageUpdating:(id)sender;
- (IBAction)changeAnalysisMultiProc:(id)sender;
- (IBAction)changeStackImageUpdating:(id)sender;
- (IBAction)changeStackMultiProc:(id)sender;
- (IBAction)changeProcessMultiProc:(id)sender;
- (IBAction)resetPrefs:(id)sender;
- (IBAction)applyChanges:(id)sender;
- (IBAction)cancelChanges:(id)sender;
- (IBAction)confirmChanges:(id)sender;
- (IBAction) showPrefs:(id)sender;
@end
#endif
|