Blame hdspmixer/src/defines.h

Packit 427e91
/*
Packit 427e91
 *   HDSPMixer
Packit 427e91
 *    
Packit 427e91
 *   Copyright (C) 2003 Thomas Charbonnel (thomas@undata.org)
Packit 427e91
 *    
Packit 427e91
 *   This program is free software; you can redistribute it and/or modify
Packit 427e91
 *   it under the terms of the GNU General Public License as published by
Packit 427e91
 *   the Free Software Foundation; either version 2 of the License, or
Packit 427e91
 *   (at your option) any later version.
Packit 427e91
 *
Packit 427e91
 *   This program is distributed in the hope that it will be useful,
Packit 427e91
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 427e91
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 427e91
 *   GNU General Public License for more details.
Packit 427e91
 *
Packit 427e91
 *   You should have received a copy of the GNU General Public License
Packit 427e91
 *   along with this program; if not, write to the Free Software
Packit 427e91
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Packit 427e91
 */
Packit 427e91
Packit 427e91
#ifndef DEFINES_H
Packit 427e91
#define DEFINES_H
Packit 427e91
Packit 427e91
/* Uncomment this to make the setup window non-modal */
Packit 427e91
//#define NON_MODAL_SETUP 1
Packit 427e91
Packit 427e91
#define HDSPeMADI 10
Packit 427e91
#define HDSPeRayDAT 11
Packit 427e91
#define HDSPeAIO 12
Packit 427e91
#define HDSP_AES 13 /* both HDSP AES32 and HDSPe AES */
Packit 427e91
Packit 427e91
#define HDSP_MAX_CHANNELS 64
Packit 427e91
#define HDSP_MAX_DEST	  32
Packit 427e91
Packit 427e91
#define STRIP_WIDTH 	  36
Packit 427e91
#define FULLSTRIP_HEIGHT  253
Packit 427e91
#define SMALLSTRIP_HEIGHT 208
Packit 427e91
#define MENU_HEIGHT       20
Packit 427e91
Packit 427e91
#define MIN_WIDTH  2*STRIP_WIDTH
Packit 427e91
#define MIN_HEIGHT MENU_HEIGHT
Packit 427e91
Packit 427e91
#define CF	     8
Packit 427e91
#define FADER_HEIGHT 137
Packit 427e91
#define METER_HEIGHT 139
Packit 427e91
#define PEAK_HEIGHT  4
Packit 427e91
Packit 427e91
#define PAN_WIDTH 28
Packit 427e91
Packit 427e91
#define MAX_CARDS	3
Packit 427e91
Packit 427e91
/* Number of presets. 8 presets visible to the user, the 9th is used for
Packit 427e91
 * holding temporary mixer data when switching cards, so it's not a real
Packit 427e91
 * preset but more like a scratch pad.
Packit 427e91
 */
Packit 427e91
#define NUM_PRESETS	9
Packit 427e91
Packit 427e91
typedef unsigned long long int int64;
Packit 427e91
Packit 427e91
#endif
Packit 427e91