mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 13:10:59 +00:00
* 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:
parent
b6a6e825f6
commit
19f88d930b
13 changed files with 87 additions and 187 deletions
|
@ -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>
|
||||
|
||||
* Tools/example.m: Add very crude code to open a URL in netscape.
|
||||
|
|
|
@ -71,7 +71,6 @@
|
|||
|
||||
#include <AppKit/NSActionCell.h>
|
||||
#include <AppKit/NSApplication.h>
|
||||
#include <AppKit/NSAttributedString.h>
|
||||
#include <AppKit/NSBitmapImageRep.h>
|
||||
#include <AppKit/NSBox.h>
|
||||
#include <AppKit/NSBrowser.h>
|
||||
|
|
|
@ -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 */
|
|
@ -1,7 +1,8 @@
|
|||
/*
|
||||
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.
|
||||
|
||||
|
@ -30,7 +31,7 @@
|
|||
#define _GNUstep_H_NSStringDrawing
|
||||
|
||||
#include <Foundation/NSString.h>
|
||||
#include <AppKit/NSAttributedString.h>
|
||||
#include <Foundation/NSAttributedString.h>
|
||||
#include <Foundation/NSGeometry.h>
|
||||
#include <gnustep/base/preface.h>
|
||||
|
||||
|
@ -63,13 +64,14 @@ enum
|
|||
NSSingleUnderlineStyle = 1 // NSUnderlineStyleAttributeName
|
||||
};
|
||||
|
||||
@interface NSString(NSStringDrawing)
|
||||
|
||||
@interface NSString (NSStringDrawing)
|
||||
|
||||
- (NSSize)sizeWithAttributes:(NSDictionary *)attrs;
|
||||
|
||||
@end
|
||||
|
||||
@interface NSAttributedString(NSStringDrawing)
|
||||
@interface NSAttributedString (NSStringDrawing)
|
||||
|
||||
- (NSSize)size;
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
#include <AppKit/NSView.h>
|
||||
#include <AppKit/NSSpellProtocol.h>
|
||||
#include <Foundation/NSRange.h>
|
||||
#include <AppKit/NSAttributedString.h>
|
||||
#include <AppKit/NSStringDrawing.h>
|
||||
|
||||
@class NSString;
|
||||
@class NSData;
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <AppKit/NSCell.h>
|
||||
#import <AppKit/NSAttributedString.h>
|
||||
#import <AppKit/NSStringDrawing.h>
|
||||
|
||||
@class NSFileWrapper;
|
||||
@class NSTextAttachment;
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
*/
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <AppKit/NSAttributedString.h>
|
||||
#import <AppKit/NSStringDrawing.h>
|
||||
|
||||
@class NSLayoutManager;
|
||||
|
||||
|
|
|
@ -93,6 +93,7 @@ extern NSSize NSTokenSize;
|
|||
unsigned int style_mask;
|
||||
int window_level;
|
||||
NSMutableArray* _flushRectangles;
|
||||
NSRect rectNeedingFlush;
|
||||
|
||||
BOOL is_one_shot;
|
||||
BOOL needs_display;
|
||||
|
|
|
@ -40,7 +40,6 @@ libgnustep-gui_OBJC_FILES = libgnustep-gui.m \
|
|||
GSContext.m \
|
||||
NSActionCell.m \
|
||||
NSApplication.m \
|
||||
NSAttributedString.m \
|
||||
NSBitmapImageRep.m \
|
||||
NSBox.m \
|
||||
NSBrowser.m \
|
||||
|
@ -123,7 +122,6 @@ AppKit/AppKit.h \
|
|||
AppKit/GSContext.h \
|
||||
AppKit/NSActionCell.h \
|
||||
AppKit/NSApplication.h \
|
||||
AppKit/NSAttributedString.h \
|
||||
AppKit/NSBitmapImageRep.h \
|
||||
AppKit/NSBox.h \
|
||||
AppKit/NSBrowser.h \
|
||||
|
|
|
@ -86,17 +86,17 @@ GSContext *context;
|
|||
return context;
|
||||
}
|
||||
|
||||
+ (GSContext *) currentContext { return nil;}
|
||||
+ (GSContext *) currentContext { return nil;} // backend
|
||||
|
||||
+ (void) setCurrentContext: (GSContext *)context
|
||||
{
|
||||
[self subclassResponsibility:_cmd];
|
||||
[self subclassResponsibility:_cmd]; // backend
|
||||
}
|
||||
|
||||
+ (void) destroyContext:(GSContext *) context
|
||||
{ // if concrete class is not
|
||||
if(_concreteClass != [GSContext class]) // a GSContext invoke it's
|
||||
[_concreteClass destroyContext: context]; // equivalent method first
|
||||
[_concreteClass destroyContext: context]; // version of method first
|
||||
else
|
||||
[self _destroyContext: context];
|
||||
}
|
||||
|
@ -114,9 +114,9 @@ int top; // deallocated with the
|
|||
//
|
||||
// Instance methods
|
||||
//
|
||||
- init
|
||||
{
|
||||
return [self initWithContextInfo: nil];
|
||||
- init
|
||||
{
|
||||
return [self initWithContextInfo: nil];
|
||||
}
|
||||
|
||||
- initWithContextInfo: (NSDictionary *)info
|
||||
|
@ -132,15 +132,8 @@ int top; // deallocated with the
|
|||
return self;
|
||||
}
|
||||
|
||||
- (BOOL)isDrawingToScreen
|
||||
{
|
||||
return NO;
|
||||
}
|
||||
|
||||
- (NSMutableData *)mutableData
|
||||
{
|
||||
return context_data;
|
||||
}
|
||||
- (BOOL)isDrawingToScreen { return NO; }
|
||||
- (NSMutableData *)mutableData { return context_data; }
|
||||
|
||||
- (void) destroy // remove self from context
|
||||
{ // list so that self gets
|
||||
|
|
|
@ -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
|
|
@ -1,7 +1,8 @@
|
|||
/*
|
||||
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.
|
||||
|
||||
|
@ -28,37 +29,72 @@
|
|||
|
||||
#include <AppKit/NSStringDrawing.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
|
||||
{
|
||||
NSFont *font;
|
||||
const char *str = [self cString];
|
||||
int i = 0, j = 4;
|
||||
float tabSize;
|
||||
int i = 0, j = TABWIDTH;
|
||||
static float tabSize;
|
||||
static float pointSize;
|
||||
static NSFont *lastFont = nil;
|
||||
|
||||
while(*str++ != '\0') // count the tabs
|
||||
{
|
||||
if(*str == '\t')
|
||||
{
|
||||
i += j;
|
||||
j = 4;
|
||||
}
|
||||
else
|
||||
j = j == 0 ? 4 : j--;
|
||||
};
|
||||
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
|
||||
|
||||
fprintf(stderr,"string %s width: %f\n", [self cString], [font widthOfString:self]);
|
||||
|
||||
// tabSize = 4 * i * [font widthOfString:@" "];
|
||||
tabSize = (float)i * [font widthOfString:@" "];
|
||||
if(font != lastFont) // update font info
|
||||
{ // if font changes
|
||||
tabSize = (float)i * [font widthOfString:@"\t"];
|
||||
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
|
||||
|
|
|
@ -722,10 +722,8 @@ NSApplication *theApp = [NSApplication sharedApplication];
|
|||
|
||||
if (![aResponder acceptsFirstResponder]) // does not accept status
|
||||
return NO; // of first responder ret N
|
||||
// Notify current first responder that it
|
||||
// should resign. If it says NO then no
|
||||
// change. But make sure that there even
|
||||
// is a first responder
|
||||
// If there is a first responder tell it to
|
||||
// resign. Make change only if it replies Y
|
||||
if ((first_responder) && (![first_responder resignFirstResponder]))
|
||||
return NO;
|
||||
// Make responder the first
|
||||
|
@ -736,10 +734,10 @@ NSApplication *theApp = [NSApplication sharedApplication];
|
|||
return YES; // responder
|
||||
}
|
||||
|
||||
- (NSPoint)mouseLocationOutsideOfEventStream
|
||||
{
|
||||
return NSZeroPoint;
|
||||
}
|
||||
- (NSPoint)mouseLocationOutsideOfEventStream // Return mouse location
|
||||
{ // in reciever's base coord
|
||||
return NSZeroPoint; // system, ignores event
|
||||
} // loop status (backend)
|
||||
|
||||
- (NSEvent *)nextEventMatchingMask:(unsigned int)mask
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue