Add drawing functions for common screen elements

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@18436 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2004-01-19 04:22:47 +00:00
parent b04376b3fd
commit 872cb0f066
5 changed files with 241 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2004-01-18 Adam Fedor <fedor@gnu.org>
* Source/GSDrawFunctions.m: New class.
* Source/NSBox.m ([NSBox -drawRect:]): Use it.
2004-01-17 Serg Stoyan <stoyan@on.com.ua>
* Source/NSBrowser.m:

View file

@ -0,0 +1,39 @@
/** <title>GSDrawFunctions</title>
<abstract>Useful/configurable drawing functions</abstract>
Copyright (C) 2004 Free Software Foundation, Inc.
Author: Adam Fedor <fedor@gnu.org>
Date: Jan 2004
This file is part of the GNU Objective C User interface 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; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
*/
#include <Foundation/NSGeometry.h>
@class NSColor;
@interface GSDrawFunctions : NSObject
+ (void) drawButton: (NSRect)border : (NSRect)clip;
+ (void) drawDarkBezel: (NSRect)border : (NSRect)clip;
+ (void) drawLightBezel: (NSRect) border : (NSRect)clip;
+ (void) drawGroove: (NSRect)border : (NSRect)clip;
+ (void) drawFramePhoto: (NSRect) border : (NSRect)clip;
@end

View file

@ -167,6 +167,7 @@ GSServicesManager.m \
tiff.m \
externs.m \
linking.m \
GSDrawFunctions.m \
GSFontInfo.m \
GSTable.m \
GSHbox.m \
@ -320,6 +321,7 @@ GUI_HEADERS = \
GSVersion.h \
GMAppKit.h \
GMArchiver.h \
GSDrawFunctions.h \
GSFontInfo.h \
GSMemoryPanel.h \
GSInfoPanel.h \

191
Source/GSDrawFunctions.m Normal file
View file

