pnmixer
Volume mixer for the system tray
ui-popup-window.h
Go to the documentation of this file.
1 /* ui-popup-window.h
2  * PNmixer is written by Nick Lanham, a fork of OBmixer
3  * which was programmed by Lee Ferrett, derived
4  * from the program "AbsVolume" by Paul Sherman
5  * This program is free software; you can redistribute
6  * it and/or modify it under the terms of the GNU General
7  * Public License v3. source code is available at
8  * <http://github.com/nicklan/pnmixer>
9  */
10 
17 #ifndef _UI_POPUP_WINDOW_H_
18 #define _UI_POPUP_WINDOW_H_
19 
20 #include "audio.h"
21 
22 typedef struct popup_window PopupWindow;
23 
25 void popup_window_destroy(PopupWindow *window);
26 void popup_window_reload(PopupWindow *window);
27 void popup_window_show(PopupWindow *window);
28 void popup_window_hide(PopupWindow *window);
29 void popup_window_toggle(PopupWindow *window);
30 
31 #endif // _UI_POPUP_WINDOW_H_
Header for audio.c.
void popup_window_destroy(PopupWindow *window)
void popup_window_hide(PopupWindow *window)
void popup_window_toggle(PopupWindow *window)
void popup_window_show(PopupWindow *window)
Definition: audio.c:198
PopupWindow * popup_window_create(Audio *audio)
void popup_window_reload(PopupWindow *window)