mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-27 07:00:09 -05:00
added hdspmixer by Thomas Charbonnel
This commit is contained in:
parent
a459b42371
commit
0fb00d0bdc
102 changed files with 14102 additions and 1 deletions
62
hdspmixer/src/HDSPMixerPresets.h
Normal file
62
hdspmixer/src/HDSPMixerPresets.h
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
/*
|
||||
* HDSPMixer
|
||||
*
|
||||
* Copyright (C) 2003 Thomas Charbonnel (thomas@undata.org)
|
||||
*
|
||||
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#pragma interface
|
||||
#ifndef HDSPMixerPresets_H
|
||||
#define HDSPMixerPresets_H
|
||||
|
||||
#include <math.h>
|
||||
#include <FL/Fl.H>
|
||||
#include <FL/Fl_Widget.H>
|
||||
#include <FL/fl_draw.H>
|
||||
#include "HDSPMixerWindow.h"
|
||||
#include "pixmaps.h"
|
||||
|
||||
class HDSPMixerWindow;
|
||||
|
||||
enum presets {
|
||||
NONE = 0,
|
||||
PRE1 = 1,
|
||||
PRE2 = 2,
|
||||
PRE3 = 4,
|
||||
PRE4 = 8,
|
||||
PRE5 = 16,
|
||||
PRE6 = 32,
|
||||
PRE7 = 64,
|
||||
PRE8 = 128,
|
||||
};
|
||||
|
||||
|
||||
class HDSPMixerPresets:public Fl_Widget
|
||||
{
|
||||
private:
|
||||
HDSPMixerWindow *basew;
|
||||
public:
|
||||
int preset, presetmask, save, saving;
|
||||
HDSPMixerPresets(int x, int y, int w, int h);
|
||||
void draw();
|
||||
int handle(int e);
|
||||
void restore_preset(int preset);
|
||||
void save_preset(int preset);
|
||||
void preset_change(int preset);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue