-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHomeViewController.h
More file actions
47 lines (37 loc) · 1.23 KB
/
HomeViewController.h
File metadata and controls
47 lines (37 loc) · 1.23 KB
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
40
41
42
43
44
45
46
47
//
// HomeViewController.h
// Metasome
//
// Created by Omar Metwally on 9/13/13.
// Copyright (c) 2013 Logisome. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GAITrackedViewController.h"
@class ParameterViewController;
typedef enum {
heartSelection,
lungSelection,
diabetesSelection,
customSelection
} selectionTypeOnLaunch;
@interface HomeViewController : GAITrackedViewController
{
__weak IBOutlet UIButton *heartButton;
__weak IBOutlet UIButton *lungButton;
__weak IBOutlet UIButton *diabetesButton;
__weak IBOutlet UIButton *customButton;
UIColor *normalColor, *normalNotifColor;
NSString *MetasomeNotificationPrefKey;
}
// create pointer to pvc to change title before it loads
// this is necessary because pressing a button in HomeViewController
// manually changes the tab
@property (nonatomic, strong) ParameterViewController *paramViewController;
@property (weak, nonatomic) IBOutlet UIButton *reminderButton;
@property (weak, nonatomic) IBOutlet UIImageView *bellImageView;
- (IBAction)heartSelected:(id)sender;
- (IBAction)lungSelected:(id)sender;
- (IBAction)diabetesSelected:(id)sender;
- (IBAction)customSelected:(id)sender;
- (IBAction)reminderButtonPressed:(id)sender;
@end