OSDN Git Service

Major refactor: Make resources access through app.
[android-x86/packages-apps-Camera2.git] / src / com / android / camera / CameraModule.java
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
17 package com.android.camera;
18
19 import android.content.Intent;
20 import android.content.res.Configuration;
21 import android.view.KeyEvent;
22 import android.view.View;
23
24 import com.android.camera.app.MediaSaver;
25
26 @Deprecated
27 public interface CameraModule {
28
29     public void init(CameraActivity activity, View frame);
30
31     public void onPreviewFocusChanged(boolean previewFocused);
32
33     public void onPauseBeforeSuper();
34
35     public void onPauseAfterSuper();
36
37     public void onResumeBeforeSuper();
38
39     public void onResumeAfterSuper();
40
41     public void onConfigurationChanged(Configuration config);
42
43     public void onStop();
44
45     public void installIntentFilter();
46
47     public void onActivityResult(int requestCode, int resultCode, Intent data);
48
49     public boolean onBackPressed();
50
51     public boolean onKeyDown(int keyCode, KeyEvent event);
52
53     public boolean onKeyUp(int keyCode, KeyEvent event);
54
55     public void onSingleTapUp(View view, int x, int y);
56
57     public void onPreviewTextureCopied();
58
59     public void onCaptureTextureCopied();
60
61     public void onUserInteraction();
62
63     public boolean updateStorageHintOnResume();
64
65     public void onOrientationChanged(int orientation);
66
67     public void onShowSwitcherPopup();
68
69     public void onMediaSaverAvailable(MediaSaver s);
70
71     public boolean arePreviewControlsVisible();
72 }