blob: 063154e763786e872f854dedcdc2afd13d663475 (
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
|
/*
* PushrSettings.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 PushrGlobalTags : NSObject
{
MobilePushr *_pushr;
UIWindow *_mainWindow;
UINavigationBar *_navBar;
UIView *_prefView, *_tagsView;
UIPreferencesTable *_tagsTable, *_prefTable;
NSArray *_availableTags;
}
- (id)initFromWindow: (UIWindow *)window withPushr: (MobilePushr *)pushr withView: (UIView *)view withTable: (UIPreferencesTable *)table;
@end
@interface PushrGlobalPrivacy : NSObject
{
MobilePushr *_pushr;
UIWindow *_mainWindow;
UINavigationBar *_navBar;
UIView *_prefView, *_privacyView;
UIPreferencesTable *_privacyTable, *_prefTable;
NSArray *_availablePrivacy;
}
- (id)initFromWindow: (UIWindow *)window withPushr: (MobilePushr *)pushr withView: (UIView *)view withTable: (UIPreferencesTable *)table;
@end
@interface PushrSettings : NSObject
{
MobilePushr *_pushr;
UINavigationBar *_navBar;
UIWindow *_mainWindow;
UIView *_prefView, *_photoView;
UIPreferencesTable *_prefTable;
}
- (id)initFromWindow: (UIWindow *)window withPushr: (MobilePushr *)pushr;
@end
|