pnmixer
Volume mixer for the system tray
main.h
Go to the documentation of this file.
1 /* main.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 _MAIN_H_
18 #define _MAIN_H_
19 
20 #include <gtk/gtk.h>
21 
22 void run_mixer_command(void);
23 void run_custom_command(void);
24 
25 void run_about_dialog(void);
26 void run_error_dialog(const char *, ...);
27 void run_prefs_dialog(void);
28 
29 void do_toggle_popup_window(void);
30 void do_show_popup_menu(GtkMenuPositionFunc func, gpointer data,
31  guint button, guint activate_time);
32 
33 #endif // _MAIN_H
void run_mixer_command(void)
Definition: main.c:79
void do_show_popup_menu(GtkMenuPositionFunc func, gpointer data, guint button, guint activate_time)
Definition: main.c:277
void run_custom_command(void)
Definition: main.c:99
void run_about_dialog(void)
Definition: main.c:168
void do_toggle_popup_window(void)
Definition: main.c:259
void run_error_dialog(const char *,...)
Definition: main.c:188
void run_prefs_dialog(void)
Definition: main.c:151