| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_MUS_VIEW_TREE_HOST_IMPL_H_ | |
| 6 #define COMPONENTS_MUS_VIEW_TREE_HOST_IMPL_H_ | |
| 7 | |
| 8 #include "base/memory/scoped_ptr.h" | |
| 9 #include "components/mus/display_manager.h" | |
| 10 #include "components/mus/event_dispatcher.h" | |
| 11 #include "components/mus/focus_controller_delegate.h" | |
| 12 #include "components/mus/public/cpp/types.h" | |
| 13 #include "components/mus/public/interfaces/view_tree_host.mojom.h" | |
| 14 #include "components/mus/server_view.h" | |
| 15 | |
| 16 namespace cc { | |
| 17 class SurfaceManager; | |
| 18 } | |
| 19 | |
| 20 namespace mus { | |
| 21 class SurfacesScheduler; | |
| 22 } | |
| 23 | |
| 24 namespace mus { | |
| 25 | |
| 26 class ConnectionManager; | |
| 27 class FocusController; | |
| 28 class ViewTreeHostDelegate; | |
| 29 class ViewTreeImpl; | |
| 30 | |
| 31 // ViewTreeHostImpl is an implementation of the ViewTreeHost interface. | |
| 32 // It serves as a top level root view for a window. Its lifetime is managed by | |
| 33 // ConnectionManager. If the connection to the client breaks or if the user | |
| 34 // closes the associated window, then this object and related state will be | |
| 35 // deleted. | |
| 36 class ViewTreeHostImpl : public DisplayManagerDelegate, | |
| 37 public mojo::ViewTreeHost, | |
| 38 public FocusControllerDelegate { | |
| 39 public: | |
| 40 // TODO(fsamuel): All these parameters are just plumbing for creating | |
| 41 // DisplayManagers. We should probably just store these common parameters | |
| 42 // in the DisplayManagerFactory and pass them along on DisplayManager::Create. | |
| 43 ViewTreeHostImpl(mojo::ViewTreeHostClientPtr client, | |
| 44 ConnectionManager* connection_manager, | |
| 45 mojo::ApplicationImpl* app_impl, | |
| 46 const scoped_refptr<GpuState>& gpu_state, | |
| 47 const scoped_refptr<SurfacesState>& surfaces_state); | |
| 48 ~ViewTreeHostImpl() override; | |
| 49 | |
| 50 // Initializes state that depends on the existence of a ViewTreeHostImpl. | |
| 51 void Init(ViewTreeHostDelegate* delegate); | |
| 52 | |
| 53 ViewTreeImpl* GetViewTree(); | |
| 54 | |
| 55 mojo::ViewTreeHostClient* client() const { return client_.get(); } | |
| 56 | |
| 57 cc::SurfaceId surface_id() const { return surface_id_; } | |
| 58 | |
| 59 // Returns whether |view| is a descendant of this root but not itself a | |
| 60 // root view. | |
| 61 bool IsViewAttachedToRoot(const ServerView* view) const; | |
| 62 | |
| 63 // Schedules a paint for the specified region in the coordinates of |view| if | |
| 64 // the |view| is in this viewport. Returns whether |view| is in the viewport. | |
| 65 bool SchedulePaintIfInViewport(const ServerView* view, | |
| 66 const gfx::Rect& bounds); | |
| 67 | |
| 68 // Returns the metrics for this viewport. | |
| 69 const mojo::ViewportMetrics& GetViewportMetrics() const; | |
| 70 | |
| 71 ConnectionManager* connection_manager() { return connection_manager_; } | |
| 72 | |
| 73 // Returns the root ServerView of this viewport. | |
| 74 ServerView* root_view() { return root_.get(); } | |
| 75 const ServerView* root_view() const { return root_.get(); } | |
| 76 | |
| 77 void SetFocusedView(ServerView* view); | |
| 78 ServerView* GetFocusedView(); | |
| 79 void DestroyFocusController(); | |
| 80 | |
| 81 void UpdateTextInputState(ServerView* view, const ui::TextInputState& state); | |
| 82 void SetImeVisibility(ServerView* view, bool visible); | |
| 83 | |
| 84 void OnAccelerator(uint32_t accelerator_id, mojo::EventPtr event); | |
| 85 void DispatchInputEventToView(ServerView* target, mojo::EventPtr event); | |
| 86 | |
| 87 // ViewTreeHost: | |
| 88 void SetSize(mojo::SizePtr size) override; | |
| 89 void SetTitle(const mojo::String& title) override; | |
| 90 void AddAccelerator(uint32_t id, | |
| 91 mojo::KeyboardCode keyboard_code, | |
| 92 mojo::EventFlags flags) override; | |
| 93 void RemoveAccelerator(uint32_t id) override; | |
| 94 | |
| 95 private: | |
| 96 void OnClientClosed(); | |
| 97 | |
| 98 // DisplayManagerDelegate: | |
| 99 ServerView* GetRootView() override; | |
| 100 void OnEvent(mojo::EventPtr event) override; | |
| 101 void OnDisplayClosed() override; | |
| 102 void OnViewportMetricsChanged( | |
| 103 const mojo::ViewportMetrics& old_metrics, | |
| 104 const mojo::ViewportMetrics& new_metrics) override; | |
| 105 void OnTopLevelSurfaceChanged(cc::SurfaceId surface_id) override; | |
| 106 | |
| 107 // FocusControllerDelegate: | |
| 108 void OnFocusChanged(ServerView* old_focused_view, | |
| 109 ServerView* new_focused_view) override; | |
| 110 | |
| 111 ViewTreeHostDelegate* delegate_; | |
| 112 ConnectionManager* const connection_manager_; | |
| 113 mojo::ViewTreeHostClientPtr client_; | |
| 114 EventDispatcher event_dispatcher_; | |
| 115 scoped_ptr<ServerView> root_; | |
| 116 scoped_ptr<DisplayManager> display_manager_; | |
| 117 scoped_ptr<FocusController> focus_controller_; | |
| 118 cc::SurfaceId surface_id_; | |
| 119 | |
| 120 DISALLOW_COPY_AND_ASSIGN(ViewTreeHostImpl); | |
| 121 }; | |
| 122 | |
| 123 } // namespace mus | |
| 124 | |
| 125 #endif // COMPONENTS_MUS_VIEW_TREE_HOST_IMPL_H_ | |
| OLD | NEW |