apps-projectcenter/Framework/PCLogController.m
Sergii Stoian 18efb7552d 2010-07-31 Sergii Stoian <stoyan255@ukr.net>
* Framework/PCProject.m:
        (-assignProjectDict:): Fix setting projectPath to project
        dir (not to *.pcproj dir).
        * Framework/PCFilemanager.m:
        (-filesOfTypes:operation:multiple:title:accView:): Set allowed
        file types to panel of types is not nil.
        (-panel:isValidFilename): Use set allowed file types to panel.

2010-07-30 Sergii Stoian <stoyan255@ukr.net>
        * Framework/PCProject.m:
        (-subprojectWithName:): Pass to openProjectAt: subproject dir.
        openProjectat: can now handle this situation.
        * Framework/PCProjectManager.m:
        (-openProjectAt:): Implement handling of 'aPath' argument as
        project file and as project dir. Select *.pcproj if exists then
        try to load PC.project.
        (-openProject): Implement intelligent selection of project file
        when selected *.pcproj, PC.project or project dir.
        * Framework/PCFilemanager.m:
        (-filesOfTypes:operation:multiple:title:accView:): Remove code
        specific for opening projects (moved to PCProjectManager's
        openProject).
        (-panel:isValidFilename): Fix handling project file detection.
        (-filesWithExtension:atPath:includeDirs:): New method. Returns
        list of files with specified extension. Also returns dirs if
        'includeDirs' set to YES.

2010-07-28 Sergii Stoian <stoyan255@ukr.net>
        * Framework/PCProject.m:
        (close:): Fix closing of subprojects. Remove subproject from
        Projectmanager's list of loaded projects.
        * Framework/PCLogController.m:
        (-init): Change font size to systemFontSize.

2010-07-24 Sergii Stoian <stoyan255@ukr.net>
        * Headers/ProjectCenter/PCProjectBuilder.m:
        * Framework/PCProjectBuilder.m:
        (cleanupAfterMake:): Added new argument (NSString) to method
        containing current status text. Before status text in project window
        always stated "...terminated".


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@31093 72102866-910b-0410-8b05-ffd578937521
2010-08-07 21:56:04 +00:00

188 lines
4.4 KiB
Objective-C

/*
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
Copyright (C) 2001 Free Software Foundation
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/PCLogController.h>
void
PCLog(id sender, int tag, NSString* format, va_list args)
{
[[PCLogController sharedLogController]
logMessage:[NSString stringWithFormat:format arguments: args]
withTag:tag
sender:sender];
}
void
PCLogInfo(id sender, NSString* format, ...)
{
va_list ap;
va_start(ap, format);
PCLog(sender, INFO, format, ap);
va_end(ap);
}
void
PCLogStatus(id sender, NSString* format, ...)
{
va_list ap;
va_start(ap, format);
PCLog(sender, STATUS, format, ap);
va_end(ap);
}
void
PCLogWarning(id sender, NSString* format, ...)
{
va_list ap;
va_start(ap, format);
PCLog(sender, WARNING, format, ap);
va_end(ap);
}
void
PCLogError(id sender, NSString* format, ...)
{
va_list ap;
va_start(ap, format);
PCLog(sender, ERROR, format, ap);
va_end(ap);
}
@implementation PCLogController
// ===========================================================================
// ==== Class methods
// ===========================================================================
static PCLogController *_logCtrllr = nil;
+ (PCLogController *)sharedLogController
{
if (!_logCtrllr)
{
_logCtrllr = [[PCLogController alloc] init];
}
return _logCtrllr;
}
// ===========================================================================
// ==== Init and free
// ===========================================================================
- (id)init
{
NSFont *font = nil;
if (!(self = [super init]))
{
return nil;
}
if ([NSBundle loadNibNamed:@"LogPanel" owner:self] == NO)
{
NSLog(@"PCLogController[init]: error loading NIB file!");
return nil;
}
[panel setFrameAutosaveName:@"LogPanel"];
if (![panel setFrameUsingName: @"LogPanel"])
{
[panel center];
}
font = [NSFont userFixedPitchFontOfSize:[NSFont systemFontSize]];
textAttributes =
[NSMutableDictionary dictionaryWithObject:font forKey:NSFontAttributeName];
[textAttributes retain];
return self;
}
- (void)dealloc
{
#ifdef DEVELOPMENT
NSLog(@"PCLogController: dealloc");
#endif
RELEASE(textAttributes);
[super dealloc];
}
- (void)showPanel
{
[panel makeKeyAndOrderFront:self];
}
- (void)logMessage:(NSString *)text withTag:(int)tag sender:(id)sender;
{
NSString *messageText = nil;
NSAttributedString *message = nil;
messageText =
[NSString stringWithFormat:@" %@: %@\n",[sender className],text];
switch (tag)
{
case INFO:
[textAttributes
setObject:[NSColor colorWithDeviceRed:.0 green:.0 blue:.0 alpha:1.0]
forKey:NSForegroundColorAttributeName];
break;
case STATUS:
[textAttributes
setObject:[NSColor colorWithDeviceRed:.0 green:.35 blue:.0 alpha:1.0]
forKey:NSForegroundColorAttributeName];
break;
case WARNING:
[textAttributes
setObject:[NSColor colorWithDeviceRed:.56 green:.45 blue:.0 alpha:1.0]
forKey:NSForegroundColorAttributeName];
break;
case ERROR:
[textAttributes
setObject:[NSColor colorWithDeviceRed:.63 green:.0 blue:.0 alpha:1.0]
forKey:NSForegroundColorAttributeName];
break;
default:
break;
}
message = [[NSAttributedString alloc] initWithString:messageText
attributes:textAttributes];
[self putMessageOnScreen:message];
}
- (void)putMessageOnScreen:(NSAttributedString *)message
{
[[textView textStorage] appendAttributedString:message];
[textView scrollRangeToVisible:NSMakeRange([[textView string] length], 0)];
}
@end