| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "ash/common/shelf/shelf_constants.h" | 5 #include "ash/common/shelf/shelf_constants.h" |
| 6 | 6 |
| 7 #include "ash/common/material_design/material_design_controller.h" | 7 #include "ash/common/material_design/material_design_controller.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "third_party/skia/include/core/SkColor.h" | 9 #include "third_party/skia/include/core/SkColor.h" |
| 10 | 10 |
| 11 namespace ash { | 11 namespace ash { |
| 12 | 12 |
| 13 const int kInvalidImageResourceID = -1; | 13 const int kInvalidImageResourceID = -1; |
| 14 const int kTimeToSwitchBackgroundMs = 1000; | 14 const int kTimeToSwitchBackgroundMs = 1000; |
| 15 const int kWorkspaceAreaVisibleInset = 2; | 15 const int kWorkspaceAreaVisibleInset = 2; |
| 16 const int kWorkspaceAreaAutoHideInset = 5; | 16 const int kWorkspaceAreaAutoHideInset = 5; |
| 17 const int kShelfAutoHideSize = 3; | 17 const int kShelfAutoHideSize = 3; |
| 18 const int kShelfItemInset = 3; | 18 const int kShelfItemInset = 3; |
| 19 const SkColor kShelfBaseColor = SK_ColorBLACK; | 19 const SkColor kShelfBaseColor = SK_ColorBLACK; |
| 20 const SkColor kShelfButtonActivatedHighlightColor = | 20 const SkColor kShelfButtonActivatedHighlightColor = |
| 21 SkColorSetA(SK_ColorWHITE, 100); | 21 SkColorSetA(SK_ColorWHITE, 100); |
| 22 const SkColor kShelfInkDropBaseColor = SK_ColorWHITE; |
| 22 const SkColor kShelfIconColor = SK_ColorWHITE; | 23 const SkColor kShelfIconColor = SK_ColorWHITE; |
| 23 | 24 |
| 24 int GetShelfConstant(ShelfConstant shelf_constant) { | 25 int GetShelfConstant(ShelfConstant shelf_constant) { |
| 25 const int kShelfBackgroundAlpha[] = {204, 153, 153}; | 26 const int kShelfBackgroundAlpha[] = {204, 153, 153}; |
| 26 const int kShelfSize[] = {47, 48, 48}; | 27 const int kShelfSize[] = {47, 48, 48}; |
| 27 const int kShelfButtonSpacing[] = {10, 16, 16}; | 28 const int kShelfButtonSpacing[] = {10, 16, 16}; |
| 28 const int kShelfButtonSize[] = {44, 48, 48}; | 29 const int kShelfButtonSize[] = {44, 48, 48}; |
| 29 | 30 |
| 30 const int mode = MaterialDesignController::GetMode(); | 31 const int mode = MaterialDesignController::GetMode(); |
| 31 DCHECK(mode >= MaterialDesignController::NON_MATERIAL && | 32 DCHECK(mode >= MaterialDesignController::NON_MATERIAL && |
| 32 mode <= MaterialDesignController::MATERIAL_EXPERIMENTAL); | 33 mode <= MaterialDesignController::MATERIAL_EXPERIMENTAL); |
| 33 | 34 |
| 34 switch (shelf_constant) { | 35 switch (shelf_constant) { |
| 35 case SHELF_BACKGROUND_ALPHA: | 36 case SHELF_BACKGROUND_ALPHA: |
| 36 return kShelfBackgroundAlpha[mode]; | 37 return kShelfBackgroundAlpha[mode]; |
| 37 case SHELF_SIZE: | 38 case SHELF_SIZE: |
| 38 return kShelfSize[mode]; | 39 return kShelfSize[mode]; |
| 39 case SHELF_BUTTON_SPACING: | 40 case SHELF_BUTTON_SPACING: |
| 40 return kShelfButtonSpacing[mode]; | 41 return kShelfButtonSpacing[mode]; |
| 41 case SHELF_BUTTON_SIZE: | 42 case SHELF_BUTTON_SIZE: |
| 42 return kShelfButtonSize[mode]; | 43 return kShelfButtonSize[mode]; |
| 43 } | 44 } |
| 44 NOTREACHED(); | 45 NOTREACHED(); |
| 45 return 0; | 46 return 0; |
| 46 } | 47 } |
| 47 | 48 |
| 48 } // namespace ash | 49 } // namespace ash |
| OLD | NEW |