summaryrefslogtreecommitdiffstats
path: root/Classes/SearchViewController.h
blob: 6888c9e17193003cf17c1b91ae7387eca8e87e3c (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
//
//  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