1 /* 2 * Copyright (C) 2009 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 android.service.wallpaper; 18 19 import android.app.ILocalWallpaperColorConsumer; 20 import android.app.WallpaperColors; 21 import android.graphics.Rect; 22 import android.graphics.RectF; 23 import android.view.MotionEvent; 24 import android.view.SurfaceControl; 25 import android.os.Bundle; 26 27 /** 28 * @hide 29 */ 30 interface IWallpaperEngine { setDesiredSize(int width, int height)31 oneway void setDesiredSize(int width, int height); setDisplayPadding(in Rect padding)32 oneway void setDisplayPadding(in Rect padding); 33 @UnsupportedAppUsage setVisibility(boolean visible)34 oneway void setVisibility(boolean visible); setInAmbientMode(boolean inAmbientDisplay, long animationDuration)35 oneway void setInAmbientMode(boolean inAmbientDisplay, long animationDuration); 36 @UnsupportedAppUsage dispatchPointer(in MotionEvent event)37 oneway void dispatchPointer(in MotionEvent event); 38 @UnsupportedAppUsage dispatchWallpaperCommand(String action, int x, int y, int z, in Bundle extras)39 oneway void dispatchWallpaperCommand(String action, int x, int y, 40 int z, in Bundle extras); requestWallpaperColors()41 oneway void requestWallpaperColors(); 42 @UnsupportedAppUsage destroy()43 oneway void destroy(); setZoomOut(float scale)44 oneway void setZoomOut(float scale); scalePreview(in Rect positionInWindow)45 oneway void scalePreview(in Rect positionInWindow); removeLocalColorsAreas(in List<RectF> regions)46 oneway void removeLocalColorsAreas(in List<RectF> regions); addLocalColorsAreas(in List<RectF> regions)47 oneway void addLocalColorsAreas(in List<RectF> regions); mirrorSurfaceControl()48 SurfaceControl mirrorSurfaceControl(); 49 } 50