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

Side by Side Diff: remoting/ios/app/remoting_theme.h

Issue 2957943002: [CRD iOS] Add the host setup instruction page (Closed)
Patch Set: Add comment Created 3 years, 5 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
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* setupListBackgroundColor;
20 21
21 // Icons 22 // Icons
22 23
23 @property(class, nonatomic, readonly) UIImage* arrowIcon; 24 @property(class, nonatomic, readonly) UIImage* arrowIcon;
24 @property(class, nonatomic, readonly) UIImage* backIcon; 25 @property(class, nonatomic, readonly) UIImage* backIcon;
25 @property(class, nonatomic, readonly) UIImage* checkboxCheckedIcon; 26 @property(class, nonatomic, readonly) UIImage* checkboxCheckedIcon;
26 @property(class, nonatomic, readonly) UIImage* checkboxOutlineIcon; 27 @property(class, nonatomic, readonly) UIImage* checkboxOutlineIcon;
27 @property(class, nonatomic, readonly) UIImage* closeIcon; 28 @property(class, nonatomic, readonly) UIImage* closeIcon;
28 @property(class, nonatomic, readonly) UIImage* desktopIcon; 29 @property(class, nonatomic, readonly) UIImage* desktopIcon;
29 @property(class, nonatomic, readonly) UIImage* menuIcon; 30 @property(class, nonatomic, readonly) UIImage* menuIcon;
30 @property(class, nonatomic, readonly) UIImage* radioCheckedIcon; 31 @property(class, nonatomic, readonly) UIImage* radioCheckedIcon;
31 @property(class, nonatomic, readonly) UIImage* radioOutlineIcon; 32 @property(class, nonatomic, readonly) UIImage* radioOutlineIcon;
32 @property(class, nonatomic, readonly) UIImage* refreshIcon; 33 @property(class, nonatomic, readonly) UIImage* refreshIcon;
33 @property(class, nonatomic, readonly) UIImage* settingsIcon; 34 @property(class, nonatomic, readonly) UIImage* settingsIcon;
34 35
35 @end 36 @end
36 37
37 #endif // REMOTING_IOS_APP_REMOTING_THEME_H_ 38 #endif // REMOTING_IOS_APP_REMOTING_THEME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698