blob: 739b4cb1d81ce0457c3b207e98547d7cd8c42c9d [file] [log] [blame]
Tao Bao337db142015-08-20 14:52:57 -07001/*
2 * Copyright (C) 2014 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#ifndef RECOVERY_WEAR_UI_H
18#define RECOVERY_WEAR_UI_H
19
Prashant Malani7d9fd962016-03-08 13:18:45 -080020#include "screen_ui.h"
Tao Bao337db142015-08-20 14:52:57 -070021
Prashant Malani7d9fd962016-03-08 13:18:45 -080022class WearRecoveryUI : public ScreenRecoveryUI {
Tao Bao5d2e3bd2017-06-23 22:23:50 -070023 public:
24 WearRecoveryUI();
Tao Bao337db142015-08-20 14:52:57 -070025
Tao Bao5d2e3bd2017-06-23 22:23:50 -070026 void SetStage(int current, int max) override;
Tao Bao337db142015-08-20 14:52:57 -070027
Tao Bao5d2e3bd2017-06-23 22:23:50 -070028 // menu display
29 void StartMenu(const char* const* headers, const char* const* items,
30 int initial_selection) override;
31 int SelectMenu(int sel) override;
Tao Bao337db142015-08-20 14:52:57 -070032
Tao Bao5d2e3bd2017-06-23 22:23:50 -070033 protected:
34 // progress bar vertical position, it's centered horizontally
Tao Bao0470cee2017-08-02 17:11:04 -070035 const int kProgressBarBaseline;
Tao Bao337db142015-08-20 14:52:57 -070036
Tao Bao99b2d772017-06-23 22:47:03 -070037 // Unusable rows when displaying the recovery menu, including the lines for headers (Android
38 // Recovery, build id and etc) and the bottom lines that may otherwise go out of the screen.
Tao Baoeea3af32017-08-11 13:50:24 -070039 const int kMenuUnusableRows;
Tao Bao337db142015-08-20 14:52:57 -070040
Tao Bao99b2d772017-06-23 22:47:03 -070041 int GetProgressBaseline() const override;
Tao Bao337db142015-08-20 14:52:57 -070042
Tao Bao5d2e3bd2017-06-23 22:23:50 -070043 void update_progress_locked() override;
Damien Bargiacchiad8b5a62016-09-09 08:18:06 -070044
Tao Bao5d2e3bd2017-06-23 22:23:50 -070045 private:
Tao Bao5d2e3bd2017-06-23 22:23:50 -070046 void draw_background_locked() override;
47 void draw_screen_locked() override;
Damien Bargiacchi5e7cfb92016-08-24 18:28:43 -070048
Tao Bao79127102017-08-30 15:23:34 -070049 int menu_start, menu_end;
Tao Bao337db142015-08-20 14:52:57 -070050};
51
52#endif // RECOVERY_WEAR_UI_H