* NSAttributedString.m and NSAttributedString.h remove.

* NSStringDrawing.m and NSStringDrawing.h add NSAttributedString interface
	and implementation.  Implement NSAttributedString's size method and
	optimize tab width calculation.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@3352 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
far 1998-11-30 09:40:01 +00:00
parent 2bec406f7f
commit b77483cabe
13 changed files with 87 additions and 187 deletions

View file

@ -1,3 +1,10 @@
Mon Nov 30 1998 Felipe A. Rodriguez <far@ix.netcom.com>
* NSAttributedString.m and NSAttributedString.h remove.
* NSStringDrawing.m and NSStringDrawing.h add NSAttributedString interface
and implementation. Implement NSAttributedString's size method and
optimize tab width calculation.
Sat Nov 28 18:25:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk> Sat Nov 28 18:25:00 1998 Richard Frith-Macdonald <richard@brainstorm.co.uk>
* Tools/example.m: Add very crude code to open a URL in netscape. * Tools/example.m: Add very crude code to open a URL in netscape.

View file

@ -71,7 +71,6 @@
#include <AppKit/NSActionCell.h> #include <AppKit/NSActionCell.h>
#include <AppKit/NSApplication.h> #include <AppKit/NSApplication.h>
#include <AppKit/NSAttributedString.h>
#include <AppKit/NSBitmapImageRep.h> #include <AppKit/NSBitmapImageRep.h>
#include <AppKit/NSBox.h> #include <AppKit/NSBox.h>
#include <AppKit/NSBrowser.h> #include <AppKit/NSBrowser.h>

View file

@ -1,70 +0,0 @@
/*
NSAttributedString.h
Category which defines appkit extensions to NSAttributedString and
NSMutableAttributedString.
Copyright (C) 1997 Free Software Foundation, Inc.
Author: Felipe A. Rodriguez <far@ix.netcom.com>
Date: Aug 1998
This file is part of the GNUstep GUI Library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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 Library General Public
License along with this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _GNUstep_H_NSAttributedString
#define _GNUstep_H_NSAttributedString
#include <Foundation/NSAttributedString.h>
#include <Foundation/NSGeometry.h>
#include <gnustep/base/preface.h>
// global NSString attribute names used in ascessing
// the respective property in a text attributes
// dictionary. if the key is not in the dictionary the
// default value is assumed
extern NSString *NSFontAttributeName; // NSFont, defaults to Helvetica 12
// NSParagraphStyle, default is defaultParagraphStyle
extern NSString *NSParagraphStyleAttributeName;
// NSColor, default is blackColor
extern NSString *NSForegroundColorAttributeName;
// int, default 0 = no underline
extern NSString *NSUnderlineStyleAttributeName;
extern NSString *NSSuperscriptAttributeName; // int, default 0
// NSColor, default nil = no background color
extern NSString *NSBackgroundColorAttributeName;
extern NSString *NSAttachmentAttributeName; // NSTextAttachment, default nil
// int, default 1, 0 = no ligatures, 2 = all ligatures
extern NSString *NSLigatureAttributeName;
extern NSString *NSBaselineOffsetAttributeName; // float, default 0 in points;
// float, offset from baseline,
extern NSString *NSKernAttributeName; // amount to modify default
// kerning, if 0 kerning is off
@interface NSAttributedString (NSAttributedStringKitAdditions)
@end
@interface NSMutableAttributedString (NSMutableAttributedStringKitAdditions)
@end
#endif /* _GNUstep_H_NSAttributedString */

View file

@ -1,7 +1,8 @@
/* /*
NSStringDrawing.h NSStringDrawing.h
Category which adds measure capabilities to NSString. Categories which add measure capabilities to NSAttributedString
and NSString.
Copyright (C) 1997 Free Software Foundation, Inc. Copyright (C) 1997 Free Software Foundation, Inc.
@ -30,7 +31,7 @@
#define _GNUstep_H_NSStringDrawing #define _GNUstep_H_NSStringDrawing
#include <Foundation/NSString.h> #include <Foundation/NSString.h>
#include <AppKit/NSAttributedString.h> #include <Foundation/NSAttributedString.h>
#include <Foundation/NSGeometry.h> #include <Foundation/NSGeometry.h>
#include <gnustep/base/preface.h> #include <gnustep/base/preface.h>
@ -63,13 +64,14 @@ enum
NSSingleUnderlineStyle = 1 // NSUnderlineStyleAttributeName NSSingleUnderlineStyle = 1 // NSUnderlineStyleAttributeName
}; };
@interface NSString(NSStringDrawing)
@interface NSString (NSStringDrawing)
- (NSSize)sizeWithAttributes:(NSDictionary *)attrs; - (NSSize)sizeWithAttributes:(NSDictionary *)attrs;
@end @end
@interface NSAttributedString(NSStringDrawing) @interface NSAttributedString (NSStringDrawing)
- (NSSize)size; - (NSSize)size;

View file

@ -36,7 +36,7 @@
#include <AppKit/NSView.h> #include <AppKit/NSView.h>
#include <AppKit/NSSpellProtocol.h> #include <AppKit/NSSpellProtocol.h>
#include <Foundation/NSRange.h> #include <Foundation/NSRange.h>
#include <AppKit/NSAttributedString.h> #include <AppKit/NSStringDrawing.h>
@class NSString; @class NSString;
@class NSData; @class NSData;

View file

@ -41,7 +41,7 @@
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
#import <AppKit/NSCell.h> #import <AppKit/NSCell.h>
#import <AppKit/NSAttributedString.h> #import <AppKit/NSStringDrawing.h>
@class NSFileWrapper; @class NSFileWrapper;
@class NSTextAttachment; @class NSTextAttachment;

View file

@ -41,7 +41,7 @@
*/ */
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
#import <AppKit/NSAttributedString.h> #import <AppKit/NSStringDrawing.h>
@class NSLayoutManager; @class NSLayoutManager;

