Blame hdspmixer/src/HDSPMixerSetup.h

Packit Service b98cfc
/*
Packit Service b98cfc
 *   HDSPMixer
Packit Service b98cfc
 *    
Packit Service b98cfc
 *   Copyright (C) 2003 Thomas Charbonnel (thomas@undata.org)
Packit Service b98cfc
 *    
Packit Service b98cfc
 *   This program is free software; you can redistribute it and/or modify
Packit Service b98cfc
 *   it under the terms of the GNU General Public License as published by
Packit Service b98cfc
 *   the Free Software Foundation; either version 2 of the License, or
Packit Service b98cfc
 *   (at your option) any later version.
Packit Service b98cfc
 *
Packit Service b98cfc
 *   This program is distributed in the hope that it will be useful,
Packit Service b98cfc
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service b98cfc
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service b98cfc
 *   GNU General Public License for more details.
Packit Service b98cfc
 *
Packit Service b98cfc
 *   You should have received a copy of the GNU General Public License
Packit Service b98cfc
 *   along with this program; if not, write to the Free Software
Packit Service b98cfc
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Packit Service b98cfc
 */
Packit Service b98cfc
Packit Service b98cfc
#pragma interface
Packit Service b98cfc
#ifndef HDSPMixerSetup_H
Packit Service b98cfc
#define HDSPMixerSetup_H
Packit Service b98cfc
Packit Service b98cfc
#include <string.h>
Packit Service b98cfc
#include <FL/Fl_Double_Window.H>
Packit Service b98cfc
#include <FL/Fl_Group.H>
Packit Service b98cfc
#include <FL/Fl_Counter.H>
Packit Service b98cfc
#include <FL/Fl_Choice.H>
Packit Service b98cfc
#include <FL/Fl_Round_Button.H>
Packit Service b98cfc
#include <FL/Fl_Check_Button.H>
Packit Service b98cfc
#include <FL/Fl_Return_Button.H>
Packit Service b98cfc
#include "HDSPMixerWindow.h"
Packit Service b98cfc
Packit Service b98cfc
class HDSPMixerWindow;
Packit Service b98cfc
Packit Service b98cfc
class HDSPMixerSetup:public Fl_Double_Window
Packit Service b98cfc
{
Packit Service b98cfc
public:
Packit Service b98cfc
    Fl_Group *plm;
Packit Service b98cfc
    Fl_Group *numbers;
Packit Service b98cfc
    Fl_Group *level;
Packit Service b98cfc
    Fl_Group *rmsplus3grp;
Packit Service b98cfc
    Fl_Counter *over;
Packit Service b98cfc
    Fl_Choice *rate;
Packit Service b98cfc
    Fl_Round_Button *rms;
Packit Service b98cfc
    Fl_Round_Button *peak;
Packit Service b98cfc
    Fl_Round_Button *fourty;
Packit Service b98cfc
    Fl_Round_Button *sixty;
Packit Service b98cfc
    Fl_Check_Button *rmsplus3;
Packit Service b98cfc
    Fl_Return_Button *ok;
Packit Service b98cfc
    int rate_val;
Packit Service b98cfc
    int over_val;
Packit Service b98cfc
    int level_val;
Packit Service b98cfc
    int numbers_val;
Packit Service b98cfc
    int rmsplus3_val;
Packit Service b98cfc
    HDSPMixerSetup(int w, int h, char const *label, HDSPMixerWindow *win);
Packit Service b98cfc
    HDSPMixerWindow *basew;
Packit Service b98cfc
    void updateValues();
Packit Service b98cfc
};
Packit Service b98cfc
Packit Service b98cfc
#endif
Packit Service b98cfc