Cog/FileTree/PathWatcher.h
Christopher Snowhill 0832a8ea34 Restore the File Tree, now with a chooser button
Revert "Remove the file tree, as Sandbox does not permit"

This reverts commit 02ec735687.

This also changes how the File Tree choosing works.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-06-30 16:57:51 -07:00

30 lines
525 B
Objective-C

//
// PathWatcher.h
// Cog
//
// Created by Vincent Spader on 2/17/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#include <CoreServices/CoreServices.h>
@interface PathWatcher : NSObject {
FSEventStreamRef stream;
FSEventStreamContext *context;
IBOutlet id delegate;
}
- (void)setDelegate:(id)d;
- (id)delegate;
- (void)setPath:(NSString *)path; // Set the path to watch
- (void)cleanUp;
@end
@protocol PathWatcherDelegate
- (void)pathDidChange:(NSString *)path;
@end