#import <UIKit/UIKit.h>
#import "/usr/include/sqlite3.h"
@class RamazSchedulerAppDelegate;
@interface MainViewController : UIViewController
<UITableViewDelegate, UITableViewDataSource> {
NSArray *data;
NSDictionary *timesDict;
NSDictionary *selectedTimesDict;
NSArray *daysData;
NSDictionary *daysDict;
NSDictionary *selectedDaysDict;
NSDictionary *selectedPeriodDict;
NSString *selectedDay;
UISegmentedControl *times;
UISegmentedControl *days;
IBOutlet UITableView *table;
IBOutlet UIButton *infoButton;
NSInteger currentPeriod;
sqlite3 *database;
NSTimer *timer;
}
@property (nonatomic, retain) NSArray *data;
@property (nonatomic, retain) NSDictionary *timesDict;
@property (nonatomic, retain) NSDictionary *selectedTimesDict;
@property (nonatomic, retain) NSArray *daysData;
@property (nonatomic, retain) NSDictionary *daysDict;
@property (nonatomic, retain) NSDictionary *selectedDaysDict;
@property (nonatomic, retain) NSDictionary *selectedPeriodDict;
@property (nonatomic, retain) NSString *selectedDay;
@property (nonatomic, retain) UISegmentedControl *times;
@property (nonatomic, retain) UISegmentedControl *days;
@property (nonatomic, retain) UITableView *table;
@property (nonatomic, retain) UIButton *infoButton;
@property (nonatomic) NSInteger currentPeriod;
@property (nonatomic, retain) NSTimer *timer;
-(IBAction)backgroundClick:(id)sender;
-(IBAction)switchWindow:(id)sender;
-(void)highlightCell:(NSTimer *)timer;
@end