* Headers/AppKit/NSDrawer.h: Added new ivars.

* Source/NSDrawer.m: Addition implementation of NSDrawer.  Corrected
	drag problem.  Added border.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@25873 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
gcasa 2008-01-05 20:27:10 +00:00
parent 0c7b8fad15
commit 77071bf68c
3 changed files with 115 additions and 38 deletions

View file

@ -39,10 +39,10 @@
@class NSNotification;
enum {
NSDrawerClosedState,
NSDrawerOpeningState,
NSDrawerOpenState,
NSDrawerClosingState
NSDrawerClosedState = 0,
NSDrawerOpeningState = 1,
NSDrawerOpenState = 2,
NSDrawerClosingState = 3
};
@interface NSDrawer : NSResponder