Clean up the line editor
This commit is contained in:
parent
9fc690c4c9
commit
6b2def7531
74
nncmpp.c
74
nncmpp.c
|
@ -635,8 +635,10 @@ static struct app_context
|
||||||
// Line editor:
|
// Line editor:
|
||||||
|
|
||||||
int editor_point; ///< Caret index into line data
|
int editor_point; ///< Caret index into line data
|
||||||
ARRAY (ucs4_t, editor_line) ///< Line data
|
ucs4_t *editor_line; ///< Line data, 0-terminated
|
||||||
ARRAY (int, editor_w) ///< Codepoint widths
|
int *editor_w; ///< Codepoint widths, 0-terminated
|
||||||
|
size_t editor_len; ///< Editor length
|
||||||
|
size_t editor_alloc; ///< Editor allocated
|
||||||
void (*on_editor_changed) (void); ///< Callback on text change
|
void (*on_editor_changed) (void); ///< Callback on text change
|
||||||
void (*on_editor_end) (bool); ///< Callback on abort
|
void (*on_editor_end) (bool); ///< Callback on abort
|
||||||
|
|
||||||
|
@ -1368,7 +1370,7 @@ app_write_editor (struct row_buffer *row)
|
||||||
// This seems to work in all cases.
|
// This seems to work in all cases.
|
||||||
|
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
for (size_t i = 0; i < g.editor_line_len; i++)
|
for (size_t i = 0; i < g.editor_len; i++)
|
||||||
{
|
{
|
||||||
if (g.editor_point > (int) i)
|
if (g.editor_point > (int) i)
|
||||||
offset += g.editor_w[i];
|
offset += g.editor_w[i];
|
||||||
|
@ -1613,18 +1615,18 @@ app_editor_abort (bool status)
|
||||||
free (g.editor_w);
|
free (g.editor_w);
|
||||||
g.editor_line = NULL;
|
g.editor_line = NULL;
|
||||||
g.editor_w = NULL;
|
g.editor_w = NULL;
|
||||||
g.editor_line_alloc = 0;
|
g.editor_alloc = 0;
|
||||||
g.editor_w_alloc = 0;
|
g.editor_len = 0;
|
||||||
g.editor_line_len = 0;
|
|
||||||
g.editor_w_len = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Start the line editor; remember to fill in "change" and "abort" callbacks
|
/// Start the line editor; remember to fill in "change" and "abort" callbacks
|
||||||
static void
|
static void
|
||||||
app_editor_start (void)
|
app_editor_start (void)
|
||||||
{
|
{
|
||||||
ARRAY_INIT (g.editor_line);
|
g.editor_alloc = 16;
|
||||||
ARRAY_INIT (g.editor_w);
|
g.editor_line = xcalloc (sizeof *g.editor_line, g.editor_alloc);
|
||||||
|
g.editor_w = xcalloc (sizeof *g.editor_w, g.editor_alloc);
|
||||||
|
g.editor_len = 0;
|
||||||
g.editor_point = 0;
|
g.editor_point = 0;
|
||||||
app_invalidate ();
|
app_invalidate ();
|
||||||
}
|
}
|
||||||
|
@ -1632,6 +1634,9 @@ app_editor_start (void)
|
||||||
static void
|
static void
|
||||||
app_editor_changed (void)
|
app_editor_changed (void)
|
||||||
{
|
{
|
||||||
|
g.editor_line[g.editor_len] = 0;
|
||||||
|
g.editor_w[g.editor_len] = 0;
|
||||||
|
|
||||||
if (g.on_editor_changed)
|
if (g.on_editor_changed)
|
||||||
g.on_editor_changed ();
|
g.on_editor_changed ();
|
||||||
}
|
}
|
||||||
|
@ -1666,7 +1671,7 @@ app_editor_process_action (enum action action)
|
||||||
g.editor_point--;
|
g.editor_point--;
|
||||||
return true;
|
return true;
|
||||||
case ACTION_EDITOR_F_CHAR:
|
case ACTION_EDITOR_F_CHAR:
|
||||||
if (g.editor_point + 1 > (int) g.editor_line_len)
|
if (g.editor_point + 1 > (int) g.editor_len)
|
||||||
return false;
|
return false;
|
||||||
g.editor_point++;
|
g.editor_point++;
|
||||||
return true;
|
return true;
|
||||||
|
@ -1682,11 +1687,11 @@ app_editor_process_action (enum action action)
|
||||||
}
|
}
|
||||||
case ACTION_EDITOR_F_WORD:
|
case ACTION_EDITOR_F_WORD:
|
||||||
{
|
{
|
||||||
if (g.editor_point + 1 > (int) g.editor_line_len)
|
if (g.editor_point + 1 > (int) g.editor_len)
|
||||||
return false;
|
return false;
|
||||||
int i = g.editor_point;
|
int i = g.editor_point;
|
||||||
while (i < (int) g.editor_line_len && g.editor_line[i] != ' ') i++;
|
while (i < (int) g.editor_len && g.editor_line[i] != ' ') i++;
|
||||||
while (i < (int) g.editor_line_len && g.editor_line[i] == ' ') i++;
|
while (i < (int) g.editor_len && g.editor_line[i] == ' ') i++;
|
||||||
g.editor_point = i;
|
g.editor_point = i;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1694,26 +1699,24 @@ app_editor_process_action (enum action action)
|
||||||
g.editor_point = 0;
|
g.editor_point = 0;
|
||||||
return true;
|
return true;
|
||||||
case ACTION_EDITOR_END:
|
case ACTION_EDITOR_END:
|
||||||
g.editor_point = g.editor_line_len;
|
g.editor_point = g.editor_len;
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
case ACTION_EDITOR_B_DELETE:
|
case ACTION_EDITOR_B_DELETE:
|
||||||
if (g.editor_point < 1)
|
if (g.editor_point < 1)
|
||||||
return false;
|
return false;
|
||||||
app_editor_move (g.editor_point - 1, g.editor_point,
|
app_editor_move (g.editor_point - 1, g.editor_point,
|
||||||
g.editor_line_len - g.editor_point);
|
g.editor_len - g.editor_point);
|
||||||
g.editor_line_len--;
|
g.editor_len--;
|
||||||
g.editor_w_len--;
|
|
||||||
g.editor_point--;
|
g.editor_point--;
|
||||||
app_editor_changed ();
|
app_editor_changed ();
|
||||||
return true;
|
return true;
|
||||||
case ACTION_EDITOR_F_DELETE:
|
case ACTION_EDITOR_F_DELETE:
|
||||||
if (g.editor_point + 1 > (int) g.editor_line_len)
|
if (g.editor_point + 1 > (int) g.editor_len)
|
||||||
return false;
|
return false;
|
||||||
g.editor_line_len--;
|
g.editor_len--;
|
||||||
g.editor_w_len--;
|
|
||||||
app_editor_move (g.editor_point, g.editor_point + 1,
|
app_editor_move (g.editor_point, g.editor_point + 1,
|
||||||
g.editor_line_len - g.editor_point);
|
g.editor_len - g.editor_point);
|
||||||
app_editor_changed ();
|
app_editor_changed ();
|
||||||
return true;
|
return true;
|
||||||
case ACTION_EDITOR_B_KILL_WORD:
|
case ACTION_EDITOR_B_KILL_WORD:
|
||||||
|
@ -1726,24 +1729,20 @@ app_editor_process_action (enum action action)
|
||||||
while (i-- && g.editor_line[i] != ' ');
|
while (i-- && g.editor_line[i] != ' ');
|
||||||
i++;
|
i++;
|
||||||
|
|
||||||
app_editor_move (i, g.editor_point,
|
app_editor_move (i, g.editor_point, (g.editor_len - g.editor_point));
|
||||||
(g.editor_line_len - g.editor_point));
|
g.editor_len -= g.editor_point - i;
|
||||||
g.editor_line_len -= g.editor_point - i;
|
|
||||||
g.editor_w_len -= g.editor_point - i;
|
|
||||||
g.editor_point = i;
|
g.editor_point = i;
|
||||||
app_editor_changed ();
|
app_editor_changed ();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
case ACTION_EDITOR_B_KILL_LINE:
|
case ACTION_EDITOR_B_KILL_LINE:
|
||||||
g.editor_line_len -= g.editor_point;
|
g.editor_len -= g.editor_point;
|
||||||
g.editor_w_len -= g.editor_point;
|
app_editor_move (0, g.editor_point, g.editor_len);
|
||||||
app_editor_move (0, g.editor_point, g.editor_line_len);
|
|
||||||
g.editor_point = 0;
|
g.editor_point = 0;
|
||||||
app_editor_changed ();
|
app_editor_changed ();
|
||||||
return true;
|
return true;
|
||||||
case ACTION_EDITOR_F_KILL_LINE:
|
case ACTION_EDITOR_F_KILL_LINE:
|
||||||
g.editor_line_len = g.editor_point;
|
g.editor_len = g.editor_point;
|
||||||
g.editor_w_len = g.editor_point;
|
|
||||||
app_editor_changed ();
|
app_editor_changed ();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1752,16 +1751,21 @@ app_editor_process_action (enum action action)
|
||||||
static void
|
static void
|
||||||
app_editor_insert (ucs4_t codepoint)
|
app_editor_insert (ucs4_t codepoint)
|
||||||
{
|
{
|
||||||
ARRAY_RESERVE (g.editor_line, 1);
|
while (g.editor_alloc - g.editor_len < 2)
|
||||||
ARRAY_RESERVE (g.editor_w, 1);
|
{
|
||||||
|
g.editor_alloc <<= 1;
|
||||||
|
g.editor_line = xreallocarray
|
||||||
|
(g.editor_line, sizeof *g.editor_line, g.editor_alloc);
|
||||||
|
g.editor_w = xreallocarray
|
||||||
|
(g.editor_w, sizeof *g.editor_w, g.editor_alloc);
|
||||||
|
}
|
||||||
app_editor_move (g.editor_point + 1, g.editor_point,
|
app_editor_move (g.editor_point + 1, g.editor_point,
|
||||||
g.editor_line_len - g.editor_point);
|
g.editor_len - g.editor_point);
|
||||||
g.editor_line[g.editor_point] = codepoint;
|
g.editor_line[g.editor_point] = codepoint;
|
||||||
// FIXME: this should care about app_is_character_in_locale() as well
|
// FIXME: this should care about app_is_character_in_locale() as well
|
||||||
g.editor_w[g.editor_point] = uc_width (codepoint, locale_charset ());
|
g.editor_w[g.editor_point] = uc_width (codepoint, locale_charset ());
|
||||||
g.editor_point++;
|
g.editor_point++;
|
||||||
g.editor_line_len++;
|
g.editor_len++;
|
||||||
g.editor_w_len++;
|
|
||||||
app_editor_changed ();
|
app_editor_changed ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue