X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_curses.h;h=87c837f231377e494ae8b4570dedb022c7324c18;hp=b7b1a828950e35a3cf330b7de3f93ad14b5447a5;hb=fedbb0047287e63c53cc911b668ae6212f59b846;hpb=6833ce8bdca2d64e14485118f2a4417b7e1cb1b1 diff --git a/mutt_curses.h b/mutt_curses.h index b7b1a82..87c837f 100644 --- a/mutt_curses.h +++ b/mutt_curses.h @@ -1,5 +1,6 @@ /* * Copyright (C) 1996-2000 Michael R. Elkins + * Copyright (C) 2004 g10 Code GmbH * * 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 @@ -58,6 +59,7 @@ #undef lines #endif /* lines */ +#define CLEARLINE_WIN(x) move(x,SidebarWidth), clrtoeol() #define CLEARLINE(x) move(x,0), clrtoeol() #define CENTERLINE(x,y) move(y, (COLS-strlen(x))/2), addstr(x) #define BEEP() do { if (option (OPTBEEP)) beep(); } while (0) @@ -94,6 +96,7 @@ void mutt_flushinp (void); void mutt_refresh (void); void mutt_resize_screen (void); void mutt_ungetch (int, int); +void mutt_need_hard_redraw (void); /* ---------------------------------------------------------------------------- * Support for color @@ -119,6 +122,7 @@ enum MT_COLOR_BOLD, MT_COLOR_UNDERLINE, MT_COLOR_INDEX, + MT_COLOR_NEW, MT_COLOR_MAX };