1 /*
2  * Copyright (C) 2016 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.server.wm;
18 
19 import android.graphics.Point;
20 import android.graphics.Rect;
21 import android.os.Bundle;
22 import android.os.ParcelFileDescriptor;
23 import android.os.RemoteException;
24 import android.util.MergedConfiguration;
25 import android.view.DisplayCutout;
26 import android.view.DragEvent;
27 import android.view.IWindow;
28 import android.view.InsetsSourceControl;
29 import android.view.InsetsState;
30 
31 import com.android.internal.os.IResultReceiver;
32 
33 public class TestIWindow extends IWindow.Stub {
34     @Override
executeCommand(String command, String parameters, ParcelFileDescriptor descriptor)35     public void executeCommand(String command, String parameters,
36             ParcelFileDescriptor descriptor) throws RemoteException {
37     }
38 
39     @Override
resized(Rect frame, Rect overscanInsets, Rect contentInsets, Rect visibleInsets, Rect stableInsets, Rect outsets, boolean reportDraw, MergedConfiguration mergedConfig, Rect backDropFrame, boolean forceLayout, boolean alwaysConsumeSystemBars, int displayId, DisplayCutout.ParcelableWrapper displayCutout)40     public void resized(Rect frame, Rect overscanInsets, Rect contentInsets, Rect visibleInsets,
41             Rect stableInsets, Rect outsets, boolean reportDraw, MergedConfiguration mergedConfig,
42             Rect backDropFrame, boolean forceLayout, boolean alwaysConsumeSystemBars, int displayId,
43             DisplayCutout.ParcelableWrapper displayCutout) throws RemoteException {
44     }
45 
46     @Override
locationInParentDisplayChanged(Point offset)47     public void locationInParentDisplayChanged(Point offset) throws RemoteException {
48     }
49 
50     @Override
insetsChanged(InsetsState insetsState)51     public void insetsChanged(InsetsState insetsState) throws RemoteException {
52     }
53 
54     @Override
insetsControlChanged(InsetsState insetsState, InsetsSourceControl[] activeControls)55     public void insetsControlChanged(InsetsState insetsState, InsetsSourceControl[] activeControls)
56             throws RemoteException {
57     }
58 
59     @Override
moved(int newX, int newY)60     public void moved(int newX, int newY) throws RemoteException {
61     }
62 
63     @Override
dispatchAppVisibility(boolean visible)64     public void dispatchAppVisibility(boolean visible) throws RemoteException {
65     }
66 
67     @Override
dispatchGetNewSurface()68     public void dispatchGetNewSurface() throws RemoteException {
69     }
70 
71     @Override
windowFocusChanged(boolean hasFocus, boolean inTouchMode)72     public void windowFocusChanged(boolean hasFocus, boolean inTouchMode) throws RemoteException {
73     }
74 
75     @Override
closeSystemDialogs(String reason)76     public void closeSystemDialogs(String reason) throws RemoteException {
77     }
78 
79     @Override
dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync)80     public void dispatchWallpaperOffsets(float x, float y, float xStep, float yStep, boolean sync)
81             throws RemoteException {
82     }
83 
84     @Override
dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras, boolean sync)85     public void dispatchWallpaperCommand(String action, int x, int y, int z, Bundle extras,
86             boolean sync) throws RemoteException {
87     }
88 
89     @Override
dispatchDragEvent(DragEvent event)90     public void dispatchDragEvent(DragEvent event) throws RemoteException {
91     }
92 
93     @Override
updatePointerIcon(float x, float y)94     public void updatePointerIcon(float x, float y) throws RemoteException {
95     }
96 
97     @Override
dispatchSystemUiVisibilityChanged(int seq, int globalVisibility, int localValue, int localChanges)98     public void dispatchSystemUiVisibilityChanged(int seq, int globalVisibility, int localValue,
99             int localChanges) throws RemoteException {
100     }
101 
102     @Override
dispatchWindowShown()103     public void dispatchWindowShown() throws RemoteException {
104     }
105 
106     @Override
requestAppKeyboardShortcuts(IResultReceiver receiver, int deviceId)107     public void requestAppKeyboardShortcuts(IResultReceiver receiver, int deviceId)
108             throws RemoteException {
109     }
110 
111     @Override
dispatchPointerCaptureChanged(boolean hasCapture)112     public void dispatchPointerCaptureChanged(boolean hasCapture) {
113     }
114 }
115