PicView Simple
--------------

How to view a picture file using the plugin:
--------------------------------------------
  This plug-in allows you to view images inside the window of FAR manager. It
will not work in full screen mode.
  You can view a file in several ways:
  1. Panels: position the cursor on the file and then open the plug-in from
plug-in commands menu.
  2. Viewer: open the file in a viewer and then open the plug-in from plug-in
commands menu.
  3. Editor: open the file in an editor and then open the plug-in from plug-in
commands menu.
  4. Command-line: enter the following command in the command-line:
picviews:filename.
  5. From inside your plug-in: This plug-in exports the following function:
BOOL WINAPI GetJiggyWithIt(const char *FileName). This function receives the
file name of the image and returns TRUE on success and FALSE on error.
Example of how to use this function:

BOOL (WINAPI GetJiggyWithIt*)(const char *FileName);
HMODULE hPVS=NULL;
hPVS=GetModuleHandle("picviewsimple.dll");
if (hPVS)
{
  GetJiggyWithIt=(BOOL (WINAPI*)(const char*))GetProcAddress(hPVS,"GetJiggyWithIt");
  if (GetJiggyWithIt)
    GetJiggyWithIt("C:\Pictures\SuperCoolImage.png")
}


What can you do while viewing a picture:
----------------------------------------
1. Press the TAB key to switch focus to one of the three elements of the
view dialog - Title, Image, Info.
2. Press Ctrl-R redraw the image.
3. Press +/- to view all the parts of a multi-page picture file.