View file

@ -93,6 +93,7 @@ extern NSSize NSTokenSize;
unsigned int style_mask; unsigned int style_mask;
int window_level; int window_level;
NSMutableArray* _flushRectangles; NSMutableArray* _flushRectangles;
NSRect rectNeedingFlush;
BOOL is_one_shot; BOOL is_one_shot;
BOOL needs_display; BOOL needs_display;

View file

@ -40,7 +40,6 @@ libgnustep-gui_OBJC_FILES = libgnustep-gui.m \
GSContext.m \ GSContext.m \
NSActionCell.m \ NSActionCell.m \
NSApplication.m \ NSApplication.m \
NSAttributedString.m \
NSBitmapImageRep.m \ NSBitmapImageRep.m \
NSBox.m \ NSBox.m \
NSBrowser.m \ NSBrowser.m \
@ -123,7 +122,6 @@ AppKit/AppKit.h \
AppKit/GSContext.h \ AppKit/GSContext.h \
AppKit/NSActionCell.h \ AppKit/NSActionCell.h \
AppKit/NSApplication.h \ AppKit/NSApplication.h \
AppKit/NSAttributedString.h \
AppKit/NSBitmapImageRep.h \ AppKit/NSBitmapImageRep.h \
AppKit/NSBox.h \ AppKit/NSBox.h \
AppKit/NSBrowser.h \ AppKit/NSBrowser.h \

View file

