Ignore:
Timestamp:
07/07/06 11:57:27 (18 years ago)
Author:
navarro
Message:

english and nicer header (1)

Location:
trunk/SRC/Picture
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Picture/image_viewer.pro

    r132 r133  
    11;+ 
    2 ; NAME: 
    3 ;       IMAGE_VIEWER 
    4 ; 
    5 ; PURPOSE: 
    6 ;       The purpose of this program is to provide an interactive tool that can be used 
    7 ;       to view JPEG, BMP, GIF, PNG, and TIFF picture files.  Images are loaded into 
    8 ;       memory, so the initial file access may take a while, but once each picture has 
    9 ;       been opened they can all be viewed in a very rapid fashion. 
    10 ; 
    11 ; CATEGORY: 
    12 ;       Visualization, Widgets 
    13 ; 
    14 ; CALLING SEQUENCE: 
    15 ;       image_viewer 
    16 ; 
    17 ; INPUT PARAMETERS: 
    18 ;       None. 
    19 ; 
    20 ; KEYWORD PARAMETERS: 
    21 ;       None. 
    22 ; 
    23 ; OUTPUTS: 
    24 ;       None. 
    25 ; 
    26 ; COMMON BLOCKS: 
    27 ;       None. 
    28 ; 
    29 ; SIDE EFFECTS: 
    30 ;       While this program is running in an IDL session it will change the current 
     2; 
     3; @file_comments  
     4; The purpose of this program is to provide an interactive tool that can be used 
     5; to view JPEG, BMP, GIF, PNG, and TIFF picture files.  Images are loaded into 
     6; memory, so the initial file access may take a while, but once each picture has 
     7; been opened they can all be viewed in a very rapid fashion. 
     8; 
     9; @categories Visualization, Widgets 
     10; 
     11; @param event {in}{required} 
     12; 
     13; @restrictions While this program is running in an IDL session it will change the current 
    3114;       working directory, enables/disables color decomposition, and sets !QUIET=1, 
    3215;       !ORDER=0, & !P.BACKGROUND=0.  These settings are returned to their initial 
    3316;       settings before the program was initiated once it is terminated. 
    3417; 
    35 ; RESTRICTIONS: 
    36 ;       This program is supported in IDL version 5.5 and newer.  In order to open 
     18; @restrictions This program is supported in IDL version 5.5 and newer.  In order to open 
    3719;       GIF files or TIFF files with LZW compression the copy of IDL being used must 
    3820;       be licensed with these features.  IDL only supports BMP files in the standard 
    3921;       Windows format and does not support OS2 bitmaps. 
    4022; 
    41 ; MODIFICATION HISTORY: 
    42 ;       Written by: AEB, 1/02. 
    43 ;- 
    44  
    45  
    46 ;********************************************************************************************* 
     23; @history Written by: AEB, 1/02. 
     24; 
     25; @version $Id$ 
     26;********************************************************************************************* 
     27;_ 
     28 
    4729PRO IMAGE_VIEWER_OPEN_FILES,event 
    4830;THIS PROCEDURE IS CALLED WHEN A USER SELECTS "File > Open Picture Files" FROM THE MAIN MENU 
     
    126108 
    127109;********************************************************************************************* 
     110;+ 
     111; @param event {in}{required} 
     112;- 
    128113PRO IMAGE_VIEWER_OPEN_FOLDER,event 
    129114;THIS PROCEDURE IS CALLED WHEN A USER SELECTS "File > Open All In Folder" FROM THE MAIN MENU 
     
    208193 
    209194;********************************************************************************************* 
     195;+ 
     196; @param event {in}{required} 
     197;- 
    210198PRO IMAGE_VIEWER_CANCEL,event 
    211199;obtain state structure for top-level-base from its UVALUE: 
     
    221209 
    222210;********************************************************************************************* 
     211;+ 
     212; @param event {in}{required} 
     213;- 
    223214PRO IMAGE_VIEWER_TIMER,event 
    224215;obtain state structure for top-level-base from its UVALUE: 
     
    893884 
    894885;********************************************************************************************* 
     886;+ 
     887; @param event {in}{required} 
     888;- 
    895889PRO IMAGE_VIEWER_EXIT,event 
    896890;THIS PROCEDURE IS CALLED WHEN A USER SELECTS "File > Exit" FROM THE MAIN MENU 
     
    905899 
    906900;********************************************************************************************* 
     901;+ 
     902; @param event {in}{required} 
     903;- 
    907904PRO IMAGE_VIEWER_HELP,event 
    908905;THIS PROCEDURE IS CALLED WHEN A USER SELECTS "Help > Help on IMAGE_VIEWER" 
     
    924921 
    925922;********************************************************************************************* 
     923;+ 
     924; @param event {in}{required} 
     925;- 
    926926PRO IMAGE_VIEWER_THUMBS,event 
    927927;THIS PROCEDURE IS CALLED WHEN A USER CLICKS ON ONE OF THE THUMBNAIL PICTURES 
     
    971971 
    972972;********************************************************************************************* 
     973;+ 
     974; @param widjetID {in}{required} 
     975;- 
    973976PRO IMAGE_VIEWER_CLEANUP,widgetID 
    974977;THIS PROCEDURE IS CALLED WHEN THE PROGRAM IS TERMINATED AND XMANAGER REGISTERS A CLEANUP: 
     
    9991002 
    10001003;********************************************************************************************* 
     1004;+ 
     1005; @param event {in}{required} 
     1006;- 
    10011007PRO IMAGE_VIEWER_EVENT,event 
    10021008;THIS PROCEDURE IS CALLED WHEN A USER RESIZES THE TOP-LEVEL BASE 
Note: See TracChangeset for help on using the changeset viewer.