source: gs2-extensions/iOs-3.x/trunk/Classes/PrefView.h@ 22603

Last change on this file since 22603 was 22603, checked in by davidb, 14 years ago

Initial cut as iOs 3.x version of Greenstone2.app

File size: 436 bytes
Line 
1#import <UIKit/UIKit.h>
2
3#import "PrefTable.h"
4
5@interface PrefView : UIView
6{
7 UIView* _parent;
8 NSString* _collection;
9
10 UINavigationBar* _navbar;
11 PrefTable* _prefTable;
12
13}
14
15-(id) initWithFrame:(struct CGRect)frame withParent:(UIView*)parent
16 withCollection:(NSString*)collection withTitle:(NSString*)title;
17
18-(void) setTitle:(NSString*)title;
19
20-(NSString*) languagePref;
21
22-(void) dealloc;
23
24@end
Note: See TracBrowser for help on using the repository browser.