This upload is an demo of:

			Placemat for Turbo Pascal v6.0
		Version 1.01 for MS\DOS(R) compatible computers

		     (C) Copyright P.R. Serrarens, 1993

It will only show an about... window once in a while.


written by:
	P.R. Serrarens
	Raadhuisstraat 40
	1474 HH  OOSTHUIZEN
	TEL: +31 - (0)2991 - 3540
	The Netherlands
	E-Mail:	passerra@fwi.uva.nl

What it is:
----------

Placemat is a text-based user interface for Turbo Pascal v6.0 programs.
It works like many other window systems, only much better.
It provides:
	- Nice window-look.
	- Works with 25, 43 and 50 lines modes.
	- All window are draggable, sizeable at the same time
		(So not only the active window is sizeable for example)
	- All menus of all window are selectable at the same time
		(Not only the active window)
	- It uses NO Processor time of your program. Windows can only be
	  manipulated during read and write actions. But you will see that
	  this will be enough.
	- All windows have their own menu
	- Windows can contain many views
	- Each view can have vertical and horizontal scrollbars
	- A user-friendly program interface

How it works:
------------

The main routines are in P_KERNAL.TPU both P_WINDOWS.TPU and P_CRT.TPU use
this unit, so you have to put P_KERNAL.TPU in your TPU-directory.
You don't have to include the file!!

If you want to use Placemat, your program has to be like this:

	program MyProgram;

	uses	P_Windows,
		P_Crt;		{Only if want want to make use of the Crt
				 rountines}

	begin
		InstallPlacemat ( Width, Height, 0);

		(....)
		(Your program using the Placemat-routines)
		(....)

		RemovePlacemat;
	end.

See the P_WINDOW.DOC and P_CRT.DOC how to use the routines of placemat.

See also the demo PLACEMAT.PAS, it will explain a lot.

Mouse:
=====

Close:
	Click with the left mousebutton on the button in the lefthand
	uppercorner of the window.

Drag:
	Click and hold the left mousebutton on the titlebar fo the window
	and move your mouse.

Size:
	Click and hold the right mousebutton on the edges of the window
	and move your mouse.

Activate:
	Click with the left mousebutton in the window.

Window to back and front:
	Click with the right mousebutton in the window. If the window is
	in front of all window, it will move to the back. In all other
	cases it will move to the front.

Menu:
	Click and hold the left mousebutton in the menubar and select the
	item you want.

Scrollbars:
	Move one line up or down:
		Click with the left mousebutton on the arrows at the
		beginning and end of the scrollbar.
	Move one page up or down:
		Click with the left mousebutton in the scrollbar above or
		under the scroll (the white bar).
	Move with mouse:
		Clock and hold the left mousebutton on the scroll (the
		white bar) and move your mouse.

Buttons:
	Click with the left mousebutton on the button.
