/**************************************************************************** | Digital Audio Processor | ======================= | | Filename : DPTich_prefs.h | | Object : None | | Description : Preferences header file | | (c) Richard Kent 1997 | | $Id: DPTich_prefs.h,v 1.1 2003/09/10 00:06:24 rk Exp $ | ****************************************************************************/ #ifndef _DPTich_prefs_h #define _DPTich_prefs_h #include "forms.h" #include "DPSample.h" #define PREFSNAME ".DAP.prefs" int loadPreferences (); int savePreferences (); int readLine (FILE *file,char *buffer,int bufferLen); void updatePrefsForm (void); void updateSamplePrefs (void); void defaultSamplePrefs (void); void switchVertControls (int on); void switchTextSize (int size); void changeBorderWidth (int width); void switchTextSizeForm (FL_FORM *form,int size); void changeBorderWidthForm (FL_FORM *form,int width); #endif // _DPTich_prefs_h /***************************************************************************/