36febff3d5
Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
67 lines
2.3 KiB
C
67 lines
2.3 KiB
C
/* WMix -- a mixer using the OSS mixer API
|
|
* Copyright (C)2014 Christophe CURIS for the WindowMaker Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
/* include/config.h: functions related to setting the configuration */
|
|
|
|
#ifndef WMIX_CONFIG_H
|
|
#define WMIX_CONFIG_H
|
|
|
|
/* Needed for SOUND_MIXER_NRDEVICES */
|
|
#include <sys/soundcard.h>
|
|
|
|
|
|
/* Global Configuration */
|
|
extern struct _Config {
|
|
char *file; /* full path to config file name */
|
|
char *display_name; /* X Display to connect to */
|
|
char *mixer_device; /* device file to use for controlling Mixer volumes */
|
|
|
|
unsigned int verbose : 1; /* be Verbose when starting */
|
|
unsigned int osd : 1; /* show OSD? */
|
|
unsigned int mousewheel : 1; /* mousewheel enabled? */
|
|
unsigned int scrolltext : 1; /* scroll channel names? */
|
|
unsigned int mmkeys : 1; /* grab multimedia keys for volume control */
|
|
|
|
unsigned int wheel_button_up; /* up button */
|
|
unsigned int wheel_button_down; /* down button */
|
|
|
|
float scrollstep; /* scroll mouse step adjustment */
|
|
char *osd_color; /* osd color */
|
|
|
|
char *exclude_channel[SOUND_MIXER_NRDEVICES + 1]; /* Devices to exclude from GUI's list */
|
|
} config;
|
|
|
|
/* Default color for OSD */
|
|
extern const char default_osd_color[];
|
|
|
|
/* Current version of WMixer */
|
|
#define VERSION "3.2"
|
|
|
|
/* Sets the default values in the config */
|
|
void config_init(void);
|
|
|
|
/* Release memory associated with configuration (this concern only stuff needed during startup) */
|
|
void config_release(void);
|
|
|
|
/* Sets configuration from command line */
|
|
void parse_cli_options(int argc, char **argv);
|
|
|
|
/* Read configuration from file */
|
|
void config_read(void);
|
|
|
|
#endif /* WMIX_CONFIG_H */
|