/*****************************************************************************
 SOURCE NAME : PANEL.H
 header of PANEL.CC
 part of the Atari File Designer (AFD) source files
 for the Interface module.
------------------------------------------------------------------------------
 Written by Philippe VUILLERME (c) PVBest 2001
------------------------------------------------------------------------------
MAIN FEATURES:
  Main graphic interface using com.cc and prompts.cc
  prompts.cc and prompts.h taken from the source of the Atari 800 Emulator
  by David Firth and his Emulator development team. 

******************************************************************************/

#define NOIR       00 // 0x00
#define BLEU       01 // 0x01
#define VERT       02 // 0x02
#define TURQUOISE  03 // 0x03
#define ROUGE      04 // 0x04
#define VIOLET     05 // 0x05
#define MARRON     06 // 0x06
#define GRIS_CLAIR 07 // 0x07
#define GRIS_FONCE 08 // 0x08
#define BLEU_CLAIR      09 // 0x09
#define VERT_CLAIR      10 // 0x0A
#define TURQUOISE_CLAIR 11 // 0x0B
#define ROUGE_CLAIR     12 // 0x0C
#define VIOLET_CLAIR    13 // 0x0D
#define JAUNE      14 // 0x0E
#define BLANC      15 // 0x0F

typedef struct {
                 unsigned char fxposX;
                 unsigned char fxposY;
                 char fxtext[40];
               } CMDTEXT;


