mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
20 lines
658 B
C++
20 lines
658 B
C++
#include "empty_battery_window.h"
|
|
#include "global_preferences.h"
|
|
#include "i18n.h"
|
|
extern "C" {
|
|
#include <assert.h>
|
|
}
|
|
|
|
EmptyBatteryWindow::EmptyBatteryWindow() :
|
|
Window()
|
|
{
|
|
}
|
|
|
|
void EmptyBatteryWindow::drawRect(KDContext * ctx, KDRect rect) const {
|
|
ctx->fillRect(bounds(), KDColorWhite);
|
|
const char * warningMessage = I18n::translate(I18n::Message::LowBattery, GlobalPreferences::sharedGlobalPreferences()->language());
|
|
KDSize warningSize = KDFont::LargeFont->stringSize(warningMessage);
|
|
ctx->drawString(warningMessage, KDPoint((Ion::Display::Width - warningSize.width())/2, (Ion::Display::Height - warningSize.height())/2), KDFont::LargeFont);
|
|
}
|
|
|