forked from tomcool420/SMFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSMFControlFactory.h
More file actions
32 lines (27 loc) · 805 Bytes
/
SMFControlFactory.h
File metadata and controls
32 lines (27 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// SMFControlFactory.h
// SMFramework
//
// Created by Thomas Cool on 2/7/11.
// Copyright 2011 tomcool.org. All rights reserved.
//
#import "Backrow/AppleTV.h"
@interface SMFControlFactory : BRPhotoControlFactory
{
BOOL _mainmenu;
BOOL _poster;
BOOL _alwaysShowTitles;
BOOL _favorProxy;
BRImage *_defaultImage;
}
+(SMFControlFactory *)posterControlFactory;
+(SMFControlFactory *)standardFactory;
@property (assign)BOOL _poster;
@property (assign)BOOL _alwaysShowTitles;
@property (assign)BOOL favorProxy;
@property (retain)BRImage *defaultImage;
-(BRControl *)controlForImage:(BRImage *)image title:(NSString *)title;
-(BRControl *)controlForImageProxy:(BRURLImageProxy *)imageProxy title:(NSString *)title;
@end
@interface SMFPhotoControlFactory : SMFControlFactory
@end