Files
Upsilon/apps/apps_window.h
Léa Saviot a9f4da92c0 [code/python] Fixed the Kandinsky module in Python.
User can draw on the 320*220 drawing screen.

Change-Id: I25034b05f21aacc35608358fdb7a4d9924dd22e8
2017-11-21 17:12:38 +01:00

26 lines
570 B
C++

#ifndef APPS_WINDOW_H
#define APPS_WINDOW_H
#include <escher.h>
#include "title_bar_view.h"
class AppsWindow : public Window {
public:
AppsWindow();
void setTitle(I18n::Message title);
bool updateBatteryLevel();
bool updateIsChargingState();
bool updatePluggedState();
void refreshPreferences();
bool updateAlphaLock();
void hideTitleBarView(bool hide);
private:
int numberOfSubviews() const override;
void layoutSubviews() override;
View * subviewAtIndex(int index) override;
TitleBarView m_titleBarView;
bool m_hideTitleBarView;
};
#endif