2008-02-16 19:59:27 -03: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 02:49:27 -03:00
|
|
|
@interface PausingQueryTransformer : NSValueTransformer {
|
|
|
|
NSArray *oldResults;
|
2008-02-16 19:59:27 -03:00
|
|
|
}
|
|
|
|
|
2008-02-17 06:56:44 -03:00
|
|
|
+ (void)setSearchController:(SpotlightWindowController *)aSearchController;
|
|
|
|
|
2008-02-16 19:59:27 -03:00
|
|
|
@property(copy) NSArray *oldResults;
|
2008-02-18 09:59:20 -03:00
|
|
|
@end
|
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
@interface AuthorToArtistTransformer : NSValueTransformer {
|
|
|
|
}
|
2008-02-18 13:55:31 -03:00
|
|
|
@end
|
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
@interface PathToURLTransformer : NSValueTransformer {
|
|
|
|
}
|
2008-02-18 17:09:02 -03:00
|
|
|
@end
|
2008-02-18 13:55:31 -03:00
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
@interface StringToSearchScopeTransformer : NSValueTransformer {
|
|
|
|
}
|
2008-03-03 20:02:52 -03:00
|
|
|
@end
|
|
|
|
|
2022-02-07 02:49:27 -03:00
|
|
|
@interface NumberToStringTransformer : NSValueTransformer {
|
|
|
|
}
|
2008-02-16 19:59:27 -03:00
|
|
|
@end
|