mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 11:21:29 +00:00
* Images/FileRTF.tiff: Removed. * Images/FileM.tiff, * Images/FileMH.tiff, * Images/FileH.tiff, * Images/FileHH.tiff, * Images/FileC.tiff, * Images/FileCH.tiff, Moved to Modules/Editors/ProjectEditor/Resources. * Modules/Editors/ProjectCenter/PCEditor.h: Added new variable _isEditable. * Modules/Editors/ProjectCenter/PCEditor.m: (_createEditorViewWithFrame:): Set editable state for NSTextView here. Add observer for changed text notification here. * Resources/Info.plist: NSTypes was extended. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@25954 72102866-910b-0410-8b05-ffd578937521
143 lines
4 KiB
Objective-C
143 lines
4 KiB
Objective-C
/*
|
|
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
|
|
|
|
Copyright (C) 2002-2004 Free Software Foundation
|
|
|
|
Authors: Philippe C.D. Robert
|
|
Serg Stoyan
|
|
|
|
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.
|
|
*/
|
|
|
|
#ifndef _PCEditor_h_
|
|
#define _PCEditor_h_
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
#import <Protocols/CodeEditor.h>
|
|
#import <Protocols/CodeParser.h>
|
|
|
|
#import <ProjectCenter/PCProjectEditor.h>
|
|
|
|
@class PCEditorView;
|
|
|
|
@interface PCEditor : NSObject <CodeEditor>
|
|
{
|
|
id projectEditor;
|
|
|
|
NSScrollView *_extScrollView;
|
|
PCEditorView *_extEditorView;
|
|
NSScrollView *_intScrollView;
|
|
PCEditorView *_intEditorView;
|
|
NSTextStorage *_storage;
|
|
NSMutableString *_path;
|
|
NSString *_categoryPath;
|
|
NSWindow *_window;
|
|
|
|
|
|
BOOL _isEdited;
|
|
BOOL _isEditable;
|
|
BOOL _isWindowed;
|
|
BOOL _isExternal;
|
|
|
|
id<CodeParser> aParser;
|
|
NSArray *parserClasses;
|
|
NSArray *parserMethods;
|
|
// NSMutableArray *classNames;
|
|
// NSMutableArray *methodNames;
|
|
|
|
NSFont *defaultFont;
|
|
NSFont *highlightFont;
|
|
|
|
NSColor *textColor;
|
|
NSColor *highlightColor;
|
|
NSColor *backgroundColor;
|
|
NSColor *readOnlyColor;
|
|
NSColor *textBackground;
|
|
|
|
// location of the highlit delimiter character
|
|
unsigned int highlitCharacterLocation;
|
|
|
|
// is YES if we are currently highlighting a delimiter character
|
|
// otherwise NO
|
|
BOOL isCharacterHighlit;
|
|
int highlited_chars[2];
|
|
|
|
// the stored color and font attributes of the highlit character, so
|
|
// that they can be restored later on when the character is un-highlit
|
|
NSColor *previousFGColor;
|
|
NSColor *previousBGColor;
|
|
NSColor *previousFont;
|
|
|
|
// This is used to protect that -textViewDidChangeSelection: invocations
|
|
// don't do anything when the text view changing, because this causes
|
|
// further changes to the text view and infinite recursive invocations
|
|
// of this method.
|
|
BOOL editorTextViewIsPressingKey;
|
|
}
|
|
|
|
- (BOOL)editorShouldClose;
|
|
|
|
// ===========================================================================
|
|
// ==== Window delegate
|
|
// ===========================================================================
|
|
- (BOOL)windowShouldClose:(id)sender;
|
|
- (void)windowDidBecomeKey:(NSNotification *)aNotification;
|
|
- (void)windowDidResignKey:(NSNotification *)aNotification;
|
|
|
|
// ===========================================================================
|
|
// ==== TextView (_intEditorView, _extEditorView) delegate
|
|
// ===========================================================================
|
|
- (void)textDidChange:(NSNotification *)aNotification;
|
|
- (void)textViewDidChangeSelection:(NSNotification *)notification;
|
|
- (void)editorTextViewWillPressKey:sender;
|
|
- (void)editorTextViewDidPressKey:sender;
|
|
|
|
- (BOOL)becomeFirstResponder;
|
|
- (BOOL)resignFirstResponder;
|
|
|
|
@end
|
|
|
|
@interface PCEditor (UInterface)
|
|
|
|
- (void)_createWindow;
|
|
- (void)_createInternalView;
|
|
- (PCEditorView *)_createEditorViewWithFrame:(NSRect)fr;
|
|
|
|
@end
|
|
|
|
@interface PCEditor (Menu)
|
|
|
|
- (void)pipeOutputOfCommand:(NSString *)command;
|
|
// Find
|
|
- (void)findNext:sender;
|
|
- (void)findPrevious:sender;
|
|
- (void)jumpToSelection:sender;
|
|
- (void)goToLine:sender;
|
|
|
|
@end
|
|
|
|
@interface PCEditor (Parenthesis)
|
|
|
|
- (void)unhighlightCharacter;
|
|
- (void)highlightCharacterAt:(unsigned int)location;
|
|
- (void)computeNewParenthesisNesting;
|
|
|
|
@end
|
|
|
|
#endif // _PCEDITOR_H_
|
|
|