@ -0,0 +1,191 @@
/** <title>GSDrawFunctions</title>
<abstract>Useful/configurable drawing functions</abstract>
Copyright (C) 2004 Free Software Foundation, Inc.
Author: Adam Fedor <fedor@gnu.org>
Date: Jan 2004
This file is part of the GNU Objective C User interface 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; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
*/
#include "GNUstepGUI/GSDrawFunctions.h"
#include "AppKit/NSColor.h"
#include "AppKit/NSView.h"
#include "AppKit/NSGraphics.h"
#include "AppKit/PSOperators.h"
/**
<unit>
<heading>Class Description</heading>
<p>
This is a simple class used for encapsulating common drawing behaviors.
These methods stndardize drawing of buttons, borders and other common
gui elements. The drawing functions are encapsulated in a class to
allow overridding of the methods so that these elements can be drawn
in different ways (e.g. with themes).
</p>
<p>
All the methods use the standard configurable colors defined in NSColor,
such as <code>controlLightHighlightColor</code>,
<code>controlShadowColor</code> and <code>controlDarkShadowColor</code>.
</p>
</unit>
*/
@implementation GSDrawFunctions
/** Draw a button border */
+ (void) drawButton: (NSRect)border : (NSRect)clip
{
NSRectEdge up_sides[] = {NSMaxXEdge, NSMinYEdge,
NSMinXEdge, NSMaxYEdge,
NSMaxXEdge, NSMinYEdge};
NSRectEdge dn_sides[] = {NSMaxXEdge, NSMaxYEdge,
NSMinXEdge, NSMinYEdge,
NSMaxXEdge, NSMaxYEdge};
NSColor *colors[] = {[NSColor controlDarkShadowColor],
[NSColor controlDarkShadowColor],
[NSColor controlLightHighlightColor],
[NSColor controlLightHighlightColor],
[NSColor controlShadowColor],
[NSColor controlShadowColor]};
if ([[NSView focusView] isFlipped] == YES)
{
NSDrawColorTiledRects(border, clip, dn_sides, colors, 8);
}
else
{
NSDrawColorTiledRects(border, clip, up_sides, colors, 8);
}
}
/** Draw a dark bezel border */
+ (void) drawDarkBezel: (NSRect)border : (NSRect)clip
{
NSRectEdge up_sides[] = {NSMaxXEdge, NSMinYEdge, NSMinXEdge, NSMaxYEdge,
NSMinXEdge, NSMaxYEdge, NSMaxXEdge, NSMinYEdge};
NSRectEdge dn_sides[] = {NSMaxXEdge, NSMaxYEdge, NSMinXEdge, NSMinYEdge,
NSMinXEdge, NSMinYEdge, NSMaxXEdge, NSMaxYEdge};
NSColor *colors[] = {[NSColor controlLightHighlightColor],
[NSColor controlLightHighlightColor],
[NSColor controlShadowColor],
[NSColor controlShadowColor],
[NSColor controlDarkShadowColor],
[NSColor controlDarkShadowColor],
[NSColor controlColor],
[NSColor controlColor]};
if ([[NSView focusView] isFlipped] == YES)
{
NSDrawColorTiledRects(border, clip, dn_sides, colors, 8);
[[NSColor controlShadowColor] set];
PSrectfill(NSMinX(border) + 1., NSMinY(border) - 2., 1., 1.);
PSrectfill(NSMaxX(border) - 2., NSMaxY(border) + 1., 1., 1.);
}
else
{
NSDrawColorTiledRects(border, clip, up_sides, colors, 8);
[[NSColor controlShadowColor] set];
PSrectfill(NSMinX(border) + 1., NSMinY(border) + 1., 1., 1.);
PSrectfill(NSMaxX(border) - 2., NSMaxY(border) - 2., 1., 1.);
}
}
/** Draw a light bezel border */
+ (void) drawLightBezel: (NSRect) border : (NSRect)clip
{
NSRectEdge up_sides[] = {NSMaxXEdge, NSMinYEdge, NSMinXEdge, NSMaxYEdge,
NSMaxXEdge, NSMinYEdge, NSMinXEdge, NSMaxYEdge};
NSRectEdge dn_sides[] = {NSMaxXEdge, NSMaxYEdge, NSMinXEdge, NSMinYEdge,
NSMaxXEdge, NSMaxYEdge, NSMinXEdge, NSMinYEdge};
NSColor *colors[] = {[NSColor controlLightHighlightColor],
[NSColor controlLightHighlightColor],
[NSColor controlShadowColor],
[NSColor controlShadowColor],
[NSColor controlColor],
[NSColor controlColor],
[NSColor controlShadowColor],
[NSColor controlShadowColor]};
if ([[NSView focusView] isFlipped] == YES)
{
NSDrawColorTiledRects(border, clip, dn_sides, colors, 8);
}
else
{
NSDrawColorTiledRects(border, clip, up_sides, colors, 8);
}
}
/** Draw a groove border */
+ (void) drawGroove: (NSRect)border : (NSRect)clip
{
// go clockwise from the top twice -- makes the groove come out right
NSRectEdge up_sides[] = {NSMaxYEdge, NSMaxXEdge, NSMinYEdge, NSMinXEdge,
NSMaxYEdge, NSMaxXEdge, NSMinYEdge, NSMinXEdge};
NSRectEdge dn_sides[] = {NSMinYEdge, NSMaxXEdge, NSMaxYEdge, NSMinXEdge,
NSMinYEdge, NSMaxXEdge, NSMaxYEdge, NSMinXEdge};
NSColor *colors[] = {[NSColor controlShadowColor],
[NSColor controlLightHighlightColor],
[NSColor controlLightHighlightColor],
[NSColor controlShadowColor],
[NSColor controlLightHighlightColor],
[NSColor controlShadowColor],
[NSColor controlShadowColor],
[NSColor controlLightHighlightColor]};
if ([[NSView focusView] isFlipped] == YES)
{
NSDrawColorTiledRects(border, clip, dn_sides, colors, 8);
}
else
{
NSDrawColorTiledRects(border, clip, up_sides, colors, 8);
}
}
/** Draw a frame photo border. Used in NSImageView. */
+ (void) drawFramePhoto: (NSRect) border : (NSRect)clip
{
NSRectEdge up_sides[] = {NSMaxXEdge, NSMinYEdge,
NSMinXEdge, NSMaxYEdge,
NSMaxXEdge, NSMinYEdge};
NSRectEdge dn_sides[] = {NSMaxXEdge, NSMaxYEdge,
NSMinXEdge, NSMinYEdge,
NSMaxXEdge, NSMaxYEdge};
NSColor *colors[] = {[NSColor controlShadowColor],
[NSColor controlShadowColor],
[NSColor controlShadowColor],
[NSColor controlShadowColor],
[NSColor controlDarkShadowColor],
[NSColor controlDarkShadowColor]};
if ([[NSView focusView] isFlipped] == YES)
{
NSDrawColorTiledRects(border, clip, dn_sides, colors, 8);
}
else
{
NSDrawColorTiledRects(border, clip, up_sides, colors, 8);
}
}
@end

View file

@ -35,6 +35,7 @@
#include "AppKit/NSColor.h"
#include "AppKit/NSGraphics.h"
#include "AppKit/NSTextFieldCell.h"
#include "GNUstepGUI/GSDrawFunctions.h"
#include <math.h>
@ -368,11 +369,11 @@
[[NSColor controlDarkShadowColor] set];
NSFrameRect(_border_rect);
break;
case NSBezelBorder:
NSDrawGrayBezel(_border_rect, rect);
case NSBezelBorder:
[GSDrawFunctions drawDarkBezel: _border_rect : rect];
break;
case NSGrooveBorder:
NSDrawGroove(_border_rect, rect);
[GSDrawFunctions drawGroove: _border_rect : rect];
break;
}