summaryrefslogtreecommitdiff
path: root/PushrPhotoProperties.h
Side-by-side diff
Diffstat (limited to 'PushrPhotoProperties.h') (more/less context) (ignore whitespace changes)
-rw-r--r--PushrPhotoProperties.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/PushrPhotoProperties.h b/PushrPhotoProperties.h
new file mode 100644
index 0000000..31f12f8
--- a/dev/null
+++ b/PushrPhotoProperties.h
@@ -0,0 +1,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 \ No newline at end of file