Add new method for shadow.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25388 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2007-08-14 22:37:08 +00:00
parent cf7a64aef3
commit 87163a8515
3 changed files with 40 additions and 27 deletions

View file

@ -1,3 +1,9 @@
2007-08-15 Fred Kiefer <FredKiefer@gmx.de>
* Headers/Additions/GNUstepGUI/GSDisplayServer.h (-setShadow::),
* Source/GSDisplayServer.m (-setShadow::):
Add new method for shadow.
2007-08-12 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSAttributedString.m (-_substituteFontWithName:font:):

View file

@ -146,6 +146,7 @@ APPKIT_EXPORT NSString * GSScreenNumber;
- (void) setinputstate: (int)state : (int)win;
- (void) setinputfocus: (int)win;
- (void) setalpha: (float)alpha: (int)win;
- (void) setShadow: (BOOL)hasShadow : (int)win;
- (NSPoint) mouselocation;
- (NSPoint) mouseLocationOnScreen: (int)aScreen window: (int *)win;

View file

@ -798,6 +798,12 @@ GSCurrentServer(void)
//[self subclassResponsibility: _cmd];
}
/** Sets the window shadow */
- (void) setShadow: (BOOL)hasShadow : (int)win
{
//[self subclassResponsibility: _cmd];
}
/** Returns the current mouse location on the default screen. If the
* pointer is not on the default screen, an invalid point (-1,-1} is
* returned.<br />