home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume6 / xsbm / part01 / README < prev    next >
Text File  |  1993-04-28  |  1KB  |  34 lines

  1. xshowbitmap.c -- Dan Heller <argv@sun.com>
  2.  
  3. Displays a set of bitmaps specified on the command line, from a pipe
  4. or typed into stdin.  Bitmaps must be specified as file names.
  5.  
  6. All the bitmaps are drawn into one large pixmap which is used as the
  7. XtNbitmap for a Label Widget.  This label widget is placed in a viewport
  8. widget so you can scroll around in it.  The bitmaps are displayed in
  9. an equal number of rows and columns if possible.  You may override this
  10. by specify *either* the number or rows (-rows N) or the number of
  11. columns (-cols) to use.  You can't specify both.
  12.  
  13. Usage: xshowbitmap
  14.   -s sorts the bitmaps in order of size (largest first)
  15.   -v verbose mode for when input is redirected to stdin.
  16.   -vw width of viewport window
  17.   -vh height of viewport window
  18.   -fg foreground_color
  19.   -bg background_color
  20.   -rows N (cannot be used with -cols)
  21.   -cols N (cannot be used with -rows)
  22.   -fn font  (bitmap filename is printed with bitmap in "font")
  23.   -bw max-width  (bitmaps larger than this width are excluded; default 64)
  24.   -bh max-height  (bitmaps larger than this height are excluded; default 64)
  25.   - indicates to read from stdin.  Piping doesn't require the '-'
  26.     argument.  With no arguments, xshowfonts reads from stdin anyway.
  27.  
  28. Example:
  29.  xshowfont /usr/include/X11/bitmaps/*
  30.  
  31. compile: (triple click and paste next line)
  32.      cc -O -s xshowbitmap.c -lXaw -lXt -lXmu -lX11 -o xshowbitmap
  33.  
  34.