2004-01-19 04:22:47 +00:00
|
|
|
/** <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.
|
|
|
|
*/
|
|
|
|
|
2004-01-22 12:07:47 +00:00
|
|
|
#ifndef _GNUstep_H_GSDrawFunctions
|
|
|
|
#define _GNUstep_H_GSDrawFunctions
|
|
|
|
|
2004-01-19 04:22:47 +00:00
|
|
|
#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;
|
2004-02-08 20:33:07 +00:00
|
|
|
+ (void) drawGrayBezel: (NSRect)border : (NSRect)clip;
|
|
|
|
+ (void) drawWhiteBezel: (NSRect) border : (NSRect)clip;
|
2004-01-19 04:22:47 +00:00
|
|
|
+ (void) drawGroove: (NSRect)border : (NSRect)clip;
|
2004-01-22 12:07:47 +00:00
|
|
|
+ (void) drawFramePhoto: (NSRect)border : (NSRect)clip;
|
2004-01-19 04:22:47 +00:00
|
|
|
|
|
|
|
@end
|
2004-01-22 12:07:47 +00:00
|
|
|
|
|
|
|
#endif /* _GNUstep_H_GSDrawFunctions */
|
|
|
|
|