CameraModule.java revision d6954f337e20365fc24ecffdd6f30e17c6b31eff
1/* 2 * Copyright (C) 2012 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 17package com.android.camera; 18 19import android.content.Intent; 20import android.content.res.Configuration; 21import android.view.KeyEvent; 22import android.view.MotionEvent; 23import android.view.View; 24 25public interface CameraModule { 26 27 public void init(CameraActivity activity, View frame, boolean reuseScreenNail); 28 29 public void onFullScreenChanged(boolean full); 30 31 public void onPauseBeforeSuper(); 32 33 public void onPauseAfterSuper(); 34 35 public void onResumeBeforeSuper(); 36 37 public void onResumeAfterSuper(); 38 39 public void onConfigurationChanged(Configuration config); 40 41 public void onStop(); 42 43 public void installIntentFilter(); 44 45 public void onActivityResult(int requestCode, int resultCode, Intent data); 46 47 public boolean onBackPressed(); 48 49 public boolean onKeyDown(int keyCode, KeyEvent event); 50 51 public boolean onKeyUp(int keyCode, KeyEvent event); 52 53 public void onSingleTapUp(View view, int x, int y); 54 55 public boolean dispatchTouchEvent(MotionEvent m); 56 57 public void onPreviewTextureCopied(); 58 59 public void onCaptureTextureCopied(); 60 61 public void onUserInteraction(); 62 63 public boolean updateStorageHintOnResume(); 64 65 public void updateCameraAppView(); 66 67 public boolean needsSwitcher(); 68 69 public boolean needsPieMenu(); 70 71 public void onOrientationChanged(int orientation); 72 73 public void onShowSwitcherPopup(); 74 75 public void onMediaSaveServiceConnected(MediaSaveService s); 76} 77