pnmixer
Volume mixer for the system tray
|
Header for ui-popup-window.c. More...
#include "audio.h"
Go to the source code of this file.
Typedefs | |
typedef struct popup_window | PopupWindow |
Functions | |
PopupWindow * | popup_window_create (Audio *audio) |
void | popup_window_destroy (PopupWindow *window) |
void | popup_window_reload (PopupWindow *window) |
void | popup_window_show (PopupWindow *window) |
void | popup_window_hide (PopupWindow *window) |
void | popup_window_toggle (PopupWindow *window) |
typedef struct popup_window PopupWindow |
Definition at line 22 of file ui-popup-window.h.
PopupWindow* popup_window_create | ( | Audio * | audio | ) |
Creates the popup window and connects all the signals.
audio | pointer to this audio subsystem. |
Definition at line 527 of file ui-popup-window.c.
void popup_window_destroy | ( | PopupWindow * | window | ) |
Destroys the popup window, freeing any resources.
window | a PopupWindow instance. |
Definition at line 514 of file ui-popup-window.c.
void popup_window_hide | ( | PopupWindow * | window | ) |
Hides the popup window.
window | a PopupWindow instance. |
Definition at line 408 of file ui-popup-window.c.
void popup_window_reload | ( | PopupWindow * | window | ) |
Update the popup window according to the current preferences. This has to be called each time the preferences are modified.
window | a PopupWindow instance. |
Definition at line 497 of file ui-popup-window.c.
void popup_window_show | ( | PopupWindow * | window | ) |
Shows the popup window, and grab the focus.
window | a PopupWindow instance. |
Definition at line 379 of file ui-popup-window.c.
void popup_window_toggle | ( | PopupWindow * | window | ) |
Toggle the popup window (aka hide or show).
window | a PopupWindow instance. |
Definition at line 419 of file ui-popup-window.c.