home/src/ncurses.hh
2012-08-05 20:13:41 +02:00

29 lines
532 B
C++

#ifndef ncurses_hh_INCLUDED
#define ncurses_hh_INCLUDED
#include "client.hh"
namespace Kakoune
{
class NCursesClient : public Client
{
public:
NCursesClient();
~NCursesClient();
NCursesClient(const NCursesClient&) = delete;
NCursesClient& operator=(const NCursesClient&) = delete;
void draw_window(Window& window);
void print_status(const String& status);
String prompt(const String& prompt, const Context& context, Completer completer);
Key get_key();
};
}
#endif // ncurses_hh_INCLUDED