8000 GitHub - sveinbjornt/STPathTextField: Subclass of NSTextField that supports shell and browser-style path autocompletion
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

sveinbjornt/STPathTextField

Repository files navigation

STPathTextField - Objective C class

STPathTextField is a subclass of NSTextField for receiving and displaying a file system path. It supports path validation and autocompletion. Autocompletion can use "web browser" style - i.e. expansion and selection, or shell autocompletion style - i.e. tab-expansion.

To use STPathTextField, just add a text field to a window in a nib file, and set its class to STPathTextField.

Default properties of an STPathTextField are the following:

autocompleteStyle = STNoAutocomplete;
colorInvalidPath = YES;
foldersAreValid = NO;
expandTildeInPath = YES;

There are three autocomplete styles:

622F
typedef enum
{
    STNoAutocomplete = 0,
    STShellAutocomplete = 1,
    STBrowserAutocomplete = 2
} 
STPathTextFieldAutocompleteStyle;

Screenshot of example app

About

Subclass of NSTextField that supports shell and browser-style path autocompletion

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published
0