-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimerViewController.h
More file actions
42 lines (32 loc) · 1.08 KB
/
TimerViewController.h
File metadata and controls
42 lines (32 loc) · 1.08 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
//
// TimerViewController.h
// Tik
//
// Created by Adam Gleichsner on 1/17/15.
// Copyright (c) 2015 Adam Gleichsner. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "IssuesCenter.h"
typedef enum: NSUInteger {
PRESETUP,
POSTSETUP,
TIMING,
PAUSED,
ONBREAK,
STOPPED
} TimerState;
@interface TimerViewController : UIViewController
@property (weak, nonatomic) IBOutlet UIButton *setupButton;
@property (weak, nonatomic) IBOutlet UIButton *playPauseButton;
@property (weak, nonatomic) IBOutlet UIButton *stopButton;
@property (weak, nonatomic) IBOutlet UIButton *addButton;
@property (weak, nonatomic) IBOutlet UIBarButtonItem *searchButton;
@property (nonatomic) TimerState *timerState;
@property (strong, nonatomic) IBOutlet UILabel *timerDisplay;
@property (weak, nonatomic) IBOutlet UINavigationBar *timerNavigationBar;
@property (strong, nonatomic) NSManagedObjectContext *context;
@property (strong, nonatomic) IssuesCenter *issuesData;
@property (nonatomic) int workMinutes;
@property (nonatomic) int breakMinutes;
@property (nonatomic) int repeatCount;
@end