User sequences to repaint and quit

This commit is contained in:
Keith Winstein
2011-10-13 01:16:55 -04:00
parent 5f8fe39ac2
commit 80f34faadd
5 changed files with 44 additions and 11 deletions
+5 -1
View File
@@ -26,6 +26,8 @@ private:
Network::Transport< Network::UserStream, Terminal::Complete > *network;
uint64_t last_remote_num;
bool repaint_requested, quit_sequence_started;
void main_init( void );
bool process_network_input( void );
bool process_user_input( int fd );
@@ -42,7 +44,9 @@ public:
local_framebuffer( NULL ),
overlays(),
network( NULL ),
last_remote_num( -1 )
last_remote_num( -1 ),
repaint_requested( false ),
quit_sequence_started( false )
{}
void init( void );