@ -86,17 +86,17 @@ GSContext *context;
return context; return context;
} }
+ (GSContext *) currentContext { return nil;} + (GSContext *) currentContext { return nil;} // backend
+ (void) setCurrentContext: (GSContext *)context + (void) setCurrentContext: (GSContext *)context
{ {
[self subclassResponsibility:_cmd]; [self subclassResponsibility:_cmd]; // backend
} }
+ (void) destroyContext:(GSContext *) context + (void) destroyContext:(GSContext *) context
{ // if concrete class is not { // if concrete class is not
if(_concreteClass != [GSContext class]) // a GSContext invoke it's if(_concreteClass != [GSContext class]) // a GSContext invoke it's
[_concreteClass destroyContext: context]; // equivalent method first [_concreteClass destroyContext: context]; // version of method first
else else
[self _destroyContext: context]; [self _destroyContext: context];
} }
@ -114,9 +114,9 @@ int top; // deallocated with the
// //
// Instance methods // Instance methods
// //
- init - init
{ {
return [self initWithContextInfo: nil]; return [self initWithContextInfo: nil];
} }
- initWithContextInfo: (NSDictionary *)info - initWithContextInfo: (NSDictionary *)info
@ -132,15 +132,8 @@ int top; // deallocated with the
return self; return self;
} }
- (BOOL)isDrawingToScreen - (BOOL)isDrawingToScreen { return NO; }
{ - (NSMutableData *)mutableData { return context_data; }
return NO;
}
- (NSMutableData *)mutableData
{
return context_data;
}
- (void) destroy // remove self from context - (void) destroy // remove self from context
{ // list so that self gets { // list so that self gets

View file

@ -1,64 +0,0 @@
/*
NSAttributedString.m
Category which adds measure capabilities to NSString.
Copyright (C) 1997 Free Software Foundation, Inc.
Author: Felipe A. Rodriguez <far@ix.netcom.com>
Date: Aug 1998
This file is part of the GNUstep GUI Library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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 Library General Public
License along with this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <AppKit/NSAttributedString.h>
#include <AppKit/AppKit.h>
// by default tabs are measured as one
#define TABWIDTH 3 // char so this value is set to one
// minus the default tab width of 4
@implementation NSString(NSAttributedString)
- (NSSize)sizeWithAttributes:(NSDictionary *)attrs
{
NSFont *font;
const char *str = [self cString];
int i = 0, j = TABWIDTH;
float tabSize;
while(*str != '\0') // calc the additional size
{ // to be added for tabs.
if(*str++ == '\t')
{ // j is initialized to the
i += j; // max number of spaces
j = TABWIDTH; // needed per tab. it then
} // varies in order to align
else // tabs to even multiples
j = j-- > 0 ? j : TABWIDTH; // of TABWIDTH + 1.
};
// if font is not
if(!(font = [attrs objectForKey:NSFontAttributeName])) // specified, use
font = [NSFont userFontOfSize:12]; // the default
tabSize = (float)i * [font widthOfString:@"\t"];
return NSMakeSize(([font widthOfString:self] + tabSize), [font pointSize]);
}
@end

View file

@ -1,7 +1,8 @@
/* /*
NSStringDrawing.m NSStringDrawing.m
Category which adds measure capabilities to NSString. Categories which add measure capabilities to NSAttributedString
and NSString.
Copyright (C) 1997 Free Software Foundation, Inc. Copyright (C) 1997 Free Software Foundation, Inc.
@ -28,37 +29,72 @@
#include <AppKit/NSStringDrawing.h> #include <AppKit/NSStringDrawing.h>
#include <AppKit/AppKit.h> #include <AppKit/AppKit.h>
// by default tabs are measured as one
#define TABWIDTH 3 // char so this value is set to one
// minus the default tab width of 4
@implementation NSString (NSStringDrawing)
@implementation NSString(NSStringDrawing)
- (NSSize)sizeWithAttributes:(NSDictionary *)attrs - (NSSize)sizeWithAttributes:(NSDictionary *)attrs
{ {
NSFont *font; NSFont *font;
const char *str = [self cString]; const char *str = [self cString];
int i = 0, j = 4; int i = 0, j = TABWIDTH;
float tabSize; static float tabSize;
static float pointSize;
static NSFont *lastFont = nil;
while(*str++ != '\0') // count the tabs while(*str != '\0') // calc the additional size
{ { // to be added for tabs.
if(*str == '\t') if(*str++ == '\t')
{ { // j is initialized to the
i += j; i += j; // max number of spaces
j = 4; j = TABWIDTH; // needed per tab. it then
} } // varies in order to align
else else // tabs to even multiples
j = j == 0 ? 4 : j--; j = j-- > 0 ? j : TABWIDTH; // of TABWIDTH + 1.
}; };
// if font is not // if font is not
if(!(font = [attrs objectForKey:NSFontAttributeName])) // specified, use if(!(font = [attrs objectForKey:NSFontAttributeName])) // specified, use
font = [NSFont userFontOfSize:12]; // the default font = [NSFont userFontOfSize:12]; // the default
fprintf(stderr,"string %s width: %f\n", [self cString], [font widthOfString:self]); if(font != lastFont) // update font info
{ // if font changes
// tabSize = 4 * i * [font widthOfString:@" "]; tabSize = (float)i * [font widthOfString:@"\t"];
tabSize = (float)i * [font widthOfString:@" "]; lastFont = font;
pointSize = [font pointSize];
}
return NSMakeSize(([font widthOfString:self] + tabSize), [font pointSize]); return NSMakeSize(([font widthOfString:self] + tabSize), pointSize);
}
@end
@implementation NSAttributedString (NSStringDrawing)
- (NSSize)size // this method is
{ // untested FIX ME
NSFont *font;
unsigned int length;
NSRange effectiveRange;
NSString *subString;
float pointSize;
float sumOfCharacterRange = 0;
length = [self length];
effectiveRange = NSMakeRange(0, 0);
while (NSMaxRange(effectiveRange) < length)
{
font = (NSFont*)[self attribute:NSFontAttributeName
atIndex:NSMaxRange(effectiveRange)
effectiveRange:&effectiveRange];
subString = [self substringFromRange:effectiveRange];
sumOfCharacterRange += [font widthOfString:subString];
pointSize = MAX([font pointSize], pointSize);
}
return NSMakeSize(sumOfCharacterRange, pointSize);
} }
@end @end

View file

@ -722,10 +722,8 @@ NSApplication *theApp = [NSApplication sharedApplication];
if (![aResponder acceptsFirstResponder]) // does not accept status if (![aResponder acceptsFirstResponder]) // does not accept status
return NO; // of first responder ret N return NO; // of first responder ret N
// Notify current first responder that it // If there is a first responder tell it to
// should resign. If it says NO then no // resign. Make change only if it replies Y
// change. But make sure that there even
// is a first responder
if ((first_responder) && (![first_responder resignFirstResponder])) if ((first_responder) && (![first_responder resignFirstResponder]))
return NO; return NO;
// Make responder the first // Make responder the first
@ -736,10 +734,10 @@ NSApplication *theApp = [NSApplication sharedApplication];
return YES; // responder return YES; // responder
} }
- (NSPoint)mouseLocationOutsideOfEventStream - (NSPoint)mouseLocationOutsideOfEventStream // Return mouse location
{ { // in reciever's base coord
return NSZeroPoint; return NSZeroPoint; // system, ignores event
} } // loop status (backend)
- (NSEvent *)nextEventMatchingMask:(unsigned int)mask - (NSEvent *)nextEventMatchingMask:(unsigned int)mask
{ {