18872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb/*
28872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb * Copyright (C) 2011 The Android Open Source Project
38872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb *
48872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb * Licensed under the Apache License, Version 2.0 (the "License");
58872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb * you may not use this file except in compliance with the License.
68872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb * You may obtain a copy of the License at
78872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb *
88872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb *      http://www.apache.org/licenses/LICENSE-2.0
98872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb *
108872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb * Unless required by applicable law or agreed to in writing, software
118872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb * distributed under the License is distributed on an "AS IS" BASIS,
128872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
138872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb * See the License for the specific language governing permissions and
148872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb * limitations under the License.
158872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb */
168872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb
178872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolbpackage com.android.camera.ui;
188872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb
198872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolbpublic interface OnIndicatorEventListener {
208872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb    public static int EVENT_ENTER_SECOND_LEVEL_INDICATOR_BAR = 0;
218872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb    public static int EVENT_LEAVE_SECOND_LEVEL_INDICATOR_BAR = 1;
228872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb    public static int EVENT_ENTER_ZOOM_CONTROL = 2;
238872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb    public static int EVENT_LEAVE_ZOOM_CONTROL = 3;
248872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb    void onIndicatorEvent(int event);
258872c23e739de38d74f04a8c852ebb5199c905f6Michael Kolb}
26