2012-02-02 13:56:09 +00:00
|
|
|
//
|
2012-02-05 21:18:38 +00:00
|
|
|
// MPGuideViewController.h
|
2012-02-03 07:45:09 +00:00
|
|
|
// MasterPassword
|
2012-02-02 13:56:09 +00:00
|
|
|
//
|
|
|
|
// Created by Maarten Billemont on 30/01/12.
|
|
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2013-04-20 18:11:19 +00:00
|
|
|
@interface MPGuideViewController : UIViewController<UIScrollViewDelegate>
|
2012-02-02 13:56:09 +00:00
|
|
|
|
2013-04-20 18:11:19 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UIView *siteNameTip;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIView *contentTip;
|
|
|
|
@property(weak, nonatomic) IBOutlet UILabel *contentTipText;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIButton *usernameButton;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIView *usernameTip;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIButton *typeButton;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIView *typeTip;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIButton *toolButton;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIView *toolTip;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIProgressView *progress;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIView *content;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIButton *contentButton;
|
|
|
|
@property(weak, nonatomic) IBOutlet UITextField *contentText;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIButton *largePlayButton;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIButton *smallPlayButton;
|
2013-04-14 14:24:24 +00:00
|
|
|
|
|
|
|
- (IBAction)play;
|
2012-02-02 13:56:09 +00:00
|
|
|
- (IBAction)close;
|
|
|
|
|
|
|
|
@end
|