2018-05-12 12:03:00 -04:00
|
|
|
/*
|
2009-07-28 23:44:22 +02:00
|
|
|
*
|
|
|
|
* audacious.h: conky support for audacious music player
|
2008-02-20 20:30:45 +00:00
|
|
|
*
|
2007-08-10 20:09:43 +00:00
|
|
|
* Copyright (C) 2005-2007 Philip Kovacs pkovacs@users.sourceforge.net
|
2006-01-07 07:01:22 +00:00
|
|
|
*
|
|
|
|
* 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
|
2006-12-13 16:54:59 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
|
2009-07-27 14:47:19 -06:00
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
*/
|
2006-01-07 07:01:22 +00:00
|
|
|
|
2006-11-03 20:54:52 +00:00
|
|
|
#ifndef AUDACIOUS_H
|
|
|
|
#define AUDACIOUS_H
|
|
|
|
|
2018-08-08 01:22:23 +02:00
|
|
|
void print_audacious_status(struct text_object *, char *, unsigned int);
|
|
|
|
void print_audacious_title(struct text_object *, char *, unsigned int);
|
|
|
|
void print_audacious_length(struct text_object *, char *, unsigned int);
|
|
|
|
void print_audacious_length_seconds(struct text_object *, char *, unsigned int);
|
|
|
|
void print_audacious_position(struct text_object *, char *, unsigned int);
|
2019-02-23 14:40:34 -05:00
|
|
|
void print_audacious_position_seconds(struct text_object *, char *,
|
|
|
|
unsigned int);
|
2018-08-08 01:22:23 +02:00
|
|
|
void print_audacious_bitrate(struct text_object *, char *, unsigned int);
|
|
|
|
void print_audacious_frequency(struct text_object *, char *, unsigned int);
|
|
|
|
void print_audacious_channels(struct text_object *, char *, unsigned int);
|
|
|
|
void print_audacious_filename(struct text_object *, char *, unsigned int);
|
2019-02-23 14:40:34 -05:00
|
|
|
void print_audacious_playlist_length(struct text_object *, char *,
|
|
|
|
unsigned int);
|
|
|
|
void print_audacious_playlist_position(struct text_object *, char *,
|
|
|
|
unsigned int);
|
2018-08-08 01:22:23 +02:00
|
|
|
void print_audacious_main_volume(struct text_object *, char *, unsigned int);
|
2009-12-04 01:32:49 +01:00
|
|
|
double audacious_barval(struct text_object *);
|
2009-11-08 19:19:42 +01:00
|
|
|
|
2010-01-06 18:38:12 -08:00
|
|
|
#endif /* AUDACIOUS_H */
|