home/src/remote.hh
Maxime Coste 79d28e68dc Refactor EventManager
Watching a file descriptor is now done using a FDWatcher object
2013-01-10 19:10:42 +01:00

34 lines
598 B
C++

#ifndef remote_hh_INCLUDED
#define remote_hh_INCLUDED
#include "user_interface.hh"
#include "display_buffer.hh"
#include "event_manager.hh"
namespace Kakoune
{
struct peer_disconnected {};
void handle_remote(FDWatcher& event);
class RemoteClient
{
public:
RemoteClient(int socket, UserInterface* ui,
const String& init_command);
void process_next_message();
void write_next_key();
private:
int m_socket;
std::unique_ptr<UserInterface> m_ui;
DisplayCoord m_dimensions;
};
}
#endif // remote_hh_INCLUDED