Ignite Tools
Shared/Airship/UI/Default/Subscription/Classes/Shared/UASubscriptionSettingsViewController.h
00001 /*
00002  Copyright 2009-2011 Urban Airship Inc. All rights reserved.
00003 
00004  Redistribution and use in source and binary forms, with or without
00005  modification, are permitted provided that the following conditions are met:
00006 
00007  1. Redistributions of source code must retain the above copyright notice, this
00008  list of conditions and the following disclaimer.
00009 
00010  2. Redistributions in binaryform must reproduce the above copyright notice,
00011  this list of conditions and the following disclaimer in the documentation
00012  and/or other materials provided withthe distribution.
00013 
00014  THIS SOFTWARE IS PROVIDED BY THE URBAN AIRSHIP INC``AS IS'' AND ANY EXPRESS OR
00015  IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
00016  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
00017  EVENT SHALL URBAN AIRSHIP INC OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
00018  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00019  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
00020  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
00021  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
00022  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
00023  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00024  */
00025 
00026 #import <UIKit/UIKit.h>
00027 #import "UAUser.h"
00028 
00029 @interface UASubscriptionSettingsViewController : UIViewController
00030 <UAUserObserver, UIAlertViewDelegate> {
00031     UILabel *emailHints;
00032     UITextField *emailInput;
00033     UIButton *emailButton;
00034     UIButton *resendEmailButton;
00035     UIButton *cancelEmailButton;
00036     UILabel *recoveryHints;
00037     UIAlertView* recoveryAlert;
00038 }
00039 
00040 @property (retain) IBOutlet UILabel *emailHints;
00041 @property (retain) IBOutlet UITextField *emailInput;
00042 @property (retain) IBOutlet UIButton *emailButton;
00043 @property (retain) IBOutlet UIButton *resendEmailButton;
00044 @property (retain) IBOutlet UIButton *cancelEmailButton;
00045 @property (retain) IBOutlet UILabel *recoveryHints;
00046 @property (retain, nonatomic) UIAlertView *recoveryAlert;
00047 
00048 - (IBAction)submitEmail:(id)sender;
00049 - (IBAction)resendEmail:(id)sender;
00050 - (IBAction)cancelEmail:(id)sender;
00051 - (void)updateUI;
00052 
00053 - (void)showRecoveryAlert;
00054 - (void)hideRecoveryAlert;
00055 - (void)showRecoveryFailAlert;
00056 - (BOOL)validateEmail:(NSString *)candidate;
00057 
00058 @end
 All Classes Functions Variables Properties