2
0
MasterPassword/MasterPassword/ObjC/iOS/MPGuideViewController.h

35 lines
1.2 KiB
C
Raw Normal View History

2012-02-02 14:56:09 +01:00
//
2012-02-05 22:18:38 +01:00
// MPGuideViewController.h
2012-02-03 08:45:09 +01:00
// MasterPassword
2012-02-02 14:56:09 +01:00
//
// Created by Maarten Billemont on 30/01/12.
// Copyright (c) 2012 Lyndir. All rights reserved.
//
#import <UIKit/UIKit.h>
2013-04-20 14:11:19 -04:00
@interface MPGuideViewController : UIViewController<UIScrollViewDelegate>
2012-02-02 14:56:09 +01:00
2013-04-20 14:11:19 -04: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 *volumeButton;
@property(weak, nonatomic) IBOutlet UIButton *largePlayButton;
@property(weak, nonatomic) IBOutlet UIButton *smallPlayButton;
- (IBAction)play;
2012-02-02 14:56:09 +01:00
- (IBAction)close;
- (IBAction)toggleVolume;
2012-02-02 14:56:09 +01:00
@end