mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-07-05 13:15:32 +02:00
parent
fae28006cf
commit
57c1c3524d
3 changed files with 92 additions and 6 deletions
|
@ -29,7 +29,6 @@ private:
|
|||
static void _populate_key_list();
|
||||
static uint32_t mapkey(std::pair<int64_t, int64_t> key);
|
||||
|
||||
Vector2 cell_size;
|
||||
std::map<int, Color> palette = {};
|
||||
std::map<String, Ref<Font>> fontmap = {};
|
||||
|
||||
|
@ -59,6 +58,10 @@ public:
|
|||
void sb_up(int num);
|
||||
void sb_down(int num);
|
||||
|
||||
void start_selection(Vector2 position);
|
||||
void select_to_pointer(Vector2 position);
|
||||
void reset_selection();
|
||||
|
||||
enum UpdateMode {
|
||||
DISABLED,
|
||||
AUTO,
|
||||
|
@ -66,6 +69,7 @@ public:
|
|||
ALL_NEXT_FRAME,
|
||||
};
|
||||
|
||||
Vector2 cell_size;
|
||||
int rows;
|
||||
int cols;
|
||||
int update_mode;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue