1 /* 2 NSSecureTextField.h 3 4 Secure text field control class for hidden text entry 5 6 Copyright (C) 1999 Free Software Foundation, Inc. 7 8 Author: Lyndon Tremblay <humasect@coolmail.com> 9 Date: 1999 10 11 This file is part of the GNUstep GUI Library. 12 13 This library is free software; you can redistribute it and/or 14 modify it under the terms of the GNU Lesser General Public 15 License as published by the Free Software Foundation; either 16 version 2 of the License, or (at your option) any later version. 17 18 This library is distributed in the hope that it will be useful, 19 but WITHOUT ANY WARRANTY; without even the implied warranty of 20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 21 Lesser General Public License for more details. 22 23 You should have received a copy of the GNU Lesser General Public 24 License along with this library; see the file COPYING.LIB. 25 If not, see <http://www.gnu.org/licenses/> or write to the 26 Free Software Foundation, 51 Franklin Street, Fifth Floor, 27 Boston, MA 02110-1301, USA. 28 */ 29 30 #ifndef _GNUstep_H_NSSecureTextField 31 #define _GNUstep_H_NSSecureTextField 32 33 #import <AppKit/NSTextField.h> 34 #import <AppKit/NSTextFieldCell.h> 35 36 @interface NSSecureTextField : NSTextField 37 {} 38 - (void) setEchosBullets:(BOOL)flag; 39 - (BOOL) echosBullets; 40 @end 41 42 @interface NSSecureTextFieldCell : NSTextFieldCell 43 { 44 BOOL _echosBullets; 45 } 46 - (void) setEchosBullets:(BOOL)flag; 47 - (BOOL) echosBullets; 48 @end 49 50 #endif /* _GNUstep_H_NSSecureTextField */ 51