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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
//
// Lynkeos
// $Id: MyUnsharpMaskView.m 585 2018-09-08 21:30:37Z j-etienne $
//
// Created by Jean-Etienne LAMIAUD on Sun Dec 2 2007.
// Copyright (c) 2007-2014. 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 "MyUnsharpMaskView.h"
@interface MyUnsharpMaskView(Private)
- (void) itemChange:(NSNotification*)notif ;
- (void) processStarted:(NSNotification*)notif ;
- (void) processEnded:(NSNotification*)notif ;
- (void) updateProgressBar ;
@end
@implementation MyUnsharpMaskView(Private)
- (void) itemChange:(NSNotification*)notif
{
// Update item and parameters
if ( _params != nil )
[_params release];
[_window getItemToProcess:&_item andParameter:&_params forView:self];
if ( _item != nil )
{
if ( _params == nil )
{
// Create some new parameters
_params = [[MyUnsharpMaskParameters alloc] init];
_params->_radius = 2.5;
_params->_gain = 0.0;
_params->_gradientOnly = NO;
}
else
[_params retain];
[_logRadius setDoubleValue:_params->_radius];
[_gainSlider setDoubleValue:_params->_gain];
[_gainText setDoubleValue:_params->_gain];
[_gradientButton setState:
(_params->_gradientOnly ? NSOnState : NSOffState )];
}
else
{
[_radiusText setStringValue:@""];
[_gainText setStringValue:@""];
}
[_radiusSlider setEnabled:(!_isProcessing && _params != nil)];
[_radiusText setEnabled:(!_isProcessing && _params != nil)];
[_gainSlider setEnabled:(!_isProcessing && _params != nil)];
[_gainText setEnabled:(!_isProcessing && _params != nil)];
[_gradientButton setEnabled:(!_isProcessing && _params != nil)];
// Display the image
[_imageView displayItem:_item];
}
- (void) processStarted:(NSNotification*)notif
{
_isProcessing = YES;
// Disable the controls
[_radiusSlider setEnabled:NO];
[_radiusText setEnabled:NO];
[_gainSlider setEnabled:NO];
[_gainText setEnabled:NO];
[_gradientButton setEnabled:NO];
if ( [[[notif userInfo] objectForKey:LynkeosUserInfoProcess] isEqual:
[MyUnsharpMask class]] )
{
[_progress setMaxValue:[_item imageSize].height - 1];
[_progress setIndeterminate:YES];
[_progress startAnimation:self];
_progressTimer = [NSTimer scheduledTimerWithTimeInterval:0.1
target:self
selector:@selector(updateProgressBar)
userInfo:nil
repeats:YES];
}
}
- (void) processEnded:(NSNotification*)notif
{
_isProcessing = NO;
// Re-enable the controls
[_radiusSlider setEnabled:YES];
[_radiusText setEnabled:YES];
[_gainSlider setEnabled:YES];
[_gainText setEnabled:YES];
[_gradientButton setEnabled:YES];
[_progressTimer invalidate];
_progressTimer = nil;
// Here we cheat a bit.
// As the image refresh can be long, we start by forcing the display to
// show the progress bar as full before final refresh
[_progress setIndeterminate:NO];
[_progress stopAnimation:self];
[_progress setDoubleValue:[_item imageSize].height - 1];
[_panel display];
[_progress setDoubleValue:0.0];
// Redisplay the image
[_imageView displayItem:_item];
}
- (void) updateProgressBar
{
if ( _params->_nextY != 0 )
{
if ( [_progress isIndeterminate] )
{
[_progress setIndeterminate:NO];
[_progress stopAnimation:self];
}
[_progress setDoubleValue:_params->_nextY];
}
}
@end
@implementation MyUnsharpMaskView
+ (BOOL) isStandardProcessingViewController { return(YES); }
+ (ProcessingViewKind_t) processingViewKindForConfig:(id <NSObject>)config
{
NSAssert( config == nil, @"UnsharpMask does not support configuration" );
return(ImageProcessingKind);
}
+ (BOOL) isViewControllingProcess:(Class)processingClass
withConfig:(id <NSObject>*)config
{
*config = nil;
return( processingClass == [MyUnsharpMask class] );
}
+ (void) getProcessingTitle:(NSString**)title
toolTitle:(NSString**)toolTitle
key:(NSString**)key
icon:(NSImage**)icon
tip:(NSString**)tip
forConfig:(id <NSObject>)config
{
NSAssert( config == nil, @"UnsharpMask does not support configuration" );
*title = NSLocalizedString(@"UnsharpMask",@"Unsharp mask tool");
*toolTitle = NSLocalizedString(@"UnsharpMask",@"Unsharp mask tool");
*key = @"u";
*icon = [NSImage imageNamed:@"UnsharpMask"];
*tip = NSLocalizedString(@"UnsharpMaskTip",@"Unsharp mask tooltip");;
}
+ (unsigned int) allowedDisplaysForConfig:(id <NSObject>)config
{
NSAssert( config == nil, @"UnsharpMask does not support configuration" );
return( BottomTab|BottomTab_NoList|SeparateView|SeparateView_NoList );
}
- (id) init
{
if ( (self = [super init]) != nil )
{
_document = nil;
_window = nil;
_imageView = nil;
_item = nil;
_params = nil;
_isProcessing = NO;
_progressTimer = nil;
[NSBundle loadNibNamed:@"MyUnsharpMask" owner:self];
}
return( self );
}
- (void) dealloc
{
if ( _params != nil )
[_params release];
[_logRadius release];
if ( _progressTimer != nil )
[_progressTimer invalidate];
[super dealloc];
}
- (id) initWithWindowController: (id <LynkeosWindowController>)window
document: (id <LynkeosViewDocument>)document
configuration: (id <NSObject>)config
{
NSAssert( config == nil, @"UnsharpMask does not support configuration" );
if ( (self = [self init]) != nil )
{
_document = document;
_window = window;
_imageView = [_window getImageView];
_logRadius = [[LynkeosLogFields alloc] initWithSlider:_radiusSlider
andTextField:_radiusText];
[_progress setDoubleValue:0.0];
}
return( self );
}
- (NSView*) getProcessingView { return( _panel ); }
- (void) setActiveView:(BOOL)active
{
NSNotificationCenter *notifCenter = [NSNotificationCenter defaultCenter];
if ( active )
{
// Authorize some selections
[_window setListSelectionAuthorization:NO];
[_window setDataModeSelectionAuthorization:YES];
[_window setItemSelectionAuthorization:YES];
[_window setItemEditionAuthorization:NO];
[_imageView removeAllSelections];
[_imageView setSelectionMode:NoSelection];
// Register for notifications
[notifCenter addObserver:self
selector:@selector(itemChange:)
name: LynkeosHilightedItemDidChangeNotification
object:_window];
[notifCenter addObserver:self
selector:@selector(processStarted:)
name: LynkeosProcessStartedNotification
object:_document];
[notifCenter addObserver:self
selector:@selector(processEnded:)
name: LynkeosProcessStackEndedNotification
object:_document];
[notifCenter addObserver:self
selector:@selector(itemChange:)
name: LynkeosDataModeChangeNotification
object:_document];
// Synchronize the display
[self itemChange:nil];
}
else
{
// Release the parameters
[_params release];
_params = nil;
// Stop receiving notifications
[notifCenter removeObserver:self];
}
}
- (LynkeosProcessingViewFrame_t) preferredDisplay { return( BottomTab ); }
- (id <LynkeosProcessingParameter>) getCurrentParameters
{
return( _params );
}
- (Class) processingClass
{
return( [MyUnsharpMask class] );
}
- (IBAction) radiusChange: (id)sender
{
_params->_radius = [_logRadius valueFrom:sender];
_params->_nextY = 0;
[_document startProcess:[MyUnsharpMask class]
forItem:_item parameters:_params];
}
+ (BOOL) hasProgressIndicator { return(YES); }
- (IBAction) gainChange: (id)sender
{
_params->_gain = [sender doubleValue];
if ( sender == _gainSlider )
[_gainText setDoubleValue:_params->_gain];
else
{
if ( _params->_gain > [_gainSlider maxValue] )
[_gainSlider setMaxValue:_params->_gain];
[_gainSlider setDoubleValue:_params->_gain];
}
_params->_nextY = 0;
[_document startProcess:[MyUnsharpMask class]
forItem:_item parameters:_params];
}
- (IBAction) gradientChange: (id)sender
{
_params->_gradientOnly = [sender state];
_params->_nextY = 0;
[_document startProcess:[MyUnsharpMask class]
forItem:_item parameters:_params];
}
@end
|