                          ------------------
                          T h e    V a u l t
----------------------------------------------------------------------
This file contains lots of stuff that's worth keeping for later use...
----------------------------------------------------------------------

these go protected into TfxControlData.h when they are overwritten, the
corresponding lines in TfxControlData.cpp have to be deleted then
	QPixmap aboutPix;
	QPixmap helpPix;
	
	QPixmap nextPix;	
	QPixmap prevPix;
	
	QPixmap playPix;	
	QPixmap openPix;
	QPixmap stopPix;
	QPixmap quitPix;
	
	QPixmap monoPix;
	QPixmap headphonePix;
	QPixmap stereoPix;

 	QLabel* qtarch_StatusBar;
	QLabel* qtarch_FileBar;
	
	QPushButton* qtarch_PlayButton;
	QPushButton* qtarch_OpenButton;
	QPushButton* qtarch_StopButton;
	QPushButton* qtarch_QuitButton;
	
	QLCDNumber* qtarch_SongLcd;
	QPushButton* qtarch_DownButton;
	QPushButton* qtarch_UpButton;

	QLCDNumber* qtarch_BitLcd;
	QPushButton* qtarch_EightButton;
	QPushButton* qtarch_SixteenButton;

	QLCDNumber* qtarch_FreqLcd;
	QPushButton* qtarch_HiButton;
	QPushButton* qtarch_LoButton;

	QCheckBox* qtarch_ToolTipCheck;

these includes also go into TfxControlData.h
	
#include <qlabel.h>
#include <qpushbt.h>
#include <qlcdnum.h>
#include <qchkbox.h>

these all go into TfxControlData.cpp

#include "buttons/about.xpm"
#include "buttons/help.xpm"

#include "buttons/next.xpm"
#include "buttons/prev.xpm"

#include "buttons/play.xpm"
#include "buttons/open.xpm"
#include "buttons/stop.xpm"
#include "buttons/quit.xpm"

#include "buttons/mono.xpm"
#include "buttons/headphone.xpm"
#include "buttons/stereo.xpm"

        // generate QPixmaps from XPM data...
        aboutPix=QPixmap(about_xpm);
        helpPix=QPixmap(help_xpm);
        nextPix=QPixmap(next_xpm);
        prevPix=QPixmap(prev_xpm);
        playPix=QPixmap(play_xpm);
        openPix=QPixmap(open_xpm);
        stopPix=QPixmap(stop_xpm);
        quitPix=QPixmap(quit_xpm);
        monoPix=QPixmap(mono_xpm);
        headphonePix=QPixmap(headphone_xpm);
        stereoPix=QPixmap(stereo_xpm);

        qtarch_PlayButton->setPixmap(playPix);
        qtarch_OpenButton->setPixmap(openPix);
        qtarch_StopButton->setPixmap(stopPix);
        qtarch_QuitButton->setPixmap(quitPix);
        qtarch_UpButton->setPixmap(nextPix);
        qtarch_DownButton->setPixmap(prevPix);
        qtarch_HelpButton->setPixmap(helpPix);
        qtarch_AboutButton->setPixmap(aboutPix);
        qtarch_MonoButton->setPixmap(monoPix);
        qtarch_HeadphonesButton->setPixmap(headphonePix);
        qtarch_StereoButton->setPixmap(stereoPix);
