mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 05:32:11 +00:00
Changed 'id' to 'NSBrowser*, NSTextField*' etc; updated for use of NSForm
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@5307 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3d70d7a7c0
commit
e2271c78df
1 changed files with 12 additions and 12 deletions
|
@ -36,11 +36,14 @@
|
|||
#include <Foundation/NSCoder.h>
|
||||
#include <Foundation/NSSet.h>
|
||||
|
||||
#include <AppKit/NSPanel.h>
|
||||
#include <AppKit/NSBrowser.h>
|
||||
#include <AppKit/NSButton.h>
|
||||
#include <AppKit/NSForm.h>
|
||||
#include <AppKit/NSFormCell.h>
|
||||
#include <AppKit/NSPanel.h>
|
||||
#include <AppKit/NSTextField.h>
|
||||
|
||||
@class NSString;
|
||||
@class NSView;
|
||||
|
||||
enum {
|
||||
NSFileHandlingPanelImageButton,
|
||||
|
@ -56,15 +59,14 @@ enum {
|
|||
|
||||
@interface NSSavePanel : NSPanel <NSCoding>
|
||||
{
|
||||
id _accessoryView;
|
||||
id _bottomView;
|
||||
NSView* _accessoryView;
|
||||
NSView* _bottomView;
|
||||
id _delegate;
|
||||
id _browser;
|
||||
id _form;
|
||||
id _prompt;
|
||||
id _okButton;
|
||||
id _titleField;
|
||||
id _topView;
|
||||
NSBrowser* _browser;
|
||||
NSForm* _form;
|
||||
NSButton* _okButton;
|
||||
NSTextField* _titleField;
|
||||
NSView* _topView;
|
||||
|
||||
NSSize _originalMinSize;
|
||||
NSSize _originalSize;
|
||||
|
@ -198,7 +200,6 @@ enum {
|
|||
* Methods Implemented by the Delegate
|
||||
*/
|
||||
@interface NSObject (NSSavePanelDelegate)
|
||||
|
||||
/*
|
||||
* The NSSavePanel sends this message just before the end of a
|
||||
* modal session for each file name displayed or selected
|
||||
|
@ -216,7 +217,6 @@ enum {
|
|||
with: (NSString *)filename2
|
||||
caseSensitive: (BOOL)caseSensitive;
|
||||
- (BOOL) panel: (id)sender shouldShowFilename: (NSString *)filename;
|
||||
|
||||
@end
|
||||
|
||||
#endif /* _GNUstep_H_NSSavePanel */
|
||||
|
|
Loading…
Reference in a new issue