mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 03:41:25 +00:00
Remove use of preferences code. (doubleClick:): Change support of external editor (add support for .app editors). * Framework/PCProjectWindow.m: Start implementing two-mode handling of tear-off windows. New handling will support two modes: 1. all windows are opened inside projet window and 2. Build, Launch/Debug, Loaded Files (Project Find in future) are opened as tear-off windows. This simplifiles the code and in my opinion more intuitive then current implementation. * Modules/Editors/ProjectCenter/PCEditor.m: (_createWindow): Change window attribute ReleasedWhenClosed to NO. * PCPrefController.m: Add new parameter 'notify' to method setObject. This parameter is usefull for situation when open and save panels saves its values. For example: when project are opened 'Open Project' panel save last opened dir to PC prefernces and post notificaion about prefs changes. Newly created objects of projects may lead to PC segfault. * Modules/Preferences/Build/PCBuildPrefs.m, * Modules/Preferences/Interface/PCInterfacePrefs.m, * Modules/Preferences/Saving/PCSavingPrefs.m, * Modules/Preferences/Misc/PCMiscPrefs.m, * Framework/PCFileManager: Use new preferences setObject method. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@28038 72102866-910b-0410-8b05-ffd578937521
280 lines
6.5 KiB
Objective-C
280 lines
6.5 KiB
Objective-C
//
|
|
// GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
|
|
//
|
|
// Copyright (C) 2001-2009 Free Software Foundation
|
|
//
|
|
// Authors: Sergii Stoian
|
|
//
|
|
// Description:
|
|
//
|
|
// This file is part of GNUstep.
|
|
//
|
|
// This application 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 application 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
|
|
// Library General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
#import <ProjectCenter/PCDefines.h>
|
|
#import <ProjectCenter/PCFileManager.h>
|
|
|
|
#import "PCBuildPrefs.h"
|
|
|
|
@implementation PCBuildPrefs
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// --- Init and free
|
|
// ----------------------------------------------------------------------------
|
|
|
|
- (id)initWithPrefController:(id <PCPreferences>)aPrefs
|
|
{
|
|
self = [super init];
|
|
|
|
if ([NSBundle loadNibNamed:@"BuildPrefs" owner:self] == NO)
|
|
{
|
|
NSLog(@"PCBuildPrefs: error loading NIB file!");
|
|
}
|
|
|
|
prefs = aPrefs;
|
|
|
|
RETAIN(buildingView);
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
[setSuccessButton setRefusesFirstResponder:YES];
|
|
[setFailureButton setRefusesFirstResponder:YES];
|
|
|
|
[setRootBuildDirButton setRefusesFirstResponder:YES];
|
|
[setBuildToolButton setRefusesFirstResponder:YES];
|
|
|
|
[deleteCache setRefusesFirstResponder:YES];
|
|
[promptOnClean setRefusesFirstResponder:YES];
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
#ifdef DEBUG
|
|
NSLog (@"PCBuildPrefs: dealloc");
|
|
#endif
|
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
|
|
RELEASE(buildingView);
|
|
|
|
[super dealloc];
|
|
}
|
|
|
|
// Protocol
|
|
- (void)setDefaults
|
|
{
|
|
[prefs setObject:@"" forKey:SuccessSound notify:NO];
|
|
[prefs setObject:@"" forKey:FailureSound notify:NO];
|
|
[prefs setObject:@"" forKey:RootBuildDirectory notify:NO];
|
|
[prefs setObject:PCDefaultBuildTool forKey:BuildTool notify:NO];
|
|
[prefs setObject:@"YES" forKey:DeleteCacheWhenQuitting notify:NO];
|
|
[prefs setObject:@"YES" forKey:PromptOnClean notify:NO];
|
|
}
|
|
|
|
- (void)readPreferences
|
|
{
|
|
NSString *val;
|
|
int state;
|
|
|
|
if (!(val = [prefs objectForKey:SuccessSound]))
|
|
val = @"";
|
|
[successField setStringValue:val];
|
|
if (!(val = [prefs objectForKey:FailureSound]))
|
|
val = @"";
|
|
[failureField setStringValue:val];
|
|
|
|
if (!(val = [prefs objectForKey:RootBuildDirectory]))
|
|
val = @"";
|
|
[rootBuildDirField setStringValue:val];
|
|
|
|
if (!(val = [prefs objectForKey:BuildTool]))
|
|
val = PCDefaultBuildTool;
|
|
[buildToolField setStringValue:val];
|
|
|
|
val = [prefs objectForKey:DeleteCacheWhenQuitting];
|
|
state = [val isEqualToString:@"YES"] ? NSOnState : NSOffState;
|
|
[deleteCache setState:state];
|
|
|
|
val = [prefs objectForKey:PromptOnClean];
|
|
state = [val isEqualToString:@"YES"] ? NSOnState : NSOffState;
|
|
[promptOnClean setState:state];
|
|
}
|
|
|
|
- (NSView *)view
|
|
{
|
|
return buildingView;
|
|
}
|
|
|
|
// Actions
|
|
- (void)setSuccessSound:(id)sender
|
|
{
|
|
NSArray *types = [NSArray arrayWithObjects:@"snd",@"au",@"wav",nil];
|
|
NSArray *files;
|
|
NSString *path;
|
|
|
|
if ((sender == successField))
|
|
{
|
|
path = [successField stringValue];
|
|
}
|
|
else
|
|
{
|
|
files = [[PCFileManager defaultManager]
|
|
filesOfTypes:types
|
|
operation:PCOpenFileOperation
|
|
multiple:NO
|
|
title:@"Choose Success Sound"
|
|
accView:nil];
|
|
path = [files objectAtIndex:0];
|
|
}
|
|
|
|
/* {
|
|
NSSound *sound;
|
|
|
|
sound = [[NSSound alloc] initWithContentsOfFile:path byReference:YES];
|
|
[sound play];
|
|
RELEASE(sound);
|
|
}*/
|
|
|
|
if (path)
|
|
{
|
|
[successField setStringValue:path];
|
|
[prefs setObject:path forKey:SuccessSound notify:YES];
|
|
}
|
|
|
|
[[buildingView window] makeFirstResponder:successField];
|
|
}
|
|
|
|
- (void)setFailureSound:(id)sender
|
|
{
|
|
NSArray *types = [NSArray arrayWithObjects:@"snd",@"au",@"wav",nil];
|
|
NSArray *files;
|
|
NSString *path;
|
|
|
|
if ((sender == failureField))
|
|
{
|
|
path = [failureField stringValue];
|
|
}
|
|
else
|
|
{
|
|
files = [[PCFileManager defaultManager]
|
|
filesOfTypes:types
|
|
operation:PCOpenFileOperation
|
|
multiple:NO
|
|
title:@"Choose Failure Sound"
|
|
accView:nil];
|
|
path = [files objectAtIndex:0];
|
|
}
|
|
|
|
if (path)
|
|
{
|
|
[failureField setStringValue:path];
|
|
[prefs setObject:path forKey:FailureSound notify:YES];
|
|
}
|
|
|
|
[[buildingView window] makeFirstResponder:failureField];
|
|
}
|
|
|
|
- (void)setRootBuildDir:(id)sender
|
|
{
|
|
NSArray *files;
|
|
NSString *path;
|
|
|
|
if ((sender == rootBuildDirField))
|
|
{
|
|
path = [rootBuildDirField stringValue];
|
|
}
|
|
else
|
|
{
|
|
files = [[PCFileManager defaultManager]
|
|
filesOfTypes:nil
|
|
operation:PCOpenDirectoryOperation
|
|
multiple:NO
|
|
title:@"Choose Build Directory"
|
|
accView:nil];
|
|
path = [files objectAtIndex:0];
|
|
}
|
|
|
|
if (path)
|
|
{
|
|
[rootBuildDirField setStringValue:path];
|
|
[prefs setObject:path forKey:RootBuildDirectory notify:YES];
|
|
}
|
|
|
|
[[buildingView window] makeFirstResponder:rootBuildDirField];
|
|
}
|
|
|
|
- (void)setBuildTool:(id)sender
|
|
{
|
|
NSArray *files;
|
|
NSString *path;
|
|
|
|
if ((sender == buildToolField))
|
|
{
|
|
path = [buildToolField stringValue];
|
|
}
|
|
else
|
|
{
|
|
files = [[PCFileManager defaultManager]
|
|
filesOfTypes:nil
|
|
operation:PCOpenFileOperation
|
|
multiple:NO
|
|
title:@"Choose Build Tool"
|
|
accView:nil];
|
|
path = [files objectAtIndex:0];
|
|
}
|
|
|
|
if (path)
|
|
{
|
|
[buildToolField setStringValue:path];
|
|
[prefs setObject:path forKey:BuildTool notify:YES];
|
|
}
|
|
|
|
[[buildingView window] makeFirstResponder:buildToolField];
|
|
}
|
|
|
|
- (void)setDeleteCache:(id)sender
|
|
{
|
|
NSString *state;
|
|
|
|
if (deleteCache == nil)
|
|
{// HACK!!! need to be fixed in GNUstep
|
|
deleteCache = sender;
|
|
return;
|
|
}
|
|
|
|
state = ([sender state] == NSOffState) ? @"NO" : @"YES";
|
|
[prefs setObject:state forKey:DeleteCacheWhenQuitting notify:YES];
|
|
}
|
|
|
|
- (void)setPromptOnClean:(id)sender
|
|
{
|
|
NSString *state;
|
|
|
|
if (promptOnClean == nil)
|
|
{// HACK!!! need to be fixed in GNUstep
|
|
promptOnClean = sender;
|
|
return;
|
|
}
|
|
|
|
state = ([sender state] == NSOffState) ? @"NO" : @"YES";
|
|
NSLog(@"Set PromptOnClean to %@", state);
|
|
[prefs setObject:state forKey:PromptOnClean notify:YES];
|
|
}
|
|
|
|
@end
|
|
|