Code

status_bar: fixed visible_bitrate check
[ncmpc.git] / src / list_window.c
index 001b606fc814fe7aac68316662dd1c3749d0e4f0..ca857b8a06ec60185e3d9d334c318d084b881b55 100644 (file)
@@ -1,30 +1,31 @@
-/* 
- * $Id$
- *
- * (c) 2004 by Kalle Wallin <kaw@linux.se>
- *
+/* ncmpc (Ncurses MPD Client)
+ * (c) 2004-2009 The Music Player Daemon Project
+ * Project homepage: http://musicpd.org
+
  * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- *
- */
+
+ * 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
+*/
 
 #include "list_window.h"
 #include "config.h"
 #include "options.h"
 #include "charset.h"
-#include "support.h"
+#include "match.h"
 #include "command.h"
 #include "colors.h"
+#include "screen_message.h"
+#include "i18n.h"
 
 #include <assert.h>
 #include <stdlib.h>
@@ -42,6 +43,7 @@ list_window_init(WINDOW *w, unsigned width, unsigned height)
        lw->w = w;
        lw->cols = width;
        lw->rows = height;
+       lw->range_selection = false;
        return lw;
 }
 
@@ -58,7 +60,10 @@ void
 list_window_reset(struct list_window *lw)
 {
        lw->selected = 0;
-       lw->xoffset = 0;
+       lw->selected_start = 0;
+       lw->selected_end = 0;
+       lw->range_selection = false;
+       lw->range_base = 0;
        lw->start = 0;
 }
 
@@ -75,8 +80,36 @@ list_window_check_selected(struct list_window *lw, unsigned length)
        if (lw->selected < lw->start)
                lw->selected = lw->start;
 
-       if (length > 0 && lw->selected >= length)
+       if (length == 0)
+               lw->selected = 0;
+       else if (lw->selected >= length)
                lw->selected = length - 1;
+
+       if(lw->range_selection)
+       {
+               if (length == 0) {
+                       lw->selected_start = 0;
+                       lw->selected_end = 0;
+                       lw->range_base = 0;
+               } else {
+                       if (lw->selected_start >= length)
+                               lw->selected_start = length - 1;
+                       if (lw->selected_end >= length)
+                               lw->selected_end = length - 1;
+                       if (lw->range_base >= length)
+                               lw->range_base = length - 1;
+               }
+
+               if(lw->range_base > lw->selected_end)
+                         lw->selected_end = lw->selected;
+               if(lw->range_base < lw->selected_start)
+                         lw->selected_start = lw->selected;
+       }
+       else
+       {
+               lw->selected_start = lw->selected;
+               lw->selected_end = lw->selected;
+       }
 }
 
 void
@@ -99,41 +132,93 @@ void
 list_window_set_selected(struct list_window *lw, unsigned n)
 {
        lw->selected = n;
+       if(lw->range_selection)
+       {
+               if(n >= lw->range_base)
+               {
+                       lw->selected_end = n;
+                       lw->selected_start = lw->range_base;
+               }
+               if(n <= lw->range_base)
+               {
+                       lw->selected_start = n;
+                       lw->selected_end = lw->range_base;
+               }
+       }
+       else
+       {
+               lw->selected_start = n;
+               lw->selected_end = n;
+       }
 }
 
 static void
 list_window_next(struct list_window *lw, unsigned length)
 {
        if (lw->selected + 1 < length)
-               lw->selected++;
+               list_window_set_selected(lw, lw->selected + 1);
        else if (options.list_wrap)
-               lw->selected = 0;
+               list_window_set_selected(lw, 0);
 }
 
 static void
 list_window_previous(struct list_window *lw, unsigned length)
 {
        if (lw->selected > 0)
-               lw->selected--;
+               list_window_set_selected(lw, lw->selected - 1);
        else if (options.list_wrap)
-               lw->selected = length - 1;
+               list_window_set_selected(lw, length-1);
+}
+
+static void
+list_window_top(struct list_window *lw)
+{
+       if (lw->start == 0)
+               list_window_set_selected(lw, lw->start);
+       else
+               if ((unsigned) options.scroll_offset * 2 >= lw->rows)
+                       list_window_set_selected(lw, lw->start + lw->rows / 2);
+               else
+                       list_window_set_selected(lw, lw->start + options.scroll_offset);
+}
+
+static void
+list_window_middle(struct list_window *lw, unsigned length)
+{
+       if (length >= lw->rows)
+               list_window_set_selected(lw, lw->start + lw->rows / 2);
+       else
+               list_window_set_selected(lw, length / 2);
+}
+
+static void
+list_window_bottom(struct list_window *lw, unsigned length)
+{
+       if (length >= lw->rows)
+               if ((unsigned) options.scroll_offset * 2 >= lw->rows)
+                       list_window_set_selected(lw, lw->start + lw->rows / 2);
+               else
+                       if (lw->start + lw->rows == length)
+                               list_window_set_selected(lw, length - 1);
+                       else
+                               list_window_set_selected(lw, lw->start + lw->rows - 1 - options.scroll_offset);
+       else
+               list_window_set_selected(lw, length - 1);
 }
 
 static void
 list_window_first(struct list_window *lw)
 {
-       lw->xoffset = 0;
-       lw->selected = 0;
+       list_window_set_selected(lw, 0);
 }
 
 static void
 list_window_last(struct list_window *lw, unsigned length)
 {
-       lw->xoffset = 0;
        if (length > 0)
-               lw->selected = length - 1;
+               list_window_set_selected(lw, length - 1);
        else
-               lw->selected = 0;
+               list_window_set_selected(lw, 0);
 }
 
 static void
