X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fncmpc.h;h=3f5e50317bf13b304b227aed922ef499dc9a8b02;hb=94a8c60f3df33e42df79cd33822bfe5074b56afa;hp=64160531f2f310aa9f75c7448162d52476ea2ca9;hpb=a8baf3be0cbdb33d48df4e704ca2f1cb0b77f93b;p=ncmpc.git diff --git a/src/ncmpc.h b/src/ncmpc.h index 6416053..3f5e503 100644 --- a/src/ncmpc.h +++ b/src/ncmpc.h @@ -1,49 +1,32 @@ +/* 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + #ifndef NCMPC_H #define NCMPC_H -#ifndef PACKAGE -#include "config.h" -#endif - -#ifdef DEBUG -#define D(x, args...) fprintf(stderr, x, ##args) -#else -#define D(x,...) -#endif - -/* i18n */ -#ifdef HAVE_LOCALE_H -#include -#endif -#ifdef ENABLE_NLS -#include -#include -#else -#define _(x) x -#define N_(x) x -#endif - -#define YES _("y") -#define NO _("n") - -/* welcome message time [s] */ -#define SCREEN_WELCOME_TIME 10 - -/* getch() timeout for non blocking read [ms] */ -#define SCREEN_TIMEOUT 500 - -/* time in seconds between mpd updates (double) */ -#define MPD_UPDATE_TIME 0.5 - -/* time in milliseconds before trying to reconnect (int) */ -#define MPD_RECONNECT_TIME 1500 +#include "command.h" -/* song format - list window */ -#define DEFAULT_LIST_FORMAT "%name%|[%artist% - ]%title%|%file%" -#define LIST_FORMAT (options.list_format ? options.list_format : DEFAULT_LIST_FORMAT) +void +sigstop(void); -/* song format - status window */ -#define DEFAULT_STATUS_FORMAT "[%artist% - ]%title%|%basename%" -#define STATUS_FORMAT (options.status_format ? options.status_format : DEFAULT_STATUS_FORMAT) +void begin_input_event(void); +void end_input_event(void); +int do_input_event(command_t cmd); #endif /* NCMPC_H */