summaryrefslogtreecommitdiff
path: root/src/pa-sink-ctl.h
blob: 699c21e8a21495ba2259130b3a2719b5df19a2bc (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
#ifndef PA_SINK_CTL_H
#define PA_SINK_CTL_H

#include <glib.h>
#include <pulse/pulseaudio.h>
#include <ncurses.h>

struct context {
	pa_context *context;
	pa_operation *op;
	gboolean context_ready;

	WINDOW *menu_win;
	WINDOW *msg_win;

	guint resize_source_id;
#ifdef HAVE_SIGNALFD
	int signal_fd;
#endif
	guint input_source_id;

	gint chooser_sink;
	gint chooser_input;
	guint32 selected_index;

	guint max_name_len;

	GMainLoop *loop;

	GList *sink_list;
	GList *input_list;

	gchar *status;
};

void
quit(struct context *ctx);

void
change_callback(pa_context* c, gint success, gpointer);

#endif