-
Notifications
You must be signed in to change notification settings - Fork 13
/
ncurses_utils.c
90 lines (77 loc) · 2.36 KB
/
ncurses_utils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
* connman-ncurses
*
* Copyright (C) 2014 Eurogiciel. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
#include <string.h>
#include <form.h>
#include <menu.h>
#include "ncurses_utils.h"
/*
* This file provide simple functions to print informations in win_footer
* and keep footer messages.
*/
extern WINDOW *win_footer;
static void print_in_footer(bool is_error, int line, const char *msg,
va_list args)
{
mvwprintw(win_footer, line, 0, (is_error ? " [ERROR] " : " [INFO] "));
vwprintw(win_footer, msg, args);
wprintw(win_footer, "\n");
wrefresh(win_footer);
}
void print_info_in_footer(bool is_error, const char* msg, ...)
{
va_list args;
va_start(args, msg);
print_in_footer(is_error, 0, msg, args);
va_end(args);
}
void print_info_in_footer2(bool is_error, const char* msg, ...)
{
va_list args;
va_start(args, msg);
print_in_footer(is_error, 1, msg, args);
va_end(args);
}
void refresh_home_msg(void)
{
print_info_in_footer(false, "'d' to disconnect, 'p' to toggle Powered"
", 'o' to toggle OfflineMode");
print_info_in_footer2(false, "'Return' for details, 'F5' to force "
"refresh, ^C to quit, 'F1' for help");
}
void refresh_services_msg(void)
{
print_info_in_footer(false, "'F5' to refresh network list, "
"'F6' to force a scan, 's' to configure");
print_info_in_footer2(false, "'r' to remove favorite, 'Esc' to get"
"back, 'F1' for help");
}
void refresh_service_config_msg(void)
{
print_info_in_footer(false, "'F5' to force refresh, "
"'F7' to submit settings");
print_info_in_footer2(false, "'Esc' to get back, 'F1' for help");
}