2008-02-16 22:59:27 +00:00
|
|
|
//
|
|
|
|
// SpotlightTransformers.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Matthew Grinshpun on 16/02/08.
|
|
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class SpotlightWindowController;
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
@interface PausingQueryTransformer : NSValueTransformer {
|
|
|
|
NSArray *oldResults;
|
2008-02-16 22:59:27 +00:00
|
|
|
}
|
|
|
|
|
2008-02-17 09:56:44 +00:00
|
|
|
+ (void)setSearchController:(SpotlightWindowController *)aSearchController;
|
|
|
|
|
2008-02-16 22:59:27 +00:00
|
|
|
@property(copy) NSArray *oldResults;
|
2008-02-18 12:59:20 +00:00
|
|
|
@end
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
@interface AuthorToArtistTransformer : NSValueTransformer {
|
|
|
|
}
|
2008-02-18 16:55:31 +00:00
|
|
|
@end
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
@interface PathToURLTransformer : NSValueTransformer {
|
|
|
|
}
|
2008-02-18 20:09:02 +00:00
|
|
|
@end
|
2008-02-18 16:55:31 +00:00
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
@interface StringToSearchScopeTransformer : NSValueTransformer {
|
|
|
|
}
|
2008-03-03 23:02:52 +00:00
|
|
|
@end
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
@interface NumberToStringTransformer : NSValueTransformer {
|
|
|
|
}
|
2008-02-16 22:59:27 +00:00
|
|
|
@end
|