-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInTotalityPage.hpp
30 lines (29 loc) · 940 Bytes
/
InTotalityPage.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
* This file is part of the Eclipse2017 project. It is subject to the GPLv3
* license terms in the LICENSE file found in the top-level directory of this
* distribution and at
* https://github.com/jjackowski/eclipse2017/blob/master/LICENSE.
* No part of the Eclipse2017 project, including this file, may be copied,
* modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*
* Copyright (C) 2017 Jeff Jackowski
*/
#include "Page.hpp"
class InTotalityPage : public Page {
protected:
void rightJustified(
int time,
duds::hardware::devices::displays::TextDisplayStream &tds
);
public:
virtual SelectionResponse select(const DisplayInfo &, SelectionCause);
virtual void show(
const DisplayInfo &di,
duds::hardware::devices::displays::TextDisplayStream &tds
);
virtual void update(
const DisplayInfo &di,
duds::hardware::devices::displays::TextDisplayStream &tds
);
};