| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef REMOTING_IOS_APP_REMOTING_THEME_H_ | 5 #ifndef REMOTING_IOS_APP_REMOTING_THEME_H_ |
| 6 #define REMOTING_IOS_APP_REMOTING_THEME_H_ | 6 #define REMOTING_IOS_APP_REMOTING_THEME_H_ |
| 7 | 7 |
| 8 #import <UIKit/UIKit.h> | 8 #import <UIKit/UIKit.h> |
| 9 | 9 |
| 10 // Styles to be used when rendering the iOS client's UI. | 10 // Styles to be used when rendering the iOS client's UI. |
| 11 @interface RemotingTheme : NSObject | 11 @interface RemotingTheme : NSObject |
| 12 | 12 |
| 13 // Colors | 13 // Colors |
| 14 | 14 |
| 15 @property(class, nonatomic, readonly) UIColor* connectionViewBackgroundColor; | 15 @property(class, nonatomic, readonly) UIColor* connectionViewBackgroundColor; |
| 16 @property(class, nonatomic, readonly) UIColor* hostListBackgroundColor; | 16 @property(class, nonatomic, readonly) UIColor* hostListBackgroundColor; |
| 17 @property(class, nonatomic, readonly) UIColor* menuBlueColor; | 17 @property(class, nonatomic, readonly) UIColor* menuBlueColor; |
| 18 @property(class, nonatomic, readonly) UIColor* offlineHostColor; | 18 @property(class, nonatomic, readonly) UIColor* offlineHostColor; |
| 19 @property(class, nonatomic, readonly) UIColor* onlineHostColor; | 19 @property(class, nonatomic, readonly) UIColor* onlineHostColor; |
| 20 @property(class, nonatomic, readonly) UIColor* buttonTextColor; |
| 21 @property(class, nonatomic, readonly) UIColor* setupListBackgroundColor; |
| 22 @property(class, nonatomic, readonly) UIColor* setupListTextColor; |
| 23 @property(class, nonatomic, readonly) UIColor* setupListNumberColor; |
| 20 | 24 |
| 21 // Icons | 25 // Icons |
| 22 | 26 |
| 23 @property(class, nonatomic, readonly) UIImage* arrowIcon; | 27 @property(class, nonatomic, readonly) UIImage* arrowIcon; |
| 24 @property(class, nonatomic, readonly) UIImage* backIcon; | 28 @property(class, nonatomic, readonly) UIImage* backIcon; |
| 25 @property(class, nonatomic, readonly) UIImage* checkboxCheckedIcon; | 29 @property(class, nonatomic, readonly) UIImage* checkboxCheckedIcon; |
| 26 @property(class, nonatomic, readonly) UIImage* checkboxOutlineIcon; | 30 @property(class, nonatomic, readonly) UIImage* checkboxOutlineIcon; |
| 27 @property(class, nonatomic, readonly) UIImage* closeIcon; | 31 @property(class, nonatomic, readonly) UIImage* closeIcon; |
| 28 @property(class, nonatomic, readonly) UIImage* desktopIcon; | 32 @property(class, nonatomic, readonly) UIImage* desktopIcon; |
| 29 @property(class, nonatomic, readonly) UIImage* menuIcon; | 33 @property(class, nonatomic, readonly) UIImage* menuIcon; |
| 30 @property(class, nonatomic, readonly) UIImage* radioCheckedIcon; | 34 @property(class, nonatomic, readonly) UIImage* radioCheckedIcon; |
| 31 @property(class, nonatomic, readonly) UIImage* radioOutlineIcon; | 35 @property(class, nonatomic, readonly) UIImage* radioOutlineIcon; |
| 32 @property(class, nonatomic, readonly) UIImage* refreshIcon; | 36 @property(class, nonatomic, readonly) UIImage* refreshIcon; |
| 33 @property(class, nonatomic, readonly) UIImage* settingsIcon; | 37 @property(class, nonatomic, readonly) UIImage* settingsIcon; |
| 34 | 38 |
| 35 @end | 39 @end |
| 36 | 40 |
| 37 #endif // REMOTING_IOS_APP_REMOTING_THEME_H_ | 41 #endif // REMOTING_IOS_APP_REMOTING_THEME_H_ |
| OLD | NEW |