Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1968)

Unified Diff: ash/common/system/chromeos/palette/tools/laser_pointer_mode.cc

Issue 2239743004: Palette tool laser prototype. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@patch
Patch Set: Fixed patch set 4 errors. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ash/common/system/chromeos/palette/tools/laser_pointer_mode.cc
diff --git a/ash/common/system/chromeos/palette/tools/laser_pointer_mode.cc b/ash/common/system/chromeos/palette/tools/laser_pointer_mode.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d278382154d0f0c36517f6fca55c5f746e293bec
--- /dev/null
+++ b/ash/common/system/chromeos/palette/tools/laser_pointer_mode.cc
@@ -0,0 +1,107 @@
+// Copyright 2016 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 "ash/common/system/chromeos/palette/tools/laser_pointer_mode.h"
+
+#include "ash/common/palette_delegate.h"
+#include "ash/common/system/chromeos/palette/palette_ids.h"
+#include "ash/common/wm_shell.h"
+#include "grit/ash_strings.h"
+#include "ui/base/l10n/l10n_util.h"
+#include "ui/wm/core/coordinate_conversion.h"
+#include "ui/wm/core/cursor_manager.h"
+
+namespace ash {
+namespace {
+const int kPointLifeDurationMs = 200;
+const int kAddStationaryPointsDelayMs = 5;
jdufault 2016/08/19 01:02:08 Should this be 10?
sammiequon 2016/08/19 20:28:46 I played around with the constants I think this lo
+} // namespace
+
+LaserPointerMode::LaserPointerMode(Delegate* delegate)
+ : CommonPaletteTool(delegate) {
+ laser_pointer_view_.reset(new LaserPointerView(
+ base::TimeDelta::FromMilliseconds(kPointLifeDurationMs)));
+ timer_.reset(new base::Timer(
+ FROM_HERE, base::TimeDelta::FromMilliseconds(kAddStationaryPointsDelayMs),
+ base::Bind(&LaserPointerMode::AddStationaryPoint, base::Unretained(this)),
+ true));
+ WmShell::Get()->AddPointerWatcher(this, true);
+}
+
+LaserPointerMode::~LaserPointerMode() {
+ StopTimer();
+ WmShell::Get()->RemovePointerWatcher(this);
+}
+
+PaletteGroup LaserPointerMode::GetGroup() const {
+ return PaletteGroup::MODE;
+}
+
+PaletteToolId LaserPointerMode::GetToolId() const {
+ return PaletteToolId::LASER_POINTER;
+}
+
+void LaserPointerMode::OnEnable() {
+ CommonPaletteTool::OnEnable();
+
+ // TODO(sammiequon): Remove check and set palette delegate to test delegate
+ // once test deleagte CL lands.
+ if (WmShell::Get()->palette_delegate())
+ WmShell::Get()->palette_delegate()->OnLaserPointerEnabled();
+ laser_pointer_view_->AddNewPoint(current_mouse_location_);
+}
+
+void LaserPointerMode::OnDisable() {
+ CommonPaletteTool::OnDisable();
+
+ if (WmShell::Get()->palette_delegate())
+ WmShell::Get()->palette_delegate()->OnLaserPointerDisabled();
+ StopTimer();
+ laser_pointer_view_->Stop();
+}
+
+gfx::VectorIconId LaserPointerMode::GetActiveTrayIcon() {
+ return gfx::VectorIconId::PALETTE_TRAY_ICON_LASER_POINTER;
+}
+
+gfx::VectorIconId LaserPointerMode::GetPaletteIconId() {
+ return gfx::VectorIconId::PALETTE_MODE_LASER_POINTER;
+}
+
+views::View* LaserPointerMode::CreateView() {
+ return CreateDefaultView(
+ l10n_util::GetStringUTF16(IDS_ASH_PALETTE_LASER_POINTER_MODE));
+}
+
+void LaserPointerMode::StopTimer() {
+ timer_repeat_count_ = 0;
+ timer_->Stop();
+}
+
+void LaserPointerMode::AddStationaryPoint() {
+ laser_pointer_view_->AddNewPoint(current_mouse_location_);
+ // We can stop repeating the timer once the mouse has been stationary for
+ // longer than the life of a point.
+ if (timer_repeat_count_++ * kAddStationaryPointsDelayMs >=
+ kPointLifeDurationMs)
jdufault 2016/08/19 01:02:08 Wrap with {} since if condition is >1 line
sammiequon 2016/08/19 20:28:46 Done.
+ StopTimer();
+}
+
+void LaserPointerMode::OnPointerEventObserved(
+ const ui::PointerEvent& event,
+ const gfx::Point& location_in_screen,
+ views::Widget* target) {
+ if (event.type() == ui::ET_POINTER_MOVED &&
+ event.pointer_details().pointer_type ==
+ ui::EventPointerType::POINTER_TYPE_PEN) {
+ current_mouse_location_ = location_in_screen;
+ if (enabled()) {
+ // Add the new point and notify the queue.
+ laser_pointer_view_->AddNewPoint(current_mouse_location_);
+ timer_repeat_count_ = 0;
+ timer_->Reset();
+ }
+ }
+}
+} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698