summaryrefslogtreecommitdiff
path: root/src/libaudcore/interface.h
blob: b918a384da3fc711e06716c762cbaf6286cc7f9a (plain)
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
/*
 * interface.h
 * Copyright 2014 John Lindgren
 *
 * 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 LIBAUDCORE_INTERFACE_H
#define LIBAUDCORE_INTERFACE_H

#include <libaudcore/visualizer.h>

enum class AudMenuID {
    Main,
    Playlist,
    PlaylistAdd,
    PlaylistRemove,
    count
};

void aud_ui_show (bool show);
bool aud_ui_is_shown ();

void aud_ui_startup_notify (const char * id);
void aud_ui_show_error (const char * message);  /* thread-safe */

void aud_ui_show_about_window ();
void aud_ui_hide_about_window ();
void aud_ui_show_filebrowser (bool open);
void aud_ui_hide_filebrowser ();
void aud_ui_show_jump_to_song ();
void aud_ui_hide_jump_to_song ();
void aud_ui_show_prefs_window ();
void aud_ui_hide_prefs_window ();

void aud_plugin_menu_add (AudMenuID id, void (* func) (), const char * name, const char * icon);
void aud_plugin_menu_remove (AudMenuID id, void (* func) ());

void aud_visualizer_add (Visualizer * vis);
void aud_visualizer_remove (Visualizer * vis);

#endif