1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -05:00

Inlined ui_handle_special_keys

This commit is contained in:
James Booth 2015-01-15 00:02:42 +00:00
parent 3984c660b6
commit db9a2cf0ab
3 changed files with 6 additions and 15 deletions
src/ui
tests/ui

@ -179,6 +179,12 @@ ui_get_char(char *input, int *size)
{ {
int result = 0; int result = 0;
wint_t ch = inp_get_char(input, size, &result); wint_t ch = inp_get_char(input, size, &result);
_win_handle_switch(ch);
_win_handle_page(ch, result);
if (ch == KEY_RESIZE) {
ui_resize();
}
if (ch != ERR && result != ERR) { if (ch != ERR && result != ERR) {
ui_reset_idle_time(); ui_reset_idle_time();
ui_input_nonblocking(TRUE); ui_input_nonblocking(TRUE);
@ -186,8 +192,6 @@ ui_get_char(char *input, int *size)
ui_input_nonblocking(FALSE); ui_input_nonblocking(FALSE);
} }
ui_handle_special_keys(ch, result);
return ch; return ch;
} }
@ -704,16 +708,6 @@ ui_disconnected(void)
ui_hide_roster(); ui_hide_roster();
} }
void
ui_handle_special_keys(const wint_t ch, const int result)
{
_win_handle_switch(ch);
_win_handle_page(ch, result);
if (ch == KEY_RESIZE) {
ui_resize();
}
}
void void
ui_close_connected_win(int index) ui_close_connected_win(int index)
{ {

@ -61,7 +61,6 @@ void ui_close(void);
void ui_redraw(void); void ui_redraw(void);
void ui_resize(void); void ui_resize(void);
GSList* ui_get_chat_recipients(void); GSList* ui_get_chat_recipients(void);
void ui_handle_special_keys(const wint_t ch, const int result);
gboolean ui_switch_win(const int i); gboolean ui_switch_win(const int i);
void ui_next_win(void); void ui_next_win(void);
void ui_previous_win(void); void ui_previous_win(void);

@ -64,8 +64,6 @@ GSList* ui_get_chat_recipients(void)
return NULL; return NULL;
} }
void ui_handle_special_keys(const wint_t ch, const int result) {}
gboolean ui_switch_win(const int i) gboolean ui_switch_win(const int i)
{ {
check_expected(i); check_expected(i);