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

Side by Side Diff: mojo/services/public/cpp/view_manager/view_observer.h

Issue 790623003: Restructure public side of view_manager service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: BUILD.gn file reorderings Created 6 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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 MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_OBSERVER_H_
6 #define MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_OBSERVER_H_
7
8 #include <vector>
9
10 #include "base/basictypes.h"
11
12 #include "mojo/services/public/cpp/view_manager/view.h"
13 #include "mojo/services/public/interfaces/input_events/input_events.mojom.h"
14
15 namespace mojo {
16
17 class View;
18
19 // A note on -ing and -ed suffixes:
20 //
21 // -ing methods are called before changes are applied to the local view model.
22 // -ed methods are called after changes are applied to the local view model.
23 //
24 // If the change originated from another connection to the view manager, it's
25 // possible that the change has already been applied to the service-side model
26 // prior to being called, so for example in the case of OnViewDestroying(), it's
27 // possible the view has already been destroyed on the service side.
28
29 class ViewObserver {
30 public:
31 struct TreeChangeParams {
32 TreeChangeParams();
33 View* target;
34 View* old_parent;
35 View* new_parent;
36 View* receiver;
37 };
38
39 virtual void OnTreeChanging(const TreeChangeParams& params) {}
40 virtual void OnTreeChanged(const TreeChangeParams& params) {}
41
42 virtual void OnViewReordering(View* view,
43 View* relative_view,
44 OrderDirection direction) {}
45 virtual void OnViewReordered(View* view,
46 View* relative_view,
47 OrderDirection direction) {}
48
49 virtual void OnViewDestroying(View* view) {}
50 virtual void OnViewDestroyed(View* view) {}
51
52 virtual void OnViewBoundsChanging(View* view,
53 const Rect& old_bounds,
54 const Rect& new_bounds) {}
55 virtual void OnViewBoundsChanged(View* view,
56 const Rect& old_bounds,
57 const Rect& new_bounds) {}
58
59 virtual void OnViewFocusChanged(View* gained_focus, View* lost_focus) {}
60
61 virtual void OnViewInputEvent(View* view, const EventPtr& event) {}
62
63 virtual void OnViewVisibilityChanging(View* view) {}
64 virtual void OnViewVisibilityChanged(View* view) {}
65
66 // Invoked when this View's shared properties have changed. This can either
67 // be caused by SetSharedProperty() being called locally, or by us receiving
68 // a mojo message that this property has changed. If this property has been
69 // added, |old_data| is null. If this property was removed, |new_data| is
70 // null.
71 virtual void OnViewSharedPropertyChanged(
72 View* view,
73 const std::string& name,
74 const std::vector<uint8_t>* old_data,
75 const std::vector<uint8_t>* new_data) {}
76
77 // Invoked when SetProperty() or ClearProperty() is called on the window.
78 // |key| is either a WindowProperty<T>* (SetProperty, ClearProperty). Either
79 // way, it can simply be compared for equality with the property
80 // constant. |old| is the old property value, which must be cast to the
81 // appropriate type before use.
82 virtual void OnViewLocalPropertyChanged(
83 View* view,
84 const void* key,
85 intptr_t old) {}
86
87 virtual void OnViewEmbeddedAppDisconnected(View* view) {}
88
89 // Sent when the drawn state changes. This is only sent for the root nodes
90 // when embedded.
91 virtual void OnViewDrawnChanging(View* view) {}
92 virtual void OnViewDrawnChanged(View* view) {}
93
94 protected:
95 virtual ~ViewObserver() {}
96 };
97
98 } // namespace mojo
99
100 #endif // MOJO_SERVICES_PUBLIC_CPP_VIEW_MANAGER_VIEW_OBSERVER_H_
OLDNEW
« no previous file with comments | « mojo/services/public/cpp/view_manager/view_manager_delegate.h ('k') | mojo/services/public/cpp/view_manager/view_property.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698