| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ | 5 #ifndef ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ |
| 6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ | 6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/public/cpp/shelf_types.h" | 10 #include "ash/public/cpp/shelf_types.h" |
| 11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 12 | 12 |
| 13 namespace views { | 13 namespace views { |
| 14 class Label; | 14 class Label; |
| 15 class Separator; | |
| 16 class View; | 15 class View; |
| 17 } | 16 } |
| 18 | 17 |
| 19 namespace ash { | 18 namespace ash { |
| 20 | 19 |
| 21 class TrayItemView; | 20 class TrayItemView; |
| 22 | 21 |
| 23 // Sets up a Label properly for the tray (sets color, font etc.). | 22 // Sets up a Label properly for the tray (sets color, font etc.). |
| 24 void SetupLabelForTray(views::Label* label); | 23 void SetupLabelForTray(views::Label* label); |
| 25 | 24 |
| 26 // TODO(jennyz): refactor these two functions to SystemTrayItem. | 25 // TODO(jennyz): refactor these two functions to SystemTrayItem. |
| 27 // Sets the empty border of an image tray item for adjusting the space | 26 // Sets the empty border of an image tray item for adjusting the space |
| 28 // around it. | 27 // around it. |
| 29 void SetTrayImageItemBorder(views::View* tray_view, ShelfAlignment alignment); | 28 void SetTrayImageItemBorder(views::View* tray_view, ShelfAlignment alignment); |
| 30 // Sets the empty border around a label tray item for adjusting the space | 29 // Sets the empty border around a label tray item for adjusting the space |
| 31 // around it. | 30 // around it. |
| 32 void SetTrayLabelItemBorder(TrayItemView* tray_view, ShelfAlignment alignment); | 31 void SetTrayLabelItemBorder(TrayItemView* tray_view, ShelfAlignment alignment); |
| 33 | 32 |
| 34 // Computes an accessible label for this button based on all descendant view | 33 // Computes an accessible label for this button based on all descendant view |
| 35 // labels by concatenating them in depth-first order. | 34 // labels by concatenating them in depth-first order. |
| 36 void GetAccessibleLabelFromDescendantViews( | 35 void GetAccessibleLabelFromDescendantViews( |
| 37 views::View* view, | 36 views::View* view, |
| 38 std::vector<base::string16>& out_labels); | 37 std::vector<base::string16>& out_labels); |
| 39 | 38 |
| 40 } // namespace ash | 39 } // namespace ash |
| 41 | 40 |
| 42 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ | 41 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_UTILS_H_ |
| OLD | NEW |