author | snej@snej-mbp.mtv.corp.google.com |
Wed Apr 08 16:31:19 2009 -0700 (2009-04-08) | |
changeset 24 | 629c7605ab2a |
permissions | -rw-r--r-- |
1 //
2 // URLFormatter.h
3 // Murky
4 //
5 // Copyright 2008 Jens Alfke. All rights reserved.
6 //
8 #import <Cocoa/Cocoa.h>
11 /** An NSURLFormatter for text fields that let the user enter URLs.
12 The associated text field's objectValue will be an NSURL object. */
13 @interface MYURLFormatter : NSFormatter
14 {
15 NSArray *_allowedSchemes;
16 }
18 @property (copy,nonatomic) NSArray *allowedSchemes;
20 + (void) beginFilePickerFor: (NSTextField*)field;
21 + (void) beginNewFilePickerFor: (NSTextField*)field;
23 @end