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

Unified Diff: ash/common/wm/wm_event.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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
« no previous file with comments | « ash/common/wm/window_state_util.cc ('k') | ash/common/wm/wm_event.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/wm/wm_event.h
diff --git a/ash/common/wm/wm_event.h b/ash/common/wm/wm_event.h
deleted file mode 100644
index e26ba78d46a83d1b66ef46185323a2a90b672cfa..0000000000000000000000000000000000000000
--- a/ash/common/wm/wm_event.h
+++ /dev/null
@@ -1,129 +0,0 @@
-// Copyright 2014 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_COMMON_WM_WM_EVENT_H_
-#define ASH_COMMON_WM_WM_EVENT_H_
-
-#include "ash/ash_export.h"
-#include "ash/common/wm/wm_types.h"
-#include "base/macros.h"
-#include "ui/gfx/geometry/rect.h"
-
-namespace ash {
-namespace wm {
-
-// WMEventType defines a set of operations that can change the
-// window's state type and bounds.
-enum WMEventType {
- // Following events are the request to become corresponding state.
- // Note that this does not mean the window will be in corresponding
- // state and the request may not be fullfilled.
-
- // NORMAL is used as a restore operation with a few exceptions.
- WM_EVENT_NORMAL,
- WM_EVENT_MAXIMIZE,
- WM_EVENT_MINIMIZE,
- WM_EVENT_FULLSCREEN,
- WM_EVENT_SNAP_LEFT,
- WM_EVENT_SNAP_RIGHT,
- WM_EVENT_DOCK,
-
- // A window is requested to be the given bounds. The request may or
- // may not be fulfilled depending on the requested bounds and window's
- // state. This will not change the window state type.
- WM_EVENT_SET_BOUNDS,
-
- // Following events are compond events which may lead to different
- // states depending on the current state.
-
- // A user requested to toggle maximized state by double clicking window
- // header.
- WM_EVENT_TOGGLE_MAXIMIZE_CAPTION,
-
- // A user requested to toggle maximized state using shortcut.
- WM_EVENT_TOGGLE_MAXIMIZE,
-
- // A user requested to toggle vertical maximize by double clicking
- // top/bottom edge.
- WM_EVENT_TOGGLE_VERTICAL_MAXIMIZE,
-
- // A user requested to toggle horizontal maximize by double clicking
- // left/right edge.
- WM_EVENT_TOGGLE_HORIZONTAL_MAXIMIZE,
-
- // A user requested to toggle fullscreen state.
- WM_EVENT_TOGGLE_FULLSCREEN,
-
- // A user requested a cycle of dock and snap left.
- // The way this event is processed is the current window state is used as
- // the starting state. Assuming normal window start state; if the window can
- // be snapped left, snap it; otherwise progress to next state. If the window
- // can be docked left, dock it; otherwise progress to next state. If the
- // window can be restored; and this isn't the entry condition restore it;
- // otherwise apply the bounce animation to the window.
- WM_EVENT_CYCLE_SNAP_DOCK_LEFT,
-
- // A user requested a cycle of dock and snap right.
- // See decription of WM_EVENT_CYCLE_SNAP_DOCK_LEFT.
- WM_EVENT_CYCLE_SNAP_DOCK_RIGHT,
-
- // A user requested to center a window.
- WM_EVENT_CENTER,
-
- // TODO(oshima): Investigate if this can be removed from ash.
- // Widget requested to show in inactive state.
- WM_EVENT_SHOW_INACTIVE,
-
- // Following events are generated when the workspace envrionment has changed.
- // The window's state type will not be changed by these events.
-
- // The window is added to the workspace, either as a new window, due to
- // display disconnection or dragging.
- WM_EVENT_ADDED_TO_WORKSPACE,
-
- // Bounds of the display has changed.
- WM_EVENT_DISPLAY_BOUNDS_CHANGED,
-
- // Bounds of the work area has changed. This will not occur when the work
- // area has changed as a result of DISPLAY_BOUNDS_CHANGED.
- WM_EVENT_WORKAREA_BOUNDS_CHANGED,
-
- // A user requested to pin a window.
- WM_EVENT_PIN,
-
- // A user requested to pin a window for a trusted application. This is similar
- // WM_EVENT_PIN but does not allow user to exit the mode by shortcut key.
- WM_EVENT_TRUSTED_PIN,
-};
-
-class ASH_EXPORT WMEvent {
- public:
- explicit WMEvent(WMEventType type);
- virtual ~WMEvent();
-
- WMEventType type() const { return type_; }
-
- private:
- WMEventType type_;
- DISALLOW_COPY_AND_ASSIGN(WMEvent);
-};
-
-// An WMEvent to request new bounds for the window.
-class ASH_EXPORT SetBoundsEvent : public WMEvent {
- public:
- SetBoundsEvent(WMEventType type, const gfx::Rect& requested_bounds);
- ~SetBoundsEvent() override;
-
- const gfx::Rect& requested_bounds() const { return requested_bounds_; }
-
- private:
- gfx::Rect requested_bounds_;
-
- DISALLOW_COPY_AND_ASSIGN(SetBoundsEvent);
-};
-
-} // namespace wm
-} // namespace ash
-
-#endif // ASH_COMMON_WM_WM_EVENT_H_
« no previous file with comments | « ash/common/wm/window_state_util.cc ('k') | ash/common/wm/wm_event.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698