blob: 84bfd6819fec3fec065d216ea4f380fff2355c46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include "ChatScreen.h"
class InBedChatScreen : public ChatScreen
{
private:
static const int WAKE_UP_BUTTON = 1;
public:
virtual void init();
virtual void removed();
protected:
virtual void keyPressed(wchar_t ch, int eventKey);
public:
virtual void render(int xm, int ym, float a);
protected:
virtual void buttonClicked(Button *button);
private:
void sendWakeUp();
};
|