blob: ef06e5cb52cb444d07aa65abf5e4b2594b133d63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_AURA_SHELL_LAUNCHER_VIEW_MODEL_UTILS_H_
#define UI_AURA_SHELL_LAUNCHER_VIEW_MODEL_UTILS_H_
#pragma once
#include "base/basictypes.h"
#include "ui/aura_shell/aura_shell_export.h"
namespace views {
class View;
}
namespace aura_shell {
class ViewModel;
class AURA_SHELL_EXPORT ViewModelUtils {
public:
// Sets the bounds of each view to its ideal bounds.
static void SetViewBoundsToIdealBounds(const ViewModel& model);
// Returns the index to move |view| to based on a x-coordinate of |x|.
static int DetermineMoveIndex(const ViewModel& model,
views::View* view,
int x);
private:
DISALLOW_IMPLICIT_CONSTRUCTORS(ViewModelUtils);
};
} // namespace aura_shell
#endif // UI_AURA_SHELL_LAUNCHER_VIEW_MODEL_UTILS_H_
|