summaryrefslogtreecommitdiff
path: root/PushrPhotoProperties.h
blob: 31f12f8ba66c59b105b78da929a23d025754b6a2 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
 * PushrPhotoProperties.h
 * ----------------------
 *
 * Author: Chris Lee <clee@mg8.org>
 * License: GPL v2 <http://www.opensource.org/licenses/gpl-license.php>
 */

#import <Foundation/Foundation.h>

@class MobilePushr, UINavigationBar, UIView, UIPreferencesTable, UIPreferencesTextTableCell;

@interface PushrPhotoTags : NSObject
{
	MobilePushr *_pushr;
	UIWindow *_mainWindow;
	UINavigationBar *_navBar;
	UIView *_prefView, *_tagsView;
	UIPreferencesTable *_tagsTable, *_prefTable;
	NSArray *_availableTags;
	NSString *_photoPath;
}

- (id)initFromWindow: (UIWindow *)window withPushr: (MobilePushr *)pushr withView: (UIView *)view withTable: (UIPreferencesTable *)table atPath: (NSString *)path;

@end

@interface PushrPhotoPrivacy : NSObject

{
	MobilePushr *_pushr;
	UIWindow *_mainWindow;
	UINavigationBar *_navBar;
	UIView *_prefView, *_privacyView;
	UIPreferencesTable *_privacyTable, *_prefTable;
	NSArray *_availablePrivacy;
	NSString *_photoPath;
}

- (id)initFromWindow: (UIWindow *)window withPushr: (MobilePushr *)pushr withView: (UIView *)view withTable: (UIPreferencesTable *)table atPath: (NSString *)path;

@end

@interface PushrPhotoProperties : NSObject
{
	MobilePushr *_pushr;
	UINavigationBar *_navBar;
	UIWindow *_mainWindow;
	UIView *_prefView, *_photoView;
	UIPreferencesTable *_prefTable;
	NSString *_photoPath;
}

- (id)initFromWindow: (UIWindow *)window withPushr: (MobilePushr *)pushr forPhoto: (NSString *)photo;
- (void)show;

@end