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

Unified Diff: ios/chrome/browser/ui/authentication/signin_promo_view.h

Issue 2749703003: Adding mediator for Sign-in promo (Closed)
Patch Set: Fixing Louis' comments Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/ui/authentication/signin_promo_view.h
diff --git a/ios/chrome/browser/ui/authentication/signin_promo_view.h b/ios/chrome/browser/ui/authentication/signin_promo_view.h
new file mode 100644
index 0000000000000000000000000000000000000000..16cf80bb35ceb0743d539aa73be0c8a49520f515
--- /dev/null
+++ b/ios/chrome/browser/ui/authentication/signin_promo_view.h
@@ -0,0 +1,63 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef IOS_CHROME_BROWSER_UI_AUTHENTICATION_SIGN_PROMO_VIEW_H_
+#define IOS_CHROME_BROWSER_UI_AUTHENTICATION_SIGN_PROMO_VIEW_H_
+
+#import <UIKit/UIKit.h>
+
+@class MDCFlatButton;
+@class SigninPromoView;
+
+// Configures a SigninPromoView view.
+@protocol SigninPromoViewConfigurator<NSObject>
+
+- (void)configureSigninPromoView:(SigninPromoView*)signinPromoView;
+
+@end
+
+typedef NS_ENUM(NSInteger, SigninPromoViewMode) {
+ // No profile is known.
+ SigninPromoViewColdStateMode,
msarda 2017/03/27 09:34:16 I think this should be SigninPromoViewModeColdStat
jlebel 2017/03/27 21:34:42 Done.
+ // At least one profile is known and the user can sign without entering their
+ // password.
+ SigninPromoViewWarmStateMode,
+};
+
+// This class creates an image view, a label and 2 buttons. This view can be
+// configured with 2 modes : "Cold State" and "Warm State".
+// + "Cold State" mode displays the chrome/chomium icon in the image view, and
lpromero 2017/03/27 13:14:46 chromium
jlebel 2017/03/27 21:34:42 Done.
+// only displays the primary button.
+// + "Warm State" mode displays the image view (big than the cold state mode),
+// displays both buttons.
+//
+// The owner is in charge to set:
+// - the image for |imageView|, using -[SigninPromoView setProfileImage:]
+// (only for "Warm State")
+// - the label for |textLabel|
+// - the title for |primaryButton|
+// - the title for |secondaryButton|
+@interface SigninPromoView : UIView
+
+@property(nonatomic) SigninPromoViewMode mode;
+@property(nonatomic, readonly) UIImageView* imageView;
+@property(nonatomic, readonly) UILabel* textLabel;
+@property(nonatomic, readonly) MDCFlatButton* primaryButton;
+@property(nonatomic, readonly) MDCFlatButton* secondaryButton;
+
+// Horizontal padding used for |textLabel|, |primaryButton| and
+// |secondaryButton|. Used to compute the preferred max layout of |textLabel|.
+@property(nonatomic, readonly) CGFloat horizontalPadding;
+
+- (instancetype)initWithCoder:(NSCoder*)aDecoder NS_UNAVAILABLE;
+
+// Sets the image in |imageView|. This method will add a circular background
+// using CircularImageFromImage() (so if the image is not squared, it will be
+// cropped first). Should be called only with the "Warm State" mode. The image
+// is not changed when "Cold State" mode.
+- (void)setProfileImage:(UIImage*)image;
+
+@end
+
+#endif // IOS_CHROME_BROWSER_UI_AUTHENTICATION_SIGN_PROMO_VIEW_H_

Powered by Google App Engine
This is Rietveld 408576698