41 lines
1.1 KiB
Objective-C
41 lines
1.1 KiB
Objective-C
//
|
|
// EspagramTypingTestViewController.h
|
|
// Espagram
|
|
//
|
|
// Created by Abel Fokkinga on 1/9/13.
|
|
// Copyright (c) 2013 Abel Fokkinga. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "Conjugator.h"
|
|
#import "EspagramLessonTesting.h"
|
|
#import "EspagramConjugationTableViewController.h"
|
|
#import "Lesson+Conjugator.h"
|
|
#import "Lesson+Test.h"
|
|
#import "Verb.h"
|
|
|
|
@interface EspagramTypingTestViewController : UIViewController
|
|
<EspagramLessonTesting>
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *testedVerbLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *verbMeaningLable;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *verbPersonLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *verbTestTenseLabel;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *nextButton;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *checkAnswerButton;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *showAnswerButton;
|
|
|
|
@property (weak, nonatomic) IBOutlet UITextField *verbAnswerTextField;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIProgressView *testProgressIndicator;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *testStatusLabel;
|
|
|
|
@end
|