Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/woip/app/WikiApp.h
blob: b776849c6e22b44e2f01c1954c0b972adb44c159 (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
#import <UIKit/UIKit.h>
#import "WebKitView.h"
#import "ArticleView.h"
#import "SearchView.h"
#import "SearchResult.h"
#import "SearchBar.h"

#define SEARCH_VIEW 1
#define ARTICLE_VIEW 2

@interface WikiApp : UIApplication {
	WebKitView *wkv;
	UIWindow *window;
  UINavigationBar *navBar;
  SearchBar *tf;
  UIView *mainView;
  UITransitionView *contentView;
  ArticleView *aview;
  SearchView *sview;
  struct CGRect rect;
  int currentView;
  NSString *currentTitle;
}
@end