[apps] Display the baterry icon view on the title bar

Change-Id: I3a1f2540151f7ecbfafaead346e673f694d8c0dd
This commit is contained in:
Émilie Feral
2017-01-23 18:24:54 +01:00
parent 91efb72253
commit 51881d841c
5 changed files with 26 additions and 4 deletions

View File

@@ -13,6 +13,11 @@ void AppsWindow::setTitle(const char * title) {
m_titleBarView.setTitle(title);
}
void AppsWindow::updateBatteryLevel() {
// TODO: use Ion::Battery::level()
m_titleBarView.setChargeState(Ion::Battery::Charge::EMPTY);
}
int AppsWindow::numberOfSubviews() const {
return (m_contentView == nullptr ? 1 : 2);
}