blob: 56a78b8968784191fde93be718e92efa31578b70 (
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
|
// Copyright (c) 2010 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 "views/controls/resize_area.h"
#include "app/resource_bundle.h"
#include "base/logging.h"
#if defined(OS_LINUX)
#include "gfx/gtk_util.h"
#endif
namespace views {
const char ResizeArea::kViewClassName[] = "views/ResizeArea";
#if defined(OS_WIN)
static HCURSOR g_resize_cursor = NULL;
#endif
////////////////////////////////////////////////////////////////////////////////
// ResizeArea
ResizeArea::ResizeArea(ResizeAreaDelegate* delegate)
: delegate_(delegate),
initial_position_(0) {
}
ResizeArea::~ResizeArea() {
}
std::string ResizeArea::GetClassName() const {
return kViewClassName;
}
gfx::NativeCursor ResizeArea::GetCursorForPoint(Event::EventType event_type,
const gfx::Point& p) {
if (!enabled_)
return NULL;
#if defined(OS_WIN)
if (!g_resize_cursor)
g_resize_cursor = LoadCursor(NULL, IDC_SIZEWE);
return g_resize_cursor;
#elif defined(OS_LINUX)
return gfx::GetCursor(GDK_SB_H_DOUBLE_ARROW);
#endif
}
bool ResizeArea::OnMousePressed(const views::MouseEvent& event) {
if (!event.IsOnlyLeftMouseButton())
return false;
// The resize area obviously will move once you start dragging so we need to
// convert coordinates to screen coordinates so that we don't lose our
// bearings.
gfx::Point point(event.x(), 0);
View::ConvertPointToScreen(this, &point);
initial_position_ = point.x();
return true;
}
bool ResizeArea::OnMouseDragged(const views::MouseEvent& event) {
if (!event.IsLeftMouseButton())
return false;
ReportResizeAmount(event.x(), false);
return true;
}
void ResizeArea::OnMouseReleased(const views::MouseEvent& event,
bool canceled) {
ReportResizeAmount(canceled ? initial_position_ : event.x(), true);
}
AccessibilityTypes::Role ResizeArea::GetAccessibleRole() {
return AccessibilityTypes::ROLE_SEPARATOR;
}
void ResizeArea::ReportResizeAmount(int resize_amount, bool last_update) {
gfx::Point point(resize_amount, 0);
View::ConvertPointToScreen(this, &point);
resize_amount = point.x() - initial_position_;
delegate_->OnResize(base::i18n::IsRTL() ? -resize_amount : resize_amount,
last_update);
}
} // namespace views
|