


*** Installation notes :
	
	The following libraries need to be installed before compiling :
	     - gtk+ ( ftp://ftp.gimp.org/pub/gtk) : jview needs gtk+ v1.1 (or better) 
		and will probably not work with older versions of gtk
	     - the jpeg library
	     - the png library

	To install jview type as usualy :
		$ ./configure
		$ make
		$ make install

	Please report bugs to david Ramboz <dramboz@imaginet.fr>

	Thanks.

*** The code is organized in the following way :

  base widgets :
	filebrowser.c : implement a file tree
	ubox.c : implement a box that can contain cells off the same
	      size.
	imageubox.c : draws images previews in a ubox.
	imageviewer.c : views image at fullsize, allow zoom in/out

  toplevel "objects" :
	browsers.c : Implement 2 objects :	
	       - ImageBrowser : order a collection of images in pages of fixed
	       size (like a photo album). This was done avoid excessive swapping
	       - DirectoryBrowser : contains a filebrowser widget and an
	       ImageBrowser. Interactively preview directorie's contents.
	

  database :
	ldb.c : low level database. 	
	imdb.c : image database.	
	gimdb.c : gui for the image database


  others :
	image.c : general interface to read files of misc graphics formats. Manage
	    buffering & conversion from 24 bit data to the depth of he screen.
	prefs.c : handle preferences
	profile.h : 
	jpeg.c : jpeg decompression functions. ( Interface to the jpeg library)
		
	