2015-08-20 23:52:57 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RECOVERY_WEAR_UI_H
|
|
|
|
#define RECOVERY_WEAR_UI_H
|
|
|
|
|
2018-05-02 00:56:05 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2016-03-08 22:18:45 +01:00
|
|
|
#include "screen_ui.h"
|
2015-08-20 23:52:57 +02:00
|
|
|
|
2016-03-08 22:18:45 +01:00
|
|
|
class WearRecoveryUI : public ScreenRecoveryUI {
|
2017-06-24 07:23:50 +02:00
|
|
|
public:
|
|
|
|
WearRecoveryUI();
|
2015-08-20 23:52:57 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
void SetStage(int current, int max) override;
|
2015-08-20 23:52:57 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
protected:
|
|
|
|
// progress bar vertical position, it's centered horizontally
|
2017-08-03 02:11:04 +02:00
|
|
|
const int kProgressBarBaseline;
|
2015-08-20 23:52:57 +02:00
|
|
|
|
2017-06-24 07:47:03 +02:00
|
|
|
// Unusable rows when displaying the recovery menu, including the lines for headers (Android
|
|
|
|
// Recovery, build id and etc) and the bottom lines that may otherwise go out of the screen.
|
2017-08-11 22:50:24 +02:00
|
|
|
const int kMenuUnusableRows;
|
2015-08-20 23:52:57 +02:00
|
|
|
|
2018-05-02 00:56:05 +02:00
|
|
|
void StartMenu(const std::vector<std::string>& headers, const std::vector<std::string>& items,
|
|
|
|
size_t initial_selection) override;
|
Add ScreenRecoveryUI::ShowMenu().
From caller's PoV, RecoveryUI::{Start,Select,End}Menu should always be
used together, i.e. to show a menu and get user's selection. This CL
provides ShowMenu() as one-stop service (which is based on
get_menu_selection() from recovery.cpp).
Also move RecoveryUI::{Start,Select,End}Menu into ScreenRecoveryUI, with
a dropped access level from public to protected.
Due to the dependency on recovery / librecovery refactoring, will add
testcases in follow-up CLs.
Test: Build and boot into recovery image. Check the menus (main menu,
'View recovery logs', 'Wipe data/factory reset').
Change-Id: Ie17aa78144871a12affd6f9075e045f76608a0ba
2018-04-20 18:24:58 +02:00
|
|
|
|
2017-06-24 07:47:03 +02:00
|
|
|
int GetProgressBaseline() const override;
|
2016-03-10 04:40:20 +01:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
void update_progress_locked() override;
|
2016-09-09 17:18:06 +02:00
|
|
|
|
2017-06-24 07:23:50 +02:00
|
|
|
private:
|
|
|
|
void draw_background_locked() override;
|
|
|
|
void draw_screen_locked() override;
|
2015-08-20 23:52:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RECOVERY_WEAR_UI_H
|