1/*
2 * Copyright (C) 2013 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.app;
18
19import android.view.View;
20import android.widget.FrameLayout;
21
22import com.android.camera.filmstrip.FilmstripController;
23
24/**
25 * The interface defining app-level UI.
26 */
27public interface AppUi {
28
29    /**
30     * Initializes the UI.
31     *
32     * @param root The layout root of app UI.
33     * @param isSecureCamera Whether the app is in secure camera mode.
34     * @param isCaptureIntent Whether the app is in capture intent mode.
35     */
36    public void init(View root, boolean isSecureCamera, boolean isCaptureIntent);
37
38    /**
39     * Returns the module layout root.
40     */
41    public FrameLayout getModuleLayoutRoot();
42
43    /**
44     * Returns the filmstrip controller.
45     */
46    public FilmstripController getFilmstripController();
47}
48