Make window controller a subclass of NSResponder and manage the

responder chain. Patch by Wolfgang Lux <wolfgang.lux@gmail.com>.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@26956 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2008-10-23 08:17:23 +00:00
parent 76b074a205
commit 56388864db
3 changed files with 34 additions and 15 deletions

View file

@ -27,15 +27,15 @@
#ifndef _GNUstep_H_NSWindowController
#define _GNUstep_H_NSWindowController
#include <Foundation/NSObject.h>
#include <AppKit/NSNibDeclarations.h>
#include <AppKit/NSResponder.h>
@class NSString;
@class NSArray;
@class NSWindow;
@class NSDocument;
@interface NSWindowController : NSObject <NSCoding>
@interface NSWindowController : NSResponder <NSCoding>
{
@private
NSWindow *_window;