/* Copyright (C) 2000-2003 SKYRIX Software AG This file is part of OGo OGo is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. OGo 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with OGo; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // $Id$ #include "SkyArticleUnitViewer.h" #include "common.h" #include @interface SkyArticleUnitViewer(PrivateMethods) - (void)setTabKey:(NSString *)_key; @end @implementation SkyArticleUnitViewer - (id)init { if ((self = [super init])) { [self setTabKey:@"attributes"]; } return self; } #if !LIB_FOUNDATION_BOEHM_GC - (void)dealloc { RELEASE(self->tabKey); [super dealloc]; } #endif - (BOOL)isEditEnabled { return YES; // has to be improved } - (BOOL)isDeleteEnabled { return YES; // has to be improved } //accessors - (id)unit { return self->object; } - (void)setTabKey:(NSString *)_tabKey { ASSIGN(self->tabKey,_tabKey); } - (NSString *)tabKey { return self->tabKey; } //actions - (id)edit { if ([self isEditEnabled]) { return [super edit]; } [self setErrorString:@"Unit isn't editable!"]; return nil; } - (id)delete { [self setWarningOkAction:@"reallyDelete"]; [self setWarningPhrase:@"Really Delete"]; [self setIsInWarningMode:YES]; return nil; } - (id)reallyDelete { id result; result = [[self object] run:@"articleunit::delete", @"reallyDelete", [NSNumber numberWithBool:YES], nil]; [self setIsInWarningMode:NO]; if (result) { if (![self commit]) { [self setErrorString:@"Couldn't commit articleunit delete !"]; [self rollback]; return nil; } [self postChange:@"LSWDeletedArticleUnit" onObject: result]; [self back]; } return nil; } - (id)cancel { [self setIsInWarningMode:NO]; return nil; } @end