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
|
// Lynkeos
// $Id$
//
// Created by Jean-Etienne LAMIAUD on Sat Mar 10, 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 "MyDocument.h"
#include "MyListManagement.h"
@interface MyListManagement(Private)
- (void) hilightChange:(NSNotification*)notif ;
- (void) processStarted:(NSNotification*)notif ;
@end
@implementation MyListManagement(Private)
- (void) hilightChange:(NSNotification*)notif
{
id <LynkeosProcessableItem> item = nil;
id <LynkeosImageList> list;
NSEnumerator *listEnum;
BOOL nextEnable = NO, prevEnable = NO;
DataMode_t dataMode = [_document dataMode];
// Get the item and its image
if ( dataMode == ListData )
item = [_windowController highlightedItem];
else
item = [_document currentList];
// Update the image view
[_imageView displayItem:item];
// Update the buttons state
if ( dataMode == ListData )
{
[_plusButton setEnabled:YES];
[_minusButton setEnabled:item!=nil];
[_toggleButton setEnabled:item!=nil];
list = [(MyDocument*)_document currentList];
if ( item != nil )
{
listEnum = [list imageEnumeratorStartAt:item
directSense:YES
skipUnselected:YES];
nextEnable = ([listEnum nextObject] != nil);
listEnum = [list imageEnumeratorStartAt:item
directSense:NO
skipUnselected:YES];
prevEnable = ([listEnum nextObject] != nil);
}
else if ( [[list imageArray] count] != 0 )
{
nextEnable = YES;
prevEnable = YES;
}
}
else
{
[_plusButton setEnabled:NO];
[_minusButton setEnabled:NO];
[_toggleButton setEnabled:NO];
}
[_prevButton setEnabled:prevEnable];
[_nextButton setEnabled:nextEnable];
}
- (void) processStarted:(NSNotification*)notif
{
[_plusButton setEnabled:NO];
[_minusButton setEnabled:NO];
[_toggleButton setEnabled:NO];
[_prevButton setEnabled:NO];
[_nextButton setEnabled:NO];
}
@end
@implementation MyListManagement
+ (BOOL) isStandardProcessingViewController { return(YES); }
+ (ProcessingViewKind_t) processingViewKindForConfig:(id <NSObject>)config
{
NSAssert( config == nil, @"List manager does not support configuration" );
return(ListManagementKind);
}
+ (BOOL) isViewControllingProcess:(Class)processingClass
withConfig:(id <NSObject>*)config
{
*config = nil;
return( NO );
}
+ (void) getProcessingTitle:(NSString**)title
toolTitle:(NSString**)tooTitle
key:(NSString**)key
icon:(NSImage**)icon
tip:(NSString**)tip
forConfig:(id <NSObject>)config
{
NSAssert( config == nil, @"List manager does not support configuration" );
*title = NSLocalizedString(@"ListMenu",@"List menu title");
*tooTitle = NSLocalizedString(@"ListTool",@"List tool title");
*key = @"l";
*icon = [NSImage imageNamed:@"List"];
*tip = NSLocalizedString(@"ListTip",@"List tooltip");;
}
+ (unsigned int) authorizedModesForConfig:(id <NSObject>)config
{
NSAssert( config == nil, @"List manager does not support configuration" );
return(ImageMode|DarkFrameMode|FlatFieldMode|ListData|ResultData);
}
+ (unsigned int) allowedDisplaysForConfig:(id <NSObject>)config
{
NSAssert( config == nil, @"List manager does not support configuration" );
return( BottomTab|SeparateView );
}
- (id) initWithWindowController: (id <LynkeosWindowController>)window
document: (id <LynkeosViewDocument>)document
configuration: (id <NSObject>)config
{
// We are instantiated by the nib file, not by the window controller
[self doesNotRecognizeSelector:_cmd];
return( nil );
}
- (void) awakeFromNib
{
_imageView = [_windowController getImageView];
_document = [_windowController document];
}
- (NSView*) getProcessingView { return( _view ); }
- (LynkeosProcessingViewFrame_t) preferredDisplay { return( BottomTab ); }
- (void) setActiveView:(BOOL)active
{
NSNotificationCenter *center = [NSNotificationCenter defaultCenter];
if ( active )
{
// Authorize the selections
[_windowController setListSelectionAuthorization:YES];
[_windowController setDataModeSelectionAuthorization:YES];
[_windowController setItemSelectionAuthorization:YES];
[_windowController setItemEditionAuthorization:YES];
// Delete the selection rectangles
[_imageView removeAllSelections];
[_imageView setSelectionMode:NoSelection];
// Register for notifications
[center addObserver:self
selector:@selector(hilightChange:)
name: LynkeosHilightedItemDidChangeNotification
object:_windowController];
[center addObserver:self
selector:@selector(hilightChange:)
name: LynkeosItemAddedNotification
object:_document];
[center addObserver:self
selector:@selector(hilightChange:)
name: LynkeosListChangeNotification
object:_document];
[center addObserver:self
selector:@selector(processStarted:)
name: LynkeosProcessStartedNotification
object:_document];
[center addObserver:self
selector:@selector(hilightChange:)
name: LynkeosProcessStackEndedNotification
object:_document];
// Synchronize the display
[self hilightChange:nil];
}
else
{
// Stop receiving notifications
[center removeObserver:self];
}
}
- (id <LynkeosProcessingParameter>) getCurrentParameters
{
// This is not a real processing view
[self doesNotRecognizeSelector:_cmd];
return( nil );
}
- (Class) processingClass
{
// This is not a real processing view
[self doesNotRecognizeSelector:_cmd];
return( nil );
}
- (IBAction) addAction :(id)sender
{
[_windowController addAction:sender];
}
- (IBAction) deleteAction :(id)sender
{
[_windowController delete:sender];
}
- (IBAction) toggleEntrySelection :(id)sender
{
[_windowController toggleEntrySelection:sender];
}
- (IBAction) highlightNext :(id)sender
{
[_windowController highlightNext:sender];
}
- (IBAction) highlightPrevious :(id)sender
{
[_windowController highlightPrevious:sender];
}
@end
|