Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/woip/app/WikiApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'woip/app/WikiApp.h')
-rw-r--r--woip/app/WikiApp.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/woip/app/WikiApp.h b/woip/app/WikiApp.h
new file mode 100644
index 0000000..b776849
--- /dev/null
+++ b/woip/app/WikiApp.h
@@ -0,0 +1,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