| 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_SHELF_SHELF_LAYOUT_MANAGER_H_ | 5 #ifndef ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
| 6 #define ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ | 6 #define ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 // the resize handle at the edge of the window can be hit. | 70 // the resize handle at the edge of the window can be hit. |
| 71 static const int kWorkspaceAreaVisibleInset; | 71 static const int kWorkspaceAreaVisibleInset; |
| 72 | 72 |
| 73 // When autohidden we extend the touch hit target onto the screen so that the | 73 // When autohidden we extend the touch hit target onto the screen so that the |
| 74 // user can drag the shelf out. | 74 // user can drag the shelf out. |
| 75 static const int kWorkspaceAreaAutoHideInset; | 75 static const int kWorkspaceAreaAutoHideInset; |
| 76 | 76 |
| 77 // Size of the shelf when auto-hidden. | 77 // Size of the shelf when auto-hidden. |
| 78 static const int kAutoHideSize; | 78 static const int kAutoHideSize; |
| 79 | 79 |
| 80 // The size of the shelf when shown (currently only used in alternate |
| 81 // settings see ash::switches::UseAlternateShelfLayout). |
| 82 static const int kShelfSize; |
| 83 |
| 80 // Inset between the inner edge of the shelf (towards centre of screen), and | 84 // Inset between the inner edge of the shelf (towards centre of screen), and |
| 81 // the shelf items, notifications, status area etc. | 85 // the shelf items, notifications, status area etc. |
| 82 static const int kShelfItemInset; | 86 static const int kShelfItemInset; |
| 83 | 87 |
| 88 // Returns the preferred size for the shelf (either kShelfPreferredSize or |
| 89 // kShelfSize). |
| 90 static int GetPreferredShelfSize(); |
| 91 |
| 84 explicit ShelfLayoutManager(ShelfWidget* shelf); | 92 explicit ShelfLayoutManager(ShelfWidget* shelf); |
| 85 virtual ~ShelfLayoutManager(); | 93 virtual ~ShelfLayoutManager(); |
| 86 | 94 |
| 87 // Sets the ShelfAutoHideBehavior. See enum description for details. | 95 // Sets the ShelfAutoHideBehavior. See enum description for details. |
| 88 void SetAutoHideBehavior(ShelfAutoHideBehavior behavior); | 96 void SetAutoHideBehavior(ShelfAutoHideBehavior behavior); |
| 89 ShelfAutoHideBehavior auto_hide_behavior() const { | 97 ShelfAutoHideBehavior auto_hide_behavior() const { |
| 90 return auto_hide_behavior_; | 98 return auto_hide_behavior_; |
| 91 } | 99 } |
| 92 | 100 |
| 93 // Sets the alignment. Returns true if the alignment is changed. Otherwise, | 101 // Sets the alignment. Returns true if the alignment is changed. Otherwise, |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 // The show hide animation duration override or 0 for default. | 408 // The show hide animation duration override or 0 for default. |
| 401 int duration_override_in_ms_; | 409 int duration_override_in_ms_; |
| 402 | 410 |
| 403 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); | 411 DISALLOW_COPY_AND_ASSIGN(ShelfLayoutManager); |
| 404 }; | 412 }; |
| 405 | 413 |
| 406 } // namespace internal | 414 } // namespace internal |
| 407 } // namespace ash | 415 } // namespace ash |
| 408 | 416 |
| 409 #endif // ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ | 417 #endif // ASH_SHELF_SHELF_LAYOUT_MANAGER_H_ |
| OLD | NEW |