mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 16:20:46 +00:00
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:
parent
632ec4278e
commit
2052fda34e
1 changed files with 9 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue