2018-10-05 01:48:59 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Conky, a system monitor, based on torsmo
|
|
|
|
*
|
|
|
|
* Please see COPYING for details
|
|
|
|
*
|
2018-10-18 22:51:08 +00:00
|
|
|
* Copyright (C) 2018 François Revol et al.
|
|
|
|
* Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
|
2021-10-25 14:26:37 +00:00
|
|
|
* Copyright (c) 2005-2021 Brenden Matthews, Philip Kovacs, et. al.
|
2018-10-18 22:51:08 +00:00
|
|
|
* (see AUTHORS)
|
|
|
|
* All rights reserved.
|
2018-10-05 01:48:59 +00:00
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "conky.h"
|
|
|
|
#include "display-ncurses.hh"
|
|
|
|
#include "nc.h"
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <unordered_map>
|
2018-10-05 03:46:50 +00:00
|
|
|
#ifdef BUILD_NCURSES
|
|
|
|
#include <ncurses.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef BUILD_NCURSES
|
|
|
|
extern WINDOW *ncurses_window;
|
|
|
|
#endif
|
2018-10-05 01:48:59 +00:00
|
|
|
|
|
|
|
namespace conky {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
#ifdef BUILD_NCURSES
|
|
|
|
conky::display_output_ncurses ncurses_output;
|
|
|
|
#else
|
|
|
|
conky::disabled_display_output ncurses_output_disabled("ncurses",
|
|
|
|
"BUILD_NCURSES");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2018-10-05 03:46:50 +00:00
|
|
|
// namespace priv {
|
|
|
|
|
|
|
|
//} // namespace priv
|
2018-10-05 01:48:59 +00:00
|
|
|
|
|
|
|
#ifdef BUILD_NCURSES
|
|
|
|
|
|
|
|
display_output_ncurses::display_output_ncurses()
|
|
|
|
: display_output_console("ncurses") {
|
|
|
|
priority = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool display_output_ncurses::detect() {
|
|
|
|
if (out_to_ncurses.get(*state)) {
|
2020-12-26 17:49:30 +00:00
|
|
|
DBGP2("Display output '%s' enabled in config.", name.c_str());
|
2018-10-05 01:48:59 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-10-05 03:46:50 +00:00
|
|
|
bool display_output_ncurses::initialize() {
|
2018-10-18 22:54:55 +00:00
|
|
|
is_active = ncurses_window != nullptr;
|
|
|
|
return is_active;
|
2018-10-05 03:46:50 +00:00
|
|
|
}
|
2018-10-05 01:48:59 +00:00
|
|
|
|
|
|
|
bool display_output_ncurses::shutdown() { return false; }
|
|
|
|
|
2018-10-18 22:54:55 +00:00
|
|
|
void display_output_ncurses::set_foreground_color(long c) {
|
2018-10-05 03:46:50 +00:00
|
|
|
attron(COLOR_PAIR(c));
|
|
|
|
}
|
|
|
|
|
2018-10-18 22:54:55 +00:00
|
|
|
void display_output_ncurses::begin_draw_text() {
|
2018-10-05 03:46:50 +00:00
|
|
|
init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
|
|
|
|
attron(COLOR_PAIR(COLOR_WHITE));
|
|
|
|
}
|
|
|
|
|
2018-10-18 22:54:55 +00:00
|
|
|
void display_output_ncurses::end_draw_text() {}
|
2018-10-05 03:46:50 +00:00
|
|
|
|
2021-10-25 18:17:19 +00:00
|
|
|
void display_output_ncurses::draw_string(const char *s, int) {
|
2018-10-05 03:46:50 +00:00
|
|
|
printw("%s", s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void display_output_ncurses::line_inner_done() { printw("\n"); }
|
|
|
|
|
|
|
|
int display_output_ncurses::getx() {
|
|
|
|
int x, y;
|
|
|
|
getyx(ncurses_window, y, x);
|
2021-10-25 18:17:19 +00:00
|
|
|
(void)y;
|
2018-10-05 03:46:50 +00:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
int display_output_ncurses::gety() {
|
|
|
|
int x, y;
|
|
|
|
getyx(ncurses_window, y, x);
|
2021-10-25 18:17:19 +00:00
|
|
|
(void)x;
|
2018-10-05 03:46:50 +00:00
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
2018-10-18 22:54:55 +00:00
|
|
|
void display_output_ncurses::gotox(int x) {
|
2018-10-05 03:46:50 +00:00
|
|
|
int y, old_x;
|
|
|
|
getyx(ncurses_window, y, old_x);
|
2021-10-25 18:17:19 +00:00
|
|
|
(void)old_x;
|
2018-10-05 03:46:50 +00:00
|
|
|
move(y, x);
|
|
|
|
}
|
|
|
|
|
2018-10-18 22:54:55 +00:00
|
|
|
void display_output_ncurses::gotoy(int y) {
|
2018-10-05 03:46:50 +00:00
|
|
|
int x, old_y;
|
|
|
|
getyx(ncurses_window, old_y, x);
|
2021-10-25 18:17:19 +00:00
|
|
|
(void)old_y;
|
2018-10-05 03:46:50 +00:00
|
|
|
move(y, x);
|
|
|
|
}
|
|
|
|
|
2018-10-18 22:54:55 +00:00
|
|
|
void display_output_ncurses::gotoxy(int x, int y) { move(y, x); }
|
2018-10-05 03:46:50 +00:00
|
|
|
|
2018-10-18 22:54:55 +00:00
|
|
|
void display_output_ncurses::flush() {
|
2018-10-05 03:46:50 +00:00
|
|
|
refresh();
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
2018-10-05 01:48:59 +00:00
|
|
|
#endif /* BUILD_NCURSES */
|
|
|
|
|
|
|
|
} // namespace conky
|