Removed ivar _new added ivar _accessoryView. Added sheet method.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@10956 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2001-09-23 22:10:48 +00:00
parent 632ec4278e
commit 2052fda34e

View file

@ -49,10 +49,10 @@ enum {
@interface NSPageLayout : NSPanel <NSCoding>
{
// Attributes
int _result;
float _old;
float _new;
NSPrintInfo *_printInfo;
NSView *_accessoryView;
}
//
@ -65,6 +65,13 @@ enum {
//
- (int)runModal;
- (int)runModalWithPrintInfo:(NSPrintInfo *)pInfo;
#ifndef STRICT_OPENSTEP
- (void)beginSheetWithPrintInfo:(NSPrintInfo *)printInfo
modalForWindow:(NSWindow *)docWindow
delegate:(id)delegate
didEndSelector:(SEL)didEndSelector
contextInfo:(void *)contextInfo;
#endif
//
// Customizing the Panel
@ -89,12 +96,6 @@ enum {
- (void)readPrintInfo;
- (void)writePrintInfo;
//
// NSCoding protocol
//
- (void)encodeWithCoder:aCoder;
- initWithCoder:aDecoder;
@end
#endif // _GNUstep_H_NSPageLayout