blob: 14f086b65cd2f23e256beaf4289d9658a911d035 (
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
|
// 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.
#include "views/controls/scrollbar/base_scroll_bar_button.h"
namespace views {
BaseScrollBarButton::BaseScrollBarButton(ButtonListener* listener)
: CustomButton(listener),
ALLOW_THIS_IN_INITIALIZER_LIST(repeater_(
NewCallback<BaseScrollBarButton>(this,
&BaseScrollBarButton::RepeaterNotifyClick))) {
}
BaseScrollBarButton::~BaseScrollBarButton() {
}
bool BaseScrollBarButton::OnMousePressed(const MouseEvent& event) {
Button::NotifyClick(event);
repeater_.Start();
return true;
}
void BaseScrollBarButton::OnMouseReleased(const MouseEvent& event) {
OnMouseCaptureLost();
}
void BaseScrollBarButton::OnMouseCaptureLost() {
repeater_.Stop();
}
void BaseScrollBarButton::RepeaterNotifyClick() {
#if defined(OS_WIN)
DWORD pos = GetMessagePos();
POINTS points = MAKEPOINTS(pos);
gfx::Point cursor_point(points.x, points.y);
#elif defined(OS_LINUX)
gfx::Point cursor_point = gfx::Screen::GetCursorScreenPoint();
#endif
views::MouseEvent event(ui::ET_MOUSE_RELEASED,
cursor_point.x(), cursor_point.y(),
ui::EF_LEFT_BUTTON_DOWN);
Button::NotifyClick(event);
}
} // namespace views
|