blob: 89c748ccb118702f6dd26c8cc3922cd1a0970088 (
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 ASH_LAUNCHER_VIEW_MODEL_UTILS_H_
#define ASH_LAUNCHER_VIEW_MODEL_UTILS_H_
#pragma once
#include "base/basictypes.h"
#include "ash/ash_export.h"
namespace views {
class View;
}
namespace aura_shell {
class ViewModel;
class ASH_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 // ASH_LAUNCHER_VIEW_MODEL_UTILS_H_
|