mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 16:20:46 +00:00
Added some documentation
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28870 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
48b62ffeb8
commit
1ff514ec76
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2009-10-23 Riccardo Mottola <rmottola@users.sf.net>
|
||||
|
||||
* Headers/AppKit/NSBezierPath.h: added some documentation
|
||||
|
||||
2009-10-22 Riccardo Mottola <rmottola@users.sf.net>
|
||||
|
||||
* Images/common_3DArrowRightH.tiff: Made background transparent,
|
||||
|
|
|
@ -105,8 +105,14 @@ typedef enum {
|
|||
// Immediate mode drawing of common paths
|
||||
//
|
||||
+ (void)fillRect:(NSRect)aRect;
|
||||
|
||||
/** Using default stroke color and default drawing attributes, strokes
|
||||
a rectangle using the specified rect. */
|
||||
+ (void)strokeRect:(NSRect)aRect;
|
||||
+ (void)clipRect:(NSRect)aRect;
|
||||
|
||||
/** Using default stroke color and default drawing attributes, draws a line
|
||||
between the two points specified. */
|
||||
+ (void)strokeLineFromPoint:(NSPoint)point1 toPoint:(NSPoint)point2;
|
||||
+ (void)drawPackedGlyphs: (const char *)packedGlyphs atPoint: (NSPoint)aPoint;
|
||||
|
||||
|
|
Loading…
Reference in a new issue