/* -*- mode: c++; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- * vim: ts=4 sw=4 noet ai cindent syntax=cpp * * audacious.h: conky support for audacious music player * * Copyright (C) 2005-2007 Philip Kovacs pkovacs@users.sourceforge.net * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 * USA. * */ #ifndef AUDACIOUS_H #define AUDACIOUS_H #include "timed_thread.h" enum _audacious_items { AUDACIOUS_STATUS = 0, AUDACIOUS_TITLE, AUDACIOUS_LENGTH, AUDACIOUS_LENGTH_SECONDS, AUDACIOUS_POSITION, AUDACIOUS_POSITION_SECONDS, AUDACIOUS_BITRATE, AUDACIOUS_FREQUENCY, AUDACIOUS_CHANNELS, AUDACIOUS_FILENAME, AUDACIOUS_PLAYLIST_LENGTH, AUDACIOUS_PLAYLIST_POSITION, AUDACIOUS_MAIN_VOLUME }; /* 12 slots for the audacious values */ typedef char audacious_t[13][128]; /* type for data exchange with main thread */ typedef struct audacious_s { audacious_t items; /* e.g. items[BUILD_AUDACIOUS_STATUS] */ int max_title_len; /* e.g. ${audacious_title 50} */ timed_thread_ptr p_timed_thread; } audacious_s; /* create a worker thread for audacious media player status */ int create_audacious_thread(void); /* destroy audacious media player worker thread */ int destroy_audacious_thread(void); /* Service routine for the conky main thread */ void update_audacious(void); /* Thread functions */ void audacious_thread_func(thread_handle &handle); void print_audacious_status(struct text_object *, char *, int); void print_audacious_title(struct text_object *, char *, int); void print_audacious_length(struct text_object *, char *, int); void print_audacious_length_seconds(struct text_object *, char *, int); void print_audacious_position(struct text_object *, char *, int); void print_audacious_position_seconds(struct text_object *, char *, int); void print_audacious_bitrate(struct text_object *, char *, int); void print_audacious_frequency(struct text_object *, char *, int); void print_audacious_channels(struct text_object *, char *, int); void print_audacious_filename(struct text_object *, char *, int); void print_audacious_playlist_length(struct text_object *, char *, int); void print_audacious_playlist_position(struct text_object *, char *, int); void print_audacious_main_volume(struct text_object *, char *, int); double audacious_barval(struct text_object *); #endif /* AUDACIOUS_H */