blob: 35bd11670c2593cd6d3cf826ecc1929b30fa2664 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
// Copyright (c) 2009 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.
#include "chrome/browser/views/tabs/tab_overview_grid.h"
#include "chrome/browser/views/tabs/tab_overview_cell.h"
#include "chrome/browser/views/tabs/tab_overview_controller.h"
#include "chrome/browser/views/tabs/tab_overview_drag_controller.h"
#include "views/screen.h"
TabOverviewGrid::TabOverviewGrid(TabOverviewController* controller)
: controller_(controller) {
}
TabOverviewGrid::~TabOverviewGrid() {
}
bool TabOverviewGrid::modifying_model() const {
return drag_controller_.get() && drag_controller_->modifying_model();
}
TabOverviewCell* TabOverviewGrid::GetTabOverviewCellAt(int index) {
return static_cast<TabOverviewCell*>(GetChildViewAt(index));
}
TabOverviewDragController* TabOverviewGrid::drag_controller() const {
return drag_controller_.get();
}
void TabOverviewGrid::CancelDrag() {
drag_controller_.reset(NULL);
}
void TabOverviewGrid::UpdateDragController() {
if (drag_controller_.get()) {
gfx::Point mouse_loc = views::Screen::GetCursorScreenPoint();
ConvertPointToView(NULL, this, &mouse_loc);
drag_controller_->Drag(mouse_loc);
}
}
bool TabOverviewGrid::OnMousePressed(const views::MouseEvent& event) {
if (drag_controller_.get())
return true;
if (!event.IsLeftMouseButton())
return false;
drag_controller_.reset(new TabOverviewDragController(controller_));
if (!drag_controller_->Configure(event.location())) {
drag_controller_.reset(NULL);
return false;
}
return true;
}
bool TabOverviewGrid::OnMouseDragged(const views::MouseEvent& event) {
if (!drag_controller_.get())
return false;
drag_controller_->Drag(event.location());
return true;
}
void TabOverviewGrid::OnMouseReleased(const views::MouseEvent& event,
bool canceled) {
if (!drag_controller_.get())
return;
if (canceled)
drag_controller_->RevertDrag(false);
else
drag_controller_->CommitDrag(event.location());
drag_controller_.reset(NULL);
}
void TabOverviewGrid::AnimationEnded(const Animation* animation) {
Grid::AnimationEnded(animation);
controller_->GridAnimationEnded();
}
void TabOverviewGrid::AnimationProgressed(const Animation* animation) {
Grid::AnimationProgressed(animation);
controller_->GridAnimationProgressed();
}
void TabOverviewGrid::AnimationCanceled(const Animation* animation) {
Grid::AnimationCanceled(animation);
controller_->GridAnimationCanceled();
}
|