Code

screen: move code to screen_init.c
[ncmpc.git] / src / screen.c
index 299d27eb4fe03a896478f93a5cea26cbceac4850..6d2610ad1770e461bd72a503ada7a016407bec3e 100644 (file)
 #include "screen.h"
 #include "screen_interface.h"
 #include "screen_list.h"
-#include "screen_utils.h"
 #include "screen_status.h"
 #include "config.h"
 #include "i18n.h"
 #include "charset.h"
 #include "mpdclient.h"
-#include "utils.h"
 #include "options.h"
-#include "colors.h"
 #include "player_command.h"
 #include "screen_help.h"
 #include "screen_queue.h"
 #include <unistd.h>
 #include <string.h>
 #include <time.h>
-#include <locale.h>
-
-#ifndef NCMPC_MINI
-/** welcome message time [s] */
-static const GTime SCREEN_WELCOME_TIME = 10;
-#endif
-
-/* minimum window size */
-static const unsigned SCREEN_MIN_COLS = 14;
-static const unsigned SCREEN_MIN_ROWS = 5;
 
 /* screens */
 
@@ -143,145 +130,6 @@ screen_next_mode(struct mpdclient *c, int offset)
                screen_switch(sf, c);
 }
 
-void
-screen_exit(void)
-{
-       if (screen.current_page->close != NULL)
-               screen.current_page->close();
-
-       screen_list_exit();
-
-       string_list_free(screen.find_history);
-       g_free(screen.buf);
-       g_free(screen.findbuf);
-
-       title_bar_deinit(&screen.title_bar);
-       delwin(screen.main_window.w);
-       progress_bar_deinit(&screen.progress_bar);
-       status_bar_deinit(&screen.status_bar);
-
-#ifndef NCMPC_MINI
-       if (screen.welcome_source_id != 0)
-               g_source_remove(screen.welcome_source_id);
-#endif
-}
-
-void
-screen_resize(struct mpdclient *c)
-{
-       const unsigned cols = COLS, rows = LINES;
-       if (cols < SCREEN_MIN_COLS || rows < SCREEN_MIN_ROWS) {
-               screen_exit();
-               fprintf(stderr, "%s\n", _("Error: Screen too small"));
-               exit(EXIT_FAILURE);
-       }
-
-#ifdef PDCURSES
-       resize_term(rows, cols);
-#else 
-       resizeterm(rows, cols);
-#endif
-
-       title_bar_resize(&screen.title_bar, cols);
-
-       /* main window */
-       screen.main_window.cols = cols;
-       screen.main_window.rows = rows - 4;
-       wresize(screen.main_window.w, screen.main_window.rows, cols);
-
-       /* progress window */
-       progress_bar_resize(&screen.progress_bar, cols, rows - 2, 0);
-
-       /* status window */
-       status_bar_resize(&screen.status_bar, cols, rows - 1, 0);
-
-       screen.buf_size = cols;
-       g_free(screen.buf);
-       screen.buf = g_malloc(cols);
-
-       /* resize all screens */
-       screen_list_resize(screen.main_window.cols, screen.main_window.rows);
-
-       /* ? - without this the cursor becomes visible with aterm & Eterm */
-       curs_set(1);
-       curs_set(0);
-
-       screen_paint(c, true);
-}
-
-#ifndef NCMPC_MINI
-static gboolean
-welcome_timer_callback(gpointer data)
-{
-       struct mpdclient *c = data;
-
-       screen.welcome_source_id = 0;
-
-       paint_top_window(c);
-       doupdate();
-
-       return false;
-}
-#endif
-
-void
-screen_init(struct mpdclient *c)
-{
-       const unsigned cols = COLS, rows = LINES;
-       if (cols < SCREEN_MIN_COLS || rows < SCREEN_MIN_ROWS) {
-               fprintf(stderr, "%s\n", _("Error: Screen too small"));
-               exit(EXIT_FAILURE);
-       }
-
-       screen.buf = g_malloc(cols);
-       screen.buf_size = cols;
-       screen.findbuf = NULL;
-
-#ifndef NCMPC_MINI
-       if (options.welcome_screen_list)
-               screen.welcome_source_id =
-                       g_timeout_add_seconds(SCREEN_WELCOME_TIME,
-                                             welcome_timer_callback, c);
-#endif
-
-       /* create top window */
-       title_bar_init(&screen.title_bar, cols, 0, 0);
-
-       /* create main window */
-       window_init(&screen.main_window, rows - 4, cols, 2, 0);
-
-       if (!options.hardware_cursor)
-               leaveok(screen.main_window.w, TRUE);
-
-       keypad(screen.main_window.w, TRUE);
-
-       /* create progress window */
-       progress_bar_init(&screen.progress_bar, cols, rows - 2, 0);
-
-       /* create status window */
-       status_bar_init(&screen.status_bar, cols, rows - 1, 0);
-
-#ifdef ENABLE_COLORS
-       if (options.enable_colors) {
-               /* set background attributes */
-               wbkgd(stdscr, COLOR_PAIR(COLOR_LIST));
-               wbkgd(screen.main_window.w,     COLOR_PAIR(COLOR_LIST));
-               wbkgd(screen.title_bar.window.w, COLOR_PAIR(COLOR_TITLE));
-               wbkgd(screen.progress_bar.window.w,
-                     COLOR_PAIR(COLOR_PROGRESSBAR));
-               wbkgd(screen.status_bar.window.w, COLOR_PAIR(COLOR_STATUS));
-               colors_use(screen.progress_bar.window.w, COLOR_PROGRESSBAR);
-       }
-#endif
-
-       /* initialize screens */
-       screen_list_init(screen.main_window.w,
-                        screen.main_window.cols, screen.main_window.rows);
-
-       if (screen.current_page->open != NULL)
-               screen.current_page->open(c);
-}
-
 void
 screen_update(struct mpdclient *c)
 {