OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 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_AUTOFILL_CELLS_STATUS_ITEM_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_AUTOFILL_CELLS_STATUS_ITEM_H_ |
| 7 |
| 8 #import <UIKit/UIKit.h> |
| 9 |
| 10 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" |
| 11 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" |
| 12 |
| 13 enum class StatusItemState { |
| 14 VERIFYING, |
| 15 VERIFIED, |
| 16 ERROR, |
| 17 }; |
| 18 |
| 19 @class MDCActivityIndicator; |
| 20 |
| 21 // The status item displays a status indicator and some text indicating the |
| 22 // current state of a verification attempt. |
| 23 @interface StatusItem : CollectionViewItem |
| 24 |
| 25 // The text indicating the current state. |
| 26 @property(nonatomic, copy) NSString* text; |
| 27 |
| 28 // The current state of the verification attempt. |
| 29 @property(nonatomic, assign) StatusItemState state; |
| 30 |
| 31 @end |
| 32 |
| 33 // Cell corresponding to a StatusItem. |
| 34 @interface StatusCell : MDCCollectionViewCell |
| 35 |
| 36 // The activity indicator to indicate the VERIFYING state. |
| 37 @property(nonatomic, strong) MDCActivityIndicator* activityIndicator; |
| 38 |
| 39 // The image view to indicate the VERIFIED state. |
| 40 @property(nonatomic, strong) UIImageView* verifiedImageView; |
| 41 |
| 42 // The image view to indicate the ERROR state. |
| 43 @property(nonatomic, strong) UIImageView* errorImageView; |
| 44 |
| 45 // The text label to display the message associated with the current state. |
| 46 @property(nonatomic, strong) UILabel* textLabel; |
| 47 |
| 48 @end |
| 49 |
| 50 #endif // IOS_CHROME_BROWSER_UI_AUTOFILL_CELLS_STATUS_ITEM_H_ |
OLD | NEW |