@@ -142,7 +227,7 @@ list_window_next_page(struct list_window *lw, unsigned length)
        if (lw->rows < 2)
                return;
        if (lw->selected + lw->rows < length)
-               lw->selected += lw->rows - 1;
+               list_window_set_selected(lw, lw->selected + lw->rows - 1);
        else
                list_window_last(lw, length);
 }
@@ -153,11 +238,61 @@ list_window_previous_page(struct list_window *lw)
        if (lw->rows < 2)
                return;
        if (lw->selected > lw->rows - 1)
-               lw->selected -= lw->rows - 1;
+               list_window_set_selected(lw, lw->selected - lw->rows + 1);
        else
                list_window_first(lw);
 }
 
+static void
+list_window_scroll_up(struct list_window *lw, unsigned n)
+{
+       if (lw->start > 0) {
+               if (n > lw->start)
+                       lw->start = 0;
+               else
+                       lw->start -= n;
+               if (lw->selected > lw->start + lw->rows - 1 - options.scroll_offset) {
+                       lw->selected = lw->start + lw->rows - 1 - options.scroll_offset;
+                       if (lw->range_selection) {
+                               if (lw->selected < lw->range_base) {
+                                       lw->selected_start = lw->selected;
+                                       lw->selected_end = lw->range_base;
+                               } else {
+                                       lw->selected_end = lw->selected;
+                               }
+                       } else {
+                               lw->selected_start = lw->selected;
+                               lw->selected_end = lw->selected;
+                       }
+               }
+       }
+}
+
+static void
+list_window_scroll_down(struct list_window *lw, unsigned length, unsigned n)
+{
+       if (lw->start + lw->rows < length)
+       {
+               if ( lw->start + lw->rows + n > length - 1)
+                       lw->start = length - lw->rows;
+               else
+                       lw->start += n;
+               if (lw->selected < lw->start + options.scroll_offset) {
+                       lw->selected = lw->start + options.scroll_offset;
+                       if (lw->range_selection) {
+                               if (lw->selected > lw->range_base) {
+                                       lw->selected_end = lw->selected;
+                                       lw->selected_start = lw->range_base;
+                               } else {
+                                       lw->selected_start = lw->selected;
+                               }
+                       } else {
+                               lw->selected_start = lw->selected;
+                               lw->selected_end = lw->selected;
+                       }
+               }
+       }
+}
 
 void
 list_window_paint(struct list_window *lw,
@@ -165,34 +300,54 @@ list_window_paint(struct list_window *lw,
                  void *callback_data)
 {
        unsigned i;
-       int fill = options.wide_cursor;
-       int show_cursor = !(lw->flags & LW_HIDE_CURSOR);
+       bool fill = options.wide_cursor;
+       bool show_cursor = !lw->hide_cursor;
+       bool highlight = false;
 
        if (show_cursor) {
-               if (lw->selected < lw->start)
-                       lw->start = lw->selected;
+               int start = lw->start;
+               if ((unsigned) options.scroll_offset * 2 >= lw->rows)
+                       // Center if the offset is more than half the screen
+                       start = lw->selected - lw->rows / 2;
+               else
+               {
+                       if (lw->selected < lw->start + options.scroll_offset)
+                               start = lw->selected - options.scroll_offset;
 
-               if (lw->selected >= lw->start + lw->rows)
-                       lw->start = lw->selected - lw->rows + 1;
+                       if (lw->selected >= lw->start + lw->rows - options.scroll_offset)
+                       {
+                               start = lw->selected - lw->rows + 1 + options.scroll_offset;
+                       }
+               }
+               if (start < 0)
+                       lw->start = 0;
+               else
+               {
+                       while ( start > 0 && callback(start + lw->rows - 1, &highlight, NULL, callback_data) == NULL)
+                               start--;
+                       lw->start = start;
+               }
        }
 
        for (i = 0; i < lw->rows; i++) {
-               int highlight = 0;
                const char *label;
+               char *second_column = NULL;
+               highlight = false;
 
-               label = callback(lw->start + i, &highlight, callback_data);
+               label = callback(lw->start + i, &highlight, &second_column, callback_data);
                wmove(lw->w, i, 0);
 
                if (label) {
-                       int selected = lw->start + i == lw->selected;
-                       size_t len = my_strlen(label);
+                       bool selected = (lw->start + i >= lw->selected_start && lw->start + i <= lw->selected_end);
+                       unsigned len = utf8_width(label);
 
                        if (highlight)
                                colors_use(lw->w, COLOR_LIST_BOLD);
                        else
                                colors_use(lw->w, COLOR_LIST);
 
-                       if (show_cursor && selected)
+                       if (show_cursor && selected &&
+                           (!options.hardware_cursor || lw->range_selection))
                                wattron(lw->w, A_REVERSE);
 
                        //waddnstr(lw->w, label, lw->cols);
@@ -200,6 +355,19 @@ list_window_paint(struct list_window *lw,
                        if (fill && len < lw->cols)
                                whline(lw->w,  ' ', lw->cols-len);
 
+                       if(second_column)
+                       {
+                               unsigned sc_len = utf8_width(second_column) + 1;
+                               if(lw->cols > sc_len)
+                               {
+                                       wmove(lw->w, i, lw->cols - sc_len);
+                                       waddstr(lw->w, " ");
+                                       wmove(lw->w, i, lw->cols - sc_len + 1);
+                                       waddstr(lw->w, second_column);
+                               }
+                               g_free(second_column);
+                       }
+
                        if (selected)
                                wattroff(lw->w, A_REVERSE);
 
@@ -208,75 +376,129 @@ list_window_paint(struct list_window *lw,
                } else
                        wclrtoeol(lw->w);
        }
+
+       if (options.hardware_cursor && lw->selected >= lw->start &&
+           lw->selected < lw->start + lw->rows) {
+               curs_set(1);
+               wmove(lw->w, lw->selected - lw->start, 0);
+       }
 }
 
-int
+bool
 list_window_find(struct list_window *lw,
                 list_window_callback_fn_t callback,
                 void *callback_data,
                 const char *str,
-                int wrap)
+                bool wrap,
+                bool bell_on_wrap)
 {
-       int h;
+       bool h;
        unsigned i = lw->selected + 1;
        const char *label;
 
-       while (wrap || i == lw->selected + 1) {
-               while ((label = callback(i,&h,callback_data))) {
-                       if (str && label && strcasestr(label, str)) {
+       do {
+               while ((label = callback(i,&h,NULL,callback_data))) {
+                       if (str && label && match_line(label, str)) {
                                lw->selected = i;
-                               return 0;
+                               if(!lw->range_selection || i > lw->selected_end)
+                                         lw->selected_end = i;
+                               if(!lw->range_selection || i < lw->selected_start)
+                                         lw->selected_start = i;
+                               return true;
                        }
                        if (wrap && i == lw->selected)
-                               return 1;
+                               return false;
                        i++;
                }
                if (wrap) {
                        if (i == 0) /* empty list */
                                return 1;
                        i=0; /* first item */
-                       screen_bell();
+                       if (bell_on_wrap) {
+                               screen_bell();
+                       }
                }
-       }
+       } while (wrap);
 
-       return 1;
+       return false;
 }
 
-int
+bool
 list_window_rfind(struct list_window *lw,
                  list_window_callback_fn_t callback,
                  void *callback_data,
                  const char *str,
-                 int wrap,
+                 bool wrap,
+                 bool bell_on_wrap,
                  unsigned rows)
 {
-       int h;
+       bool h;
        int i = lw->selected - 1;
        const char *label;
 
        if (rows == 0)
-               return 1;
+               return false;
 
-       while (wrap || i == (int)lw->selected - 1) {
-               while (i >= 0 && (label = callback(i,&h,callback_data))) {
-                       if( str && label && strcasestr(label, str) ) {
+       do {
+               while (i >= 0 && (label = callback(i,&h,NULL,callback_data))) {
+                       if( str && label && match_line(label, str) ) {
                                lw->selected = i;
-                               return 0;
+                               if(!lw->range_selection || i > (int)lw->selected_end)
+                                         lw->selected_end = i;
+                               if(!lw->range_selection || i < (int)lw->selected_start)
+                                         lw->selected_start = i;
+                               return true;
                        }
                        if (wrap && i == (int)lw->selected)
-                               return 1;
+                               return false;
                        i--;
                }
                if (wrap) {
                        i = rows - 1; /* last item */
-                       screen_bell();
+                       if (bell_on_wrap) {
+                               screen_bell();
+                       }
                }
+       } while (wrap);
+
+       return false;
+}
+
+bool
+list_window_jump(struct list_window *lw,
+                list_window_callback_fn_t callback,
+                void *callback_data,
+                const char *str)
+{
+       bool h;
+       unsigned i = 0;
+       const char *label;
+
+       while ((label = callback(i,&h,NULL,callback_data))) {
+               if (label && label[0] == '[')
+                       label++;
+#ifndef NCMPC_MINI
+               if (str && label &&
+                               ((options.jump_prefix_only && g_ascii_strncasecmp(label, str, strlen(str)) == 0) ||
+                                (!options.jump_prefix_only && match_line(label, str))) )
+#else
+               if (str && label && g_ascii_strncasecmp(label, str, strlen(str)) == 0)
+#endif
+               {
+                       lw->selected = i;
+                       if(!lw->range_selection || i > lw->selected_end)
+                               lw->selected_end = i;
+                       if(!lw->range_selection || i < lw->selected_start)
+                               lw->selected_start = i;
+                       return true;
+               }
+               i++;
        }
-       return 1;
+       return false;
 }
 
 /* perform basic list window commands (movement) */
-int
+bool
 list_window_cmd(struct list_window *lw, unsigned rows, command_t cmd)
 {
        switch (cmd) {
@@ -286,6 +508,15 @@ list_window_cmd(struct list_window *lw, unsigned rows, command_t cmd)
        case CMD_LIST_NEXT:
                list_window_next(lw, rows);
                break;
+       case CMD_LIST_TOP:
+               list_window_top(lw);
+               break;
+       case CMD_LIST_MIDDLE:
+               list_window_middle(lw,rows);
+               break;
+       case CMD_LIST_BOTTOM:
+               list_window_bottom(lw,rows);
+               break;
        case CMD_LIST_FIRST:
                list_window_first(lw);
                break;
@@ -298,22 +529,50 @@ list_window_cmd(struct list_window *lw, unsigned rows, command_t cmd)
        case CMD_LIST_PREVIOUS_PAGE:
                list_window_previous_page(lw);
                break;
+       case CMD_LIST_RANGE_SELECT:
+               if(lw->range_selection)
+               {
+                       screen_status_printf(_("Range selection disabled"));
+                       lw->range_selection = false;
+                       list_window_set_selected(lw, lw->selected);
+               }
+               else
+               {
+                       screen_status_printf(_("Range selection enabled"));
+                       lw->range_base = lw->selected;
+                       lw->range_selection = true;
+               }
+               break;
+       case CMD_LIST_SCROLL_UP_LINE:
+               list_window_scroll_up(lw, 1);
+               break;
+       case CMD_LIST_SCROLL_DOWN_LINE:
+               list_window_scroll_down(lw, rows, 1);
+               break;
+       case CMD_LIST_SCROLL_UP_HALF:
+               list_window_scroll_up(lw, (lw->rows - 1) / 2);
+               break;
+       case CMD_LIST_SCROLL_DOWN_HALF:
+               list_window_scroll_down(lw, rows, (lw->rows - 1) / 2);
+               break;
        default:
-               return 0;
+               return false;
        }
 
-       return 1;
+       return true;
 }
 
-int
+bool
 list_window_scroll_cmd(struct list_window *lw, unsigned rows, command_t cmd)
 {
        switch (cmd) {
+       case CMD_LIST_SCROLL_UP_LINE:
        case CMD_LIST_PREVIOUS:
                if (lw->start > 0)
                        lw->start--;
                break;
 
+       case CMD_LIST_SCROLL_DOWN_LINE:
        case CMD_LIST_NEXT:
                if (lw->start + lw->rows < rows)
                        lw->start++;
@@ -347,92 +606,55 @@ list_window_scroll_cmd(struct list_window *lw, unsigned rows, command_t cmd)
                        lw->start = 0;
                break;
 
+       case CMD_LIST_SCROLL_UP_HALF:
+               if (lw->start > (lw->rows - 1) / 2)
+                       lw->start -= (lw->rows - 1) / 2;
+               else
+                       lw->start = 0;
+               break;
+
+       case CMD_LIST_SCROLL_DOWN_HALF:
+               lw->start += (lw->rows - 1) / 2;
+               if (lw->start + lw->rows > rows) {
+                       if (rows > lw->rows)
+                               lw->start = rows - lw->rows;
+                       else
+                               lw->start = 0;
+               }
+               break;
+
        default:
-               return 0;
+               return false;
        }
 
-       return 1;
+       return true;
 }
 
 #ifdef HAVE_GETMOUSE
-int
+bool
 list_window_mouse(struct list_window *lw, unsigned rows,
                  unsigned long bstate, int y)
 {
        assert(lw != NULL);
 
-       /* if the even occured above the list window move up */
+       /* if the even occurred above the list window move up */
        if (y < 0) {
                if (bstate & BUTTON3_CLICKED)
                        list_window_first(lw);
                else
                        list_window_previous_page(lw);
-               return 1;
+               return true;
        }
 
-       /* if the even occured below the list window move down */
+       /* if the even occurred below the list window move down */
        if ((unsigned)y >= rows) {
                if (bstate & BUTTON3_CLICKED)
                        list_window_last(lw, rows);
                else
                        list_window_next_page(lw, rows);
-               return 1;
+               return true;
        }
 
-       return 0;
+       return false;
 }
 #endif
-
-list_window_state_t *
-list_window_init_state(void)
-{
-       return g_malloc0(sizeof(list_window_state_t));
-}
-
-void
-list_window_free_state(list_window_state_t *state)
-{
-       if (state) {
-               if (state->list) {
-                       GList *list = state->list;
-
-                       while (list) {
-                               g_free(list->data);
-                               list->data = NULL;
-                               list = list->next;
-                       }
-
-                       g_list_free(state->list);
-                       state->list = NULL;
-               }
-
-               g_free(state);
-       }
-}
-
-void
-list_window_push_state(list_window_state_t *state, struct list_window *lw)
-{
-       if (state) {
-               struct list_window *tmp = g_malloc(sizeof(list_window_t));
-               memcpy(tmp, lw, sizeof(list_window_t));
-               state->list = g_list_prepend(state->list, (gpointer) tmp);
-               list_window_reset(lw);
-       }
-}
-
-bool
-list_window_pop_state(list_window_state_t *state, struct list_window *lw)
-{
-       if (state && state->list) {
-               struct list_window *tmp = state->list->data;
-
-               memcpy(lw, tmp, sizeof(list_window_t));
-               g_free(tmp);
-               state->list->data = NULL;
-               state->list = g_list_delete_link(state->list, state->list);
-       }
-
-       // return TRUE if there are still states in the list
-       return (state && state->list) ? TRUE : FALSE;
-}