lyrics: lyrics area regex fix for LyricWikia
[ncmpc.git] / src / ncu.c
blobea6997e87f2c89c19b3e123006cc08d96ed140da
1 /* ncmpc (Ncurses MPD Client)
2 * (c) 2004-2010 The Music Player Daemon Project
3 * Project homepage: http://musicpd.org
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "ncu.h"
21 #include "config.h"
22 #include "ncmpc_curses.h"
24 #ifdef ENABLE_COLORS
25 #include "colors.h"
26 #endif
28 #ifdef HAVE_GETMOUSE
29 #include "options.h"
30 #endif
32 static SCREEN *ncu_screen;
34 void
35 ncu_init(void)
37 /* initialize the curses library */
38 ncu_screen = newterm(NULL, stdout, stdin);
40 /* initialize color support */
41 #ifdef ENABLE_COLORS
42 colors_start();
43 #endif
45 /* tell curses not to do NL->CR/NL on output */
46 nonl();
48 /* don't echo input */
49 noecho();
51 /* set cursor invisible */
52 curs_set(0);
54 /* enable extra keys */
55 keypad(stdscr, TRUE);
57 /* initialize mouse support */
58 #ifdef HAVE_GETMOUSE
59 if (options.enable_mouse)
60 mousemask(ALL_MOUSE_EVENTS, NULL);
61 #endif
63 refresh();
66 void
67 ncu_deinit(void)
69 endwin();
71 delscreen(ncu_screen);