1 /* 2 NSViewPrivate.h 3 4 The private methods of the NSView classes 5 6 Copyright (C) 2010 Free Software Foundation, Inc. 7 8 This file is part of the GNUstep GUI Library. 9 10 This library is free software; you can redistribute it and/or 11 modify it under the terms of the GNU Lesser General Public 12 License as published by the Free Software Foundation; either 13 version 2 of the License, or (at your option) any later version. 14 15 This library is distributed in the hope that it will be useful, 16 but WITHOUT ANY WARRANTY; without even the implied warranty of 17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 Lesser General Public License for more details. 19 20 You should have received a copy of the GNU Lesser General Public 21 License along with this library; see the file COPYING.LIB. 22 If not, see <http://www.gnu.org/licenses/> or write to the 23 Free Software Foundation, 51 Franklin Street, Fifth Floor, 24 Boston, MA 02110-1301, USA. 25 */ 26 27 #ifndef _GNUstep_H_NSViewPrivate 28 #define _GNUstep_H_NSViewPrivate 29 30 #import "AppKit/NSView.h" 31 32 @interface NSView (KeyViewLoop) 33 - (void) _setUpKeyViewLoopWithNextKeyView: (NSView *)nextKeyView; 34 - (void) _recursiveSetUpKeyViewLoopWithNextKeyView: (NSView *)nextKeyView; 35 @end 36 37 #endif // _GNUstep_H_NSViewPrivate 38