summaryrefslogtreecommitdiffstats
path: root/Classes/SearchViewController.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/SearchViewController.h')
-rw-r--r--Classes/SearchViewController.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/Classes/SearchViewController.h b/Classes/SearchViewController.h
new file mode 100644
index 0000000..6888c9e
--- /dev/null
+++ b/Classes/SearchViewController.h
@@ -0,0 +1,39 @@
+//
+// SearchViewController.h
+// PicCast
+//
+// Created by Matthew Handler on 4/28/11.
+// Copyright 2011 Earl Industries. All rights reserved.
+//
+
+// returned feeds -> turn on/off
+// returned sets -> view
+// later: returned pics -> view
+// later: returned categories -> browse
+
+#import <UIKit/UIKit.h>
+#import "HJObjManager.h"
+
+#import "PhotoViewController.h"
+#import "FMDatabase.h"
+#import "SectionDictionary.h"
+#import "Fetcher.h"
+#import "Source.h"
+
+@interface SearchViewController : UIViewController <FetcherDelegate, UISearchBarDelegate, UITableViewDataSource> {
+ //UINavigationController *topicsNavigationController;
+ NSMutableDictionary *sourcesDictionary;
+
+ SectionDictionary *tableDictionary; // structure to sync with table
+ PhotoViewController *photoViewController;
+
+ HJObjManager* objMan;
+
+ FMDatabase* db;
+ NSString *searchString;
+}
+
+@property (nonatomic, retain) IBOutlet UISearchBar *mainSearchBar;
+@property (nonatomic, retain) IBOutlet UITableView *tableView;
+
+@end