/usr/include/libaudgui/libaudgui.h is in audacious-dev 3.4.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | /*
* libaudgui.h
* Copyright 2007-2009 Giacomo Lozito and Tomasz Moń
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions, and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions, and the following disclaimer in the documentation
* provided with the distribution.
*
* This software is provided "as is" and without any warranty, express or
* implied. In no event shall the authors be liable for any damages arising from
* the use of this software.
*/
#ifndef LIBAUDGUI_H
#define LIBAUDGUI_H
#include <libaudcore/core.h>
/* macro defines for Audacious stock icons */
#define AUD_STOCK_AUDACIOUS "aud-audacious"
#define AUD_STOCK_PLAYLIST "aud-playlist"
#define AUD_STOCK_PLUGIN "aud-plugin"
#define AUD_STOCK_QUEUETOGGLE "aud-queuetoggle"
void audgui_register_stock_icons(void);
void audgui_show_add_url_window(bool_t open);
void audgui_jump_to_track(void);
void audgui_jump_to_track_hide(void);
void audgui_run_filebrowser(bool_t clear_pl_on_ok);
void audgui_hide_filebrowser(void);
/* about.c */
void audgui_show_about_window (void);
/* confirm.c */
void audgui_confirm_playlist_delete (int playlist);
void audgui_show_playlist_rename (int playlist);
/* equalizer.c */
void audgui_show_equalizer_window (void);
void audgui_hide_equalizer_window (void);
/* infopopup.c */
void audgui_infopopup_show (int playlist, int entry);
void audgui_infopopup_show_current (void);
void audgui_infopopup_hide (void);
/* infowin.c */
void audgui_infowin_show (int playlist, int entry);
void audgui_infowin_show_current (void);
void audgui_infowin_hide (void);
/* jump-to-time.c */
void audgui_jump_to_time (void);
/* playlists.c */
void audgui_import_playlist (void);
void audgui_export_playlist (void);
/* queue-manager.c */
void audgui_queue_manager_show (void);
/* ui_playlist_manager.c */
void audgui_playlist_manager (void);
/* urilist.c */
void audgui_urilist_open (const char * list);
void audgui_urilist_insert (int playlist, int position, const char * list);
char * audgui_urilist_create_from_selected (int playlist);
/* util.c */
void audgui_set_default_icon (void);
#endif /* LIBAUDGUI_H */
|