cog/Spotlight/SpotlightTransformers.h

35 lines
683 B
C
Raw Normal View History

//
// SpotlightTransformers.h
// Cog
//
// Created by Matthew Grinshpun on 16/02/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class SpotlightWindowController;
@interface PausingQueryTransformer : NSValueTransformer {
NSArray *oldResults;
}
+ (void)setSearchController:(SpotlightWindowController *)aSearchController;
@property(copy) NSArray *oldResults;
@end
@interface AuthorToArtistTransformer : NSValueTransformer {
}
2008-02-18 16:55:31 +00:00
@end
@interface PathToURLTransformer : NSValueTransformer {
}
@end
2008-02-18 16:55:31 +00:00
@interface StringToSearchScopeTransformer : NSValueTransformer {
}
@end
@interface NumberToStringTransformer : NSValueTransformer {
}
@end