Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Side by Side Diff: ios/chrome/browser/ui/authentication/signin_promo_view.h

Issue 2749703003: Adding mediator for Sign-in promo (Closed)
Patch Set: Update tests Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef IOS_CHROME_BROWSER_UI_AUTHENTICATION_SIGN_PROMO_VIEW_H_
6 #define IOS_CHROME_BROWSER_UI_AUTHENTICATION_SIGN_PROMO_VIEW_H_
7
8 #import <UIKit/UIKit.h>
9
10 @class MDCFlatButton;
11 @class SigninPromoView;
12
13 // Configures a SigninPromoView view.
14 @protocol SigninPromoViewConfigurator<NSObject>
15
16 - (void)configureSigninPromoView:(SigninPromoView*)signinPromoView;
17
18 @end
19
20 typedef NS_ENUM(NSInteger, SigninPromoViewMode) {
21 // No identity available on the device.
22 SigninPromoViewModeColdState,
23 // At least one identity is available on the device and the user can sign
24 // without entering their credentials.
25 SigninPromoViewModeWarmState,
26 };
27
28 // This class creates an image view, a label and 2 buttons. This view can be
29 // configured with 2 modes : "Cold State" and "Warm State".
30 // + "Cold State" mode displays the chomium icon in the image view, and only
31 // displays the primary button.
32 // + "Warm State" mode displays the image view (big than the cold state mode),
33 // displays both buttons.
34 //
35 // For the warm state, the owner should set:
36 // - the image for |imageView|, using -[SigninPromoView setProfileImage:]
37 // - the label for |textLabel|
38 // - the title for |primaryButton|
39 // - the title for |secondaryButton|
40 @interface SigninPromoView : UIView
41
42 @property(nonatomic) SigninPromoViewMode mode;
43 @property(nonatomic, readonly) UIImageView* imageView;
44 @property(nonatomic, readonly) UILabel* textLabel;
45 @property(nonatomic, readonly) MDCFlatButton* primaryButton;
46 @property(nonatomic, readonly) MDCFlatButton* secondaryButton;
47
48 // Horizontal padding used for |textLabel|, |primaryButton| and
49 // |secondaryButton|. Used to compute the preferred max layout width of
50 // |textLabel|.
51 @property(nonatomic, readonly) CGFloat horizontalPadding;
52
53 - (instancetype)initWithCoder:(NSCoder*)aDecoder NS_UNAVAILABLE;
54
55 // Sets the image in |imageView|. This method will add a circular background
56 // using CircularImageFromImage() (so if the image is not squared, it will be
57 // cropped first). Must only be called in the "Warm State" mode.
58 - (void)setProfileImage:(UIImage*)image;
59
60 @end
61
62 #endif // IOS_CHROME_BROWSER_UI_AUTHENTICATION_SIGN_PROMO_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698