mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Close win now has return value
This commit is contained in:
parent
1cc22c23f9
commit
2acf15de0d
@ -177,11 +177,8 @@ static int _cmd_msg(char *inp)
|
||||
|
||||
static int _cmd_close(char *inp)
|
||||
{
|
||||
if (win_in_chat()) {
|
||||
win_close_win();
|
||||
} else {
|
||||
if (!win_close_win())
|
||||
cons_bad_command(inp);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
15
windows.c
15
windows.c
@ -28,8 +28,13 @@
|
||||
|
||||
#define CONS_WIN_TITLE "_cons"
|
||||
|
||||
// holds console at index 0 and chat wins 1 through to 9
|
||||
static struct prof_win _wins[10];
|
||||
|
||||
// the window currently being displayed
|
||||
static int _curr_prof_win = 0;
|
||||
|
||||
// shortcut pointer to console window
|
||||
static WINDOW * _cons_win = NULL;
|
||||
|
||||
static void _create_windows(void);
|
||||
@ -83,8 +88,9 @@ void gui_close(void)
|
||||
endwin();
|
||||
}
|
||||
|
||||
void win_close_win(void)
|
||||
int win_close_win(void)
|
||||
{
|
||||
if (win_in_chat()) {
|
||||
// reset the chat win to unused
|
||||
strcpy(_wins[_curr_prof_win].from, "");
|
||||
wclear(_wins[_curr_prof_win].win);
|
||||
@ -95,6 +101,13 @@ void win_close_win(void)
|
||||
// go back to console window
|
||||
_curr_prof_win = 0;
|
||||
title_bar_title();
|
||||
|
||||
// success
|
||||
return 1;
|
||||
} else {
|
||||
// didn't close anything
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
int win_in_chat(void)
|
||||
|
Loading…
Reference in New Issue
Block a user