mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 12:21:07 +00:00
* Headers/AppKit/NSApplication.h * Headers/AppKit/NSControl.h * Headers/AppKit/NSPopover.h * Headers/AppKit/NSSavePanel.h * Headers/AppKit/NSTableView.h * Headers/AppKit/NSTextView.h * Headers/AppKit/NSWindow.h: Use GS_PROTOCOLS_HAVE_OPTIONAL to protect the @optional keyword in protocol definitions. Based on base patch by Marcus Mueller <znek@mulle-kybernetik.com>. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@37530 72102866-910b-0410-8b05-ffd578937521
278 lines
8.4 KiB
Objective-C
278 lines
8.4 KiB
Objective-C
/*
|
|
NSSavePanel.h
|
|
|
|
Standard save panel for saving files
|
|
|
|
Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
|
|
|
Author: Scott Christley <scottc@net-community.com>
|
|
Date: 1996
|
|
Author: Daniel Boehringer <boehring@biomed.ruhr-uni-bochum.de>
|
|
Date: August 1998
|
|
Source by Daniel Boehringer integrated into Scott Christley's preliminary
|
|
implementation by Felipe A. Rodriguez <far@ix.netcom.com>
|
|
|
|
This file is part of the GNUstep GUI Library.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; see the file COPYING.LIB.
|
|
If not, see <http://www.gnu.org/licenses/> or write to the
|
|
Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef _GNUstep_H_NSSavePanel
|
|
#define _GNUstep_H_NSSavePanel
|
|
#import <GNUstepBase/GSVersionMacros.h>
|
|
#import <GNUstepBase/GSBlocks.h>
|
|
|
|
#import <AppKit/NSPanel.h>
|
|
|
|
@class NSString;
|
|
@class NSURL;
|
|
@class NSBrowser;
|
|
@class NSButton;
|
|
@class NSForm;
|
|
@class NSTextField;
|
|
@class NSView;
|
|
|
|
enum {
|
|
NSFileHandlingPanelCancelButton = NSCancelButton,
|
|
NSFileHandlingPanelOKButton = NSOKButton,
|
|
NSFileHandlingPanelImageButton,
|
|
NSFileHandlingPanelTitleField,
|
|
NSFileHandlingPanelBrowser,
|
|
NSFileHandlingPanelForm,
|
|
NSFileHandlingPanelHomeButton,
|
|
NSFileHandlingPanelDiskButton,
|
|
NSFileHandlingPanelDiskEjectButton
|
|
};
|
|
|
|
@protocol NSOpenSavePanelDelegate <NSObject>
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_6, GS_API_LATEST) && GS_PROTOCOLS_HAVE_OPTIONAL
|
|
@optional
|
|
#else
|
|
@end
|
|
@interface NSObject (NSOpenSavePanelDelegate)
|
|
#endif
|
|
- (BOOL)panel:(id)sender shouldEnableURL:(NSURL*)url;
|
|
- (BOOL)panel:(id)sender validateURL:(NSURL*)url error:(NSError **)error;
|
|
- (void)panel:(id)sender didChangeToDirectoryURL:(NSURL*)url;
|
|
- (NSString *)panel:(id)sender userEnteredFilename:(NSString*)filename confirmed:(BOOL)flag;
|
|
- (void)panel:(id)sender willExpand:(BOOL)expand;
|
|
- (void)panelSelectionDidChange:(id)sender;
|
|
|
|
// Deprecated in 10.6...
|
|
- (BOOL)panel:(id)sender isValidFilename:(NSString*)filename;
|
|
- (void)panel:(id)sender directoryDidChange:(NSString*)path;
|
|
- (NSComparisonResult)panel:(id)sender
|
|
compareFilename:(NSString*)name1
|
|
with:(NSString*)name2
|
|
caseSensitive:(BOOL)caseSensitive;
|
|
- (BOOL)panel:(id)sender shouldShowFilename:(NSString*)filename;
|
|
@end
|
|
|
|
DEFINE_BLOCK_TYPE(GSSavePanelCompletionHandler, void, NSInteger);
|
|
|
|
@interface NSSavePanel : NSPanel
|
|
{
|
|
NSView *_accessoryView;
|
|
NSView *_bottomView;
|
|
NSBrowser *_browser;
|
|
NSForm *_form;
|
|
NSButton *_okButton;
|
|
NSTextField *_titleField;
|
|
NSView *_topView;
|
|
|
|
NSSize _originalMinSize;
|
|
NSSize _originalSize;
|
|
|
|
NSArray *_allowedFileTypes;
|
|
NSString *_directory;
|
|
NSString *_fullFileName;
|
|
|
|
BOOL _treatsFilePackagesAsDirectories;
|
|
BOOL _allowsOtherFileTypes;
|
|
BOOL _canCreateDirectories;
|
|
BOOL _canSelectHiddenExtension;
|
|
BOOL _isExtensionHidden;
|
|
BOOL _showsHiddenFiles;
|
|
|
|
BOOL _delegateHasCompareFilter;
|
|
BOOL _delegateHasShowFilenameFilter;
|
|
BOOL _delegateHasValidNameFilter;
|
|
BOOL _delegateHasUserEnteredFilename;
|
|
BOOL _delegateHasDirectoryDidChange;
|
|
BOOL _delegateHasSelectionDidChange;
|
|
|
|
// YES when we stopped because the user pressed 'OK'
|
|
BOOL _OKButtonPressed;
|
|
|
|
NSMenu *_showsHiddenFilesMenu;
|
|
GSSavePanelCompletionHandler _completionHandler;
|
|
}
|
|
|
|
/*
|
|
* Getting the NSSavePanel shared instance
|
|
*/
|
|
+ (NSSavePanel *) savePanel;
|
|
|
|
/*
|
|
* Customizing the NSSavePanel
|
|
*/
|
|
- (void) setAccessoryView: (NSView *)aView;
|
|
- (NSView *) accessoryView;
|
|
- (void) setTitle: (NSString *)title;
|
|
- (NSString *) title;
|
|
- (void) setPrompt: (NSString *)prompt;
|
|
- (NSString *) prompt;
|
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_6, GS_API_LATEST)
|
|
- (void) setNameFieldStringValue:(NSString *)value;
|
|
- (NSString *) nameFieldStringValue;
|
|
#endif
|
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_3, GS_API_LATEST)
|
|
- (void) setNameFieldLabel: (NSString *)label;
|
|
- (NSString *) nameFieldLabel;
|
|
- (void) setMessage: (NSString *)message;
|
|
- (NSString *) message;
|
|
#endif
|
|
|
|
/*
|
|
* Hidding extensions
|
|
*/
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_2, GS_API_LATEST)
|
|
- (void) setCanSelectHiddenExtension: (BOOL) flag;
|
|
- (BOOL) canSelectHiddenExtension;
|
|
- (BOOL) isExtensionHidden;
|
|
- (void) setExtensionHidden: (BOOL) flag;
|
|
#endif
|
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_6, GS_API_LATEST)
|
|
- (BOOL) showsHiddenFiles;
|
|
- (void) setShowsHiddenFiles: (BOOL) flag;
|
|
#endif
|
|
|
|
/*
|
|
* Setting Directory and File Type
|
|
*/
|
|
- (void) setDirectory: (NSString *)path;
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_6, GS_API_LATEST)
|
|
- (void) setDirectoryURL: (NSURL*)url;
|
|
#endif
|
|
- (NSString *) requiredFileType;
|
|
- (void) setRequiredFileType: (NSString *)fileType;
|
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_3, GS_API_LATEST)
|
|
- (void) setAllowedFileTypes: (NSArray *)types;
|
|
- (void) setAllowsOtherFileTypes: (BOOL)flag;
|
|
- (NSArray *) allowedFileTypes;
|
|
- (BOOL) allowsOtherFileTypes;
|
|
#endif
|
|
|
|
- (void) setTreatsFilePackagesAsDirectories: (BOOL)flag;
|
|
- (BOOL) treatsFilePackagesAsDirectories;
|
|
|
|
- (void) validateVisibleColumns;
|
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_3, GS_API_LATEST)
|
|
- (void) setCanCreateDirectories: (BOOL)flag;
|
|
- (BOOL) canCreateDirectories;
|
|
#endif
|
|
|
|
/*
|
|
* Running the NSSavePanel
|
|
*/
|
|
- (NSInteger) runModal;
|
|
- (NSInteger) runModalForDirectory: (NSString *)path file: (NSString *)filename;
|
|
|
|
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
|
- (NSInteger) runModalForDirectory: (NSString *)path
|
|
file: (NSString *)filename
|
|
relativeToWindow: (NSWindow*)window;
|
|
- (void) beginSheetForDirectory: (NSString *)path
|
|
file: (NSString *)filename
|
|
modalForWindow: (NSWindow *)docWindow
|
|
modalDelegate: (id)delegate
|
|
didEndSelector: (SEL)didEndSelector
|
|
contextInfo: (void *)contextInfo;
|
|
#endif
|
|
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_6, GS_API_LATEST)
|
|
- (void) beginSheetModalForWindow:(NSWindow *)window
|
|
completionHandler:(GSSavePanelCompletionHandler)handler;
|
|
- (void) beginWithCompletionHandler:(GSSavePanelCompletionHandler)handler;
|
|
#endif
|
|
|
|
/*
|
|
* Reading Save Information
|
|
*/
|
|
- (NSString *) directory;
|
|
- (NSString *) filename;
|
|
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
|
- (NSURL *) URL;
|
|
- (BOOL) isExpanded;
|
|
#endif
|
|
#if OS_API_VERSION(MAC_OS_X_VERSION_10_6, GS_API_LATEST)
|
|
- (NSURL *) directoryURL;
|
|
#endif
|
|
|
|
/*
|
|
* Target and Action Methods
|
|
*/
|
|
- (void) ok: (id)sender; // target/action of panel's OK button.
|
|
- (void) cancel: (id)sender; // target/action of panel's cancel button
|
|
|
|
/*
|
|
* Responding to User Input
|
|
*/
|
|
- (void) selectText: (id)sender;
|
|
@end
|
|
|
|
/*
|
|
* 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
|
|
* (including file names in multiple selections). The delegate
|
|
* determines whether it wants the file identified by filename;
|
|
* it returns YES if the file name is valid, or NO if the
|
|
* NSSavePanel should stay in its modal loop and wait for the
|
|
* user to type in or select a different file name or names. If
|
|
* the delegate refuses a file name in a multiple selection,
|
|
* none of the file names in the selection are accepted.
|
|
*/
|
|
- (BOOL) panel: (id)sender isValidFilename: (NSString*)filename;
|
|
- (NSComparisonResult) panel: (id)sender
|
|
compareFilename: (NSString *)filename1
|
|
with: (NSString *)filename2
|
|
caseSensitive: (BOOL)caseSensitive;
|
|
/** Sent by NSSavePanel to check whether a file should be displayed in
|
|
the panel or not. The filename argument is the complete path
|
|
to the file. */
|
|
- (BOOL) panel: (id)sender shouldShowFilename: (NSString *)filename;
|
|
- (NSString *)panel: (id)sender
|
|
userEnteredFilename: (NSString *)fileName
|
|
confirmed: (BOOL)okFlag;
|
|
|
|
#if OS_API_VERSION(GS_API_MACOSX, GS_API_LATEST)
|
|
- (void) panel: (id)sender willExpand: (BOOL)expanding;
|
|
- (void) panelSelectionDidChange: (id)sender;
|
|
- (void) panel: (id)sender directoryDidChange: (NSString *)path;
|
|
#endif
|
|
@end
|
|
|
|
#endif /* _GNUstep_H_NSSavePanel */
|