Reorder methods

This commit is contained in:
Leroy Hopson 2023-01-21 10:37:26 +13:00
parent 754a20b1c3
commit 9c7c5e1c17
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA
2 changed files with 231 additions and 230 deletions

View file

@ -60,14 +60,14 @@ public:
void set_blink_enabled(bool value);
bool get_blink_enabled();
double blink_time_on = 0.6;
void set_blink_time_on(double value);
double get_blink_time_on();
double blink_time_off = 0.3;
void set_blink_time_off(double value);
double get_blink_time_off();
double blink_time_on = 0.6;
void set_blink_time_on(double value);
double get_blink_time_on();
void clear();
String copy_all();
String copy_selection();
@ -151,7 +151,6 @@ private:
void _draw_foreground(int row, int col, char *ch, const tsm_screen_attr *attr,
Color fgcol);
ColorPair _get_cell_colors(const tsm_screen_attr *attr);
void _handle_key_input(Ref<InputEventKey> event);
void _handle_mouse_wheel(Ref<InputEventMouseButton> event);
void _handle_selection(Ref<InputEventMouse> event);