"Fossies" - the Fresh Open Source Software Archive

Member "xzgv-0.9.2/doc/xzgv.texi" (3 Sep 2017, 106056 Bytes) of package /linux/misc/old/xzgv-0.9.2.tar.gz:


Caution: As a special service "Fossies" has tried to format the requested Texinfo source page into HTML format but that may be not always succeeeded perfectly. Alternatively you can here view or download the uninterpreted Texinfo source code. A member file download can also be achieved by clicking within a package contents listing on the according byte size field.

The xzgv manual

Next:   [Contents][Index]

1 Overview

xzgv is a picture viewer for X, with a thumbnail-based file selector. The thumbnails used (thumbnails being small ‘preview’ versions of the pictures) are compatible with xv, zgv, and the Gimp. The kinds of pictures xzgv allows to be viewed are raster-format pictures (sometimes called ‘bitmaps’ and/or ‘pixmaps’); things like GIF files, JPEG files, PNG files, and so on.

Most of the time, you will probably want to use xzgv’s file selector (see The File Selector) to pick which file(s) to view. This is what appears on the left-hand side of the window when you start xzgv as just xzgv (see Invoking xzgv). It displays a list of subdirectories and picture files in the current directory, along with small ‘thumbnail’ versions of the pictures if they exist. (If no thumbnails appear in a given directory, or if they are missing for some files, you can create/update them by pressing u. See Updating Thumbnails.)

When you’ve picked a file to view, you can view it by clicking on it, or pressing Enter. This reads the picture and displays it in the right-hand part of the window, the viewer (see The Viewer). You can then move around the picture (if it is larger than will fit) by dragging it with the mouse, or using the scrollbars, or the cursor keys. You can then select another image with the file selector (though you need to press Esc or Tab first if using the keyboard), or you can quit xzgv by pressing q.

While xzgv works much like any other X program, and is certainly mouse-friendly :-), it’s also designed to be keyboard-friendly. Everything in xzgv can be done entirely from the keyboard. Much of this keyboard support works like the original zgv (a similar console-based picture viewer for Linux).

This overview is, as you might expect, only the very simplest of introductions to what xzgv can do, and describes only a very basic use of xzgv. xzgv can do a lot more; read on to find out what.


Next: , Previous:   [Contents][Index]

2 Acknowledgements

xzgv was primarily written by Russell Marks, also the author of this manual. It is maintained by Reuben Thomas, who ported it to Gtk+ 2.

Costa Sapuntzakis contributed code for much faster JPEG thumbnail generation (to zgv, which I adapted for xzgv).

The directory/file icons used were loosely based on gmc’s dir-close.xpm. I think Tuomas Kuosmanen was responsible for that, judging from the change log.

mkinstalldirs is straight from the texinfo package, and was written by Noah Friedman. (This is also used during installation.)

Huge thanks go to the many people responsible for GTK+, without which xzgv would almost certainly not have happened. (But no thanks for Electric Eyes, which was nearly nice enough for me not to bother with xzgv at all! :-))

getopt*.[ch] are from the GNU libc.


Next: , Previous:   [Contents][Index]

3 Invoking xzgv

Normally you’d invoke xzgv as plain xzgv (perhaps via a window manager menu, or GNOME/KDE menu, etc.). However, you can directly specify files to view, or a start directory, on the command-line. In addition, there are various options.

(If you’re new to xzgv, you should probably skip the rest of this section for now and come back to it later.)

The general format of the xzgv command-line goes roughly like this:

xzgv [options] [dir | file ...]

Two types of options are supported — the traditional Unix single-letter options, and GNU-style long options. Most options can be used in either way, and both forms are listed in the table below.

Note that all options are processed after any configuration file(s). Config file settings are just like the long-option names below minus the -- (see Configuring xzgv), though a few command-line options are not permitted as config file settings (e.g. help), and vice versa.

Here’s what the options do:

-a
--auto-hide

Automatically hide selector when a picture is selected, allowing the viewer to use the whole window.

--careful-jpeg

Enable libjpeg ‘fancy upsampling’. xzgv defaults to using the faster method; as the libjpeg documentation puts it, “The visual impact of the sloppier method is often very small.”

--delete-single-prompt

(Note that this is normally enabled; use --delete-single-prompt=off to disable it.) If disabled, xzgv will immediately delete a file when told to, without prompting for confirmation. (It’s single because deleting multiple files at once will be supported in future, and that will have a separate prompt override.)

--dither-hicol

Use dithering in 15/16-bit, whatever the default setting is. See Viewer Options, for a discussion of benefits/drawbacks. You can also use --dither-hicol=off to disable this.

--exif-orient

In JPEG files, use Exif orientation tags (inserted by e.g. digital cameras) to correct image orientation before display. See Viewer Options, for details.

--fast-recursive-update

When doing a recursive thumbnail update, don’t read existing thumbnails before updating. This is pretty much obsolete as of xzgv 0.7, as the speed increase is now negligible. But, it may still be useful if you want to update a huge number of small directories for which few if any updates are needed.

-f
--fullscreen

Run fullscreen, using the entire screen for xzgv’s window, without even any window-manager decorations (window frame, title bar, etc.) if possible.

-g geom
--geometry geom

Set the xzgv window’s geometry (position and/or size) to geom. The geometry string should be in the usual X format, with the extension that positions/sizes may have a % suffix meaning that they are treated as percentages of the screen width/height. The default geometry is 92%x85%.

For those unfamiliar with the way ‘geometry’ works, here’s a brief description of the syntax. It’s WxH, or +X+Y, or WxH+X+Y, where W is width, H height, X the x position, and Y the y position. The first form specifies only the size, the second only the position — the WxH+X+Y form specifies both.

Now, the +X+Y bit normally specifies where the top-left of the window is. But you can use - instead of + for the x and/or y position, in which case it specifies the gap between the right/bottom of the window and the right/bottom of the screen. (Note, however, that any window frame your window manager adds to the window is disregarded in this calculation, so you may need to experiment somewhat to get the desired position.) You can also use negative numbers with both + and - — so +-50+0 puts the window partly off the left of the screen, and +0--50 puts it partly off the bottom of the screen — but this is of questionable value. :-)

Finally, as mentioned above, xzgv extends this syntax by allowing you to use % to specify percentages of the screen width/height rather than pixels, e.g. 50%x30%-30%-20%. It also allows you to use real numbers such as 12.34, which can be useful with %.

-h
--help

Display a list of options and a terse description of what the options do.

--image-bigness-threshold numpix

Set the boundary numpix after which images are considered ‘big’, and are no longer rendered all-at-once (which gives much nicer scrolling, but is harder on memory and can be slow for big images) but are instead rendered piece-by-piece. Units are number of pixels in image (i.e. width times height), and the default is 2000000 pixels.

-i
--images-only

Shows only directories and image file types in the selector, identified by their extensions.

--interpolate

Interpolate between the picture’s pixels when scaling up (see Scaling). This usually looks nicer, but it’s rather slow.

--mouse-scale-x

If enabled, control-clicking on the viewer scales only the X axis. (The default is to scale only the Y axis.)

--revert-orient

(Note that this is normally enabled; use --revert-orient=off to disable it.) If disabled, orientation (flip/mirror/rotate) state is retained between pictures (see Viewer Options).

--revert-scale

(Note that this is normally enabled; use --revert-scale=off to disable it.) If disabled, scaling is retained between pictures (see Viewer Options).

--selector-width

Set the default/initial size of the selector in pixels. The normal setting is 200.

-T
--show-tagged

Show names of currently-tagged files on exiting xzgv. (They’re listed to stdout, one per line.) This can be useful when you want to select multiple files graphically and work on them with something else.

--show-thumbnail-messages

Show on the status bar when thumbnails are being read. The status bar must be enabled for these messages to be visible, of course. :-)

-k
--skip-parent

For the first directory shown, skip the cursor past .. (the parent dir). This can be useful when you’d like to immediately use space to ‘page’ through the dir.

-o order
--sort-order order

Set the initial sorting order used in the selector. Possible settings are name, ext, size, and date (or time); only the first char of the setting (n/e/s/d/t) need be given. The default is name order.

--sort-timestamp-type type

Set the timestamp type to use when using time/date sorting order. Possible settings are ‘mtime’ (default), ‘ctime’, and ‘atime’; only the first char of the setting (m/c/a) need be given.

--statusbar

Show a status bar below the selector; this, for example, says when a picture is being read.

-t
--thin-rows

Use rows a third the normal height in the selector. This can be very useful on lower-resolution screens, or if you’re really interested in filenames, not thumbnails.

-v
--version

Show version number.

--version-gtk

Show version number of GTK+ xzgv is using.

-z
--zoom

Fit picture to viewer window, whatever its actual size (see Zoom Mode).

-r
--zoom-reduce-only

When in zoom mode, only reduce pictures to fit; i.e. make big pictures viewable all-at-once while leaving small picures intact.

-p
--zoom-panorama

When in zoom mode, adjust only the most proportional dimension to fit, and allow scrolling on the other dimension; i.e. like a fit page width option in PDF readers, but not limited to horizontal adjusting.

If started with xzgv files, xzgv hides the file selector and treats the file or files as if they were the sole contents of a directory. (It also automatically loads the first file.) As such, you can use the Next Image and Previous Image commands to navigate between the images, or do Exit to Selector and use the selector directly.

If started with xzgv start-dir, xzgv starts up as usual, but with the selector starting on the directory specified (rather than the current directory).

Settings which are either on or off (boolean) are, as you might expect, enabled by using e.g. -z or --zoom. However, there’s an alternative long-option form for setting these, resembling how they’re set in config files — the syntax is --option=state, where state is on/y/yes/1 to enable the option, or off/n/no/0 to disable it. The most useful thing about this is that it allows you to disable options which were previously enabled, by using e.g. --zoom=off.

(Readers used to the way GNU-style long options work should note that, since this on/off/etc. arg is optional, you can’t use the --option arg form in this case; it must be --option=arg for it to work.)


Next: , Previous:   [Contents][Index]

4 A Note on Notation

Much of this manual is taken up by a description of xzgv’s various commands in its file selector and viewer. Most of these are available both from the keyboard, and from popup menus. (A popup menu appears when you press F10 or Menu, or right-click on the selector or the viewer; each has its own menu.) So in the manual, you will often see things rather like this:

key
Selector menu, Menu the item is in, Menu item

Description of what the key/menu item does.

Sometimes the key given has a (Selector) or (Viewer) suffix; this is because some keypresses in xzgv are specific to the selector or the viewer, and won’t work unless the relevant part of xzgv has the keyboard focus.


Next: , Previous:   [Contents][Index]

5 The File Selector

Usually, on starting up xzgv, you’ll want to use the file selector — the list of files on the left. (The other subwindow (on the right) is the viewer.) The selector lets you pick files to view (among other things). It lists the subdirectories and picture files in the current directory, along with small ‘thumbnail’ versions of the pictures if they exist.


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.1 The Selector Menu

Almost all selector commands are available from the selector’s pop-up menu, which appears when you right-click anywhere on the selector. (You can also press F10 or Menu to bring up the menu, but as there are keyboard shortcuts for just about everything in xzgv, this isn’t often that useful. :-))

Usually, it doesn’t matter where on the selector you right-click. However, a few commands on the ‘File’ menu operate on a single file, the one selected by the keyboard cursor. A problem when using the mouse, you might think — but when you right-click on the selector, as well as popping up the menu, xzgv moves this cursor to the file you right-clicked on (if any). (You can see this by the way a hollow box is drawn around the file.) So to use e.g. ‘Details’ on the ‘File’ menu, you need to right-click on the file you want details on.

Both the selector and viewer have ‘Help’ menus, most items of which refer you to this manual:

F1
Selector menu, Help, Contents
Viewer menu, Help, Contents

View the manual’s overall contents.

Selector menu, Help, The File Selector

View the manual’s section on the file selector.

Viewer menu, Help, The Viewer

View the manual’s section on the viewer.

Selector menu, Help, Index
Viewer menu, Help, Index

View the manual’s concept index.

Selector menu, Help, About
Viewer menu, Help, About

Give some brief information about xzgv, including the version number and homepage.

Currently, the way xzgv lets you read the manual is a bit crude; it runs the info program (see Standalone info program) in an xterm.


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.2 Exiting xzgv

You can exit xzgv either by using one of two exit keypresses, or by selecting the appropriate option from the selector’s popup menu:

q
Ctrl-q
Selector menu, Exit xzgv

Quit xzgv.

(There’s also an exit option on the selector’s ‘File’ menu (Selector menu, File, Exit), as ‘Exit’ is generally on any File menu.)


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.3 Thumbnails

(This section is deliberately early on in the manual, as thumbnails are probably the most important feature of the file selector, so it’s best that you know how to create/update them sooner rather than later.)

Thumbnails are small versions of the pictures they represent, and are displayed by the file selector if they exist. xzgv uses xv-compatible thumbnails — if you create thumbnails with xv they will work with xzgv, and vice versa. xzgv’s thumbnails are also compatible with the Gimp, and zgv.

If no thumbnail exists for a file, a small ‘document’ icon appears instead (similar to the ‘folder’ icon used for directories).


Next: , Previous: , Up: Thumbnails   [Contents][Index]

5.3.1 Updating Thumbnails

While thumbnails can be made relatively quickly, it’s by no means an instant process. For this reason, thumbnails have to be created in advance, and are stored as files in their own right in a subdirectory .xvpics.

xzgv never creates/updates thumbnails without you telling it to. So, if you enter a directory where the picture files don’t have any thumbnails, or where the thumbnails seem to be out of date, you should press u, or select ‘Update Thumbnails’ from the selector’s menu. (Even if the thumbnails can’t be written (say, if you don’t have permission to write them), the selector will still show the updated thumbnails until you leave the directory.)

Alternatively, you can create/update thumbnails for the current directory and all subdirectories by using Alt-u or ‘Recursive Update’. But be warned that a recursive update can take some time!

u
Selector menu, Update Thumbnails

Create thumbnails for any files which don’t have them, and update thumbnails which are older than the corresponding file. While this is going on, a window appears showing how far through the process xzgv is.

While the update is in progress, you can abort it by clicking on the ‘Cancel’ button, or pressing Esc or Enter, or by clicking the delete-window button (if your window manager provides one) on the title bar. xzgv will stop once it has finished the thumbnail it is currently working on (if any).

Alt-u
Selector menu, Recursive Update

Create/update thumbnails for all files in the current directory and all subdirectories. This can take some time, so you are prompted to confirm you really want to do this (see Dialog Boxes). Progress is indicated in much the same way as for a normal update, but only for the directory currently being updated — the overall progress is not indicated, other than by the current dir being (as ever) displayed in the main window’s title. You can abort a recursive thumbnail update in the same ways as for a normal update (see above).

By default, xzgv behaves a little oddly when doing a recursive update, to give some consistency with the normal update. See Thumbnail Issues, for details.


Previous: , Up: Thumbnails   [Contents][Index]

5.3.2 Thumbnail Issues

Dealing with thumbnails can be ‘interesting’ at times, and there are a few ways this influences things:


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.4 Selector Layout and Resizing

The file selector is simply a list of subdirectories and filenames, along with any thumbnails that exist for them. The list is normally in asciibetical order (but you can change this; see Changing the Sorting Order). Names of directories are shown first, and they are shown in order at the beginning of the list, before all the picture files. Long filenames may not fit in the visible part of the file selector display; if so, there will be a horizontal scrollbar you can use to see the rest of the name(s) (you can use cursor left/right to do this from the keyboard).

The list is very often larger than can fit on the screen at once. If this is the case, only part is shown at a time, but you can move around the list using the (vertical) scrollbar, or with cursor up/down and the like.

If you find the selector window to be too small vertically, and would like to see more files at once, you can start xzgv fullscreen by using the ‘-f’ option (see Invoking xzgv), and/or use ‘thin rows’ mode (see File Selector Options).

If you find the selector too small (or too big) horizontally, you can change this by moving the splitter line’s ‘handle’ (a small square button between the selector and viewer, near the bottom of the window), which changes the relative sizes of the selector and viewer. You can move it by dragging it with the mouse, or with these keys:

[

Move the window split left.

Ctrl-[

Move the window split left more slowly.

]

Move the window split right.

Ctrl-]

Move the window split right more slowly.

~

Reset the window split to its default position.

You can also set the initial/default size of the selector — in effect, the position of the window split — using --selector-width (see Invoking xzgv) or the config file option selector-width.


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.5 Moving Around The List

This section is mainly for those of us more inclined to the keyboard side of the force. :-) Mouse-happy types can freely skip it.

When the selector has the keyboard focus, the cursor (or in GTK+ jargon, the ‘focus row’) is normally shown as a hollow box around one of the list’s rows. This serves the following functions:

There are several commands for moving the cursor. In summary, most ‘special’ keys like the cursors do what you’d imagine they do, but in more detail:

Cursor Up
k

Move up.

Cursor Down
j

Move down.

Page Up
Ctrl-u

Move the cursor back roughly a page.

Page Down
Ctrl-v

Move the cursor forward roughly a page.

Ctrl-Home
Ctrl-a

Move the cursor to the start of the list.

Ctrl-End
Ctrl-e

Move the cursor to the end of the list.

g
'

Move the cursor to the first filename starting with the next key pressed, which would generally be a letter or number. Case is significant; a and A are different. If no key is pressed within 2 seconds, the command is cancelled.

If no files start with the specified character, it moves to the first file which starts with a later char (in asciibetical order). If there are none for which this is the case, it moves to the last file — unless there are no files (just directories), in which case it has no effect.


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.6 Viewing a File

To view a file from the selector, you can click on it, or press Enter after moving the cursor to the relevant file, or right-click on the file and choose ‘File’ then ‘Open’.

Enter
Left-click-on-file
Selector menu, File, Open

View the chosen picture file, or if a subdirectory is chosen, make that the current directory.

See The Viewer, for details of how the viewer works.


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.7 Dialog Boxes

If xzgv has a serious problem reading a file, it will give an error. Errors are shown in dialogs which appear in the middle of the screen — they stay there until you click ‘Ok’ (or press Enter or Esc).

xzgv also uses similar dialog boxes for other things:


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.8 Closing a File

Usually, when you view a file, the viewer subwindow keeps displaying it until you view a different file. However, if you ‘close’ the file, the viewer stops displaying the file and returns to its initial state.

Ctrl-w
Selector menu, File, Close

‘Close’ the currently-viewed file, clearing the viewer subwindow.


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.9 File Details

The listing the selector gives for a file is pretty sparse — just the filename and (if the file has one) the accompanying thumbnail. While this does keep things simple, you sometimes want to know how much space a file takes up, when it was last modified, the dimensions of the image, that kind of thing. So, you can show details of a single file using the ‘file details’ command:

:
;
Selector menu, File, Details

Show various details about the file pointed to by the keyboard cursor. See The Selector Menu, for how to choose the file details are given for when using the mouse. (Basically, you right-click on the file when popping up the menu.)

Most of the details shown come from the OS (by using the stat(2) system call), and should always be available unless you have limited permissions for the directory the file is in. The file dimensions (width/height), however, come from the file’s thumbnail. If it doesn’t have one, or if it’s unreadable, or if it has one and it’s readable but it doesn’t mention the original image’s width/height, then the ‘Details from thumbnail’ area is greyed out.

(In explanation of the latter point — pre-5.0 versions of zgv did not generate width/height comments in thumbnails, so zgv users in particular may find the width/height details missing. (xzgv has always been ok, though, it’s just zgv which had this problem.) Worse yet, versions 5.0 and 5.1 generated them with incorrect sizes for most JPEGs. To fix either problem for a given directory, do rm -fr .xvpics in that dir from a shell prompt and recreate the thumbnails with zgv 5.2 or later, or xzgv/xv/Gimp.)


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.10 Tagging

The file selector is not restricted to working on one file at a time. You can ‘tag’ as many (or as few) files as you wish, and certain commands described in this section will act on them.

Initially, all files are untagged, and the filenames usually appear in black (though this depends on the GTK+ theme you’re using). Tagged files appear in red.


Next: , Previous: , Up: Tagging   [Contents][Index]

5.10.1 Tag and Untag Commands

There are several ways to tag or untag files. The keyboard-based ones which work on individual files (also available on the ‘Tagging’ menu) move the cursor down one row afterwards, to make tagging or untagging multiple files easier.

To tag or untag a single file with the mouse, control-click (i.e. hold down the control key and click) on the relevant filename or thumbnail in the selector. It’s true that you could use ‘Tag’ and/or ‘Untag’ on the ‘Tagging’ menu (see The Selector Menu, for how to choose the file tagged/untagged when doing it this way), but this is usually much less convenient than using control-click. (The menu entries for those are really just for completeness.)

There is also a command available in the viewer to tag the currently-viewed file. See Changing Picture, for details.

=
+
Keypad +
0
Selector menu, Tagging, Tag

Tag file.

-
Keypad -
9
Selector menu, Tagging, Untag

Untag file.

Alt =
Alt-Keypad +
Alt-0
Selector menu, Tagging, Tag All

Tag all files.

Alt -
Alt-Keypad -
Alt-9
Selector menu, Tagging, Untag All

Untag all files.

Alt-o
Selector menu, Tagging, Toggle All

Toggle all tags. This inverts the tagged state, so that all previously tagged files become untagged, and all previously untagged files become tagged.

Currently there is no way to toggle a (single) file’s tag state from the keyboard.


Next: , Previous: , Up: Tagging   [Contents][Index]

5.10.2 Moving Between Tagged Files

These commands let you search for (move to) the next or previous tagged file (if any). Note that ‘next’ and ‘previous’ here are relative to the keyboard cursor’s position; if you use these from the menu, be careful to right-click on the file you want to start the search from.

/
Selector menu, Tagging, Next Tagged

Move to next tagged file in dir.

?
Selector menu, Tagging, Previous Tagged

Move to previous tagged file in dir.

Equivalent commands are also available in the viewer (see Changing Picture).


Previous: , Up: Tagging   [Contents][Index]

5.10.3 Copying/Moving Files

You can copy or move tagged files to a directory you specify. If no files are tagged, xzgv copies/moves the file the cursor is currently on — unless the cursor is on a subdirectory, in which case it gives an error.

C (Shift-c)
Selector menu, File, Copy

Copy tagged files (or the current file) to a given directory. xzgv asks for the destination directory using a dialog (see Dialog Boxes) and copies the files there. If it comes to copy a file but there is an existing file in the dir with the same name, the file is not copied and nor are any of the remaining files.

M (Shift-m)
Selector menu, File, Move

Move tagged files (or the current file) similarly.


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.11 Renaming a File

As well as copying/moving files, you can rename them:

Ctrl-n
Selector menu, File, Rename file

Rename the current file or directory — xzgv will refuse to overwrite any existing files/directories. The new name must remain in the current directory. (See Copying/Moving Files, for how to move a file to a different directory (albeit keeping the same name).) See The Selector Menu, for how to choose the file renamed when using the mouse. (Basically, you right-click on the file when popping up the menu.)

I know Ctrl-n isn’t the most mnemonic keypress possible for ‘rename’, but all the good ones were taken. :-/


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.12 Deleting a File

Deleting a file is pretty straightforward:

Ctrl-d
Selector menu, File, Delete file

Delete the file pointed to by the keyboard cursor (and any accompanying thumbnail). See The Selector Menu, for how to choose the file deleted when using the mouse. (Basically, you right-click on the file when popping up the menu.)

Note that only one file is deleted (hence ‘Delete file’); there is currently no way to delete all tagged files.


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.13 Changing Directory

The easiest way to change the current directory in xzgv is usually to click on a directory entry in the file list (or move the cursor to it and press Enter). Selecting the .. entry moves to the parent directory of the current one.

There is an alternative though:

(Note that the key for this command is shift-g, not g.)

G
Selector menu, Directory, Change

Go to a specified directory. xzgv asks for the destination directory using a dialog box which you should type the dir’s name into (see Dialog Boxes), and moves to that directory if it exists.


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.14 Rescanning the Directory

Normally, xzgv reads a directory once (on starting up, or when a new directory is selected). So if the contents of the directory are changed by another program, this is not automatically reflected. You can, however, explicitly tell xzgv to ‘rescan’ the directory (reread the contents), which will update xzgv’s notion of what’s in it:

Ctrl-r
Selector menu, Directory, Rescan

Rescan the current directory.


Next: , Previous: , Up: The File Selector   [Contents][Index]

5.15 Changing the Sorting Order

Normally, the files are listed in asciibetical order by name. However, you can instead have the file list sorted by size, last-modified date/time, or by ‘extension’ (the file type).

(Only the order of files can be altered; directories are always listed first, and always in name order.)

Alt-n
Selector menu, Directory, Sort by Name

Sort by name. This is the default.

Alt-e
Selector menu, Directory, Sort by Extension

Sort by extension.

Alt-s
Selector menu, Directory, Sort by Size

Sort by size. The biggest files are listed last.

Alt-d
Selector menu, Directory, Sort by Time & Date

Sort by time/date. The newest files are listed last.

You can set the default sort order via the command-line (see Invoking xzgv) or a config file (see Configuring xzgv).

There are three possible timestamps you can use for the ‘Time & Date’ sorting order:

Alt-Shift-m
Selector menu, Directory, Time & Date Type, Modification Time (mtime)

Use the last-modified time (‘mtime’). This is the default.

Alt-Shift-c
Selector menu, Directory, Time & Date Type, Attribute Change Time (ctime)

Use the last-attribute-change time (‘ctime’). Note that this is not always the time the file was created, which it’s sometimes mistaken for; for example, moving a file with mv will usually change the ctime.

Alt-Shift-a
Selector menu, Directory, Time & Date Type, Access Time (atime)

Use the last-accessed time (‘mtime’). The selector order is not automatically updated when xzgv reads files, since this would probably be annoying; do a manual rescan if need be.


Previous: , Up: The File Selector   [Contents][Index]

5.16 File Selector Options

Various aspects of the file selector’s behaviour can be configured while xzgv is running, by using these toggle commands (which enable the feature if it was previously disabled, and vice versa).

These settings can also be altered using command-line options (see Invoking xzgv) and/or config file settings (see Configuring xzgv).

Alt-a
Selector menu, Options, Auto Hide

Toggle the auto-hiding of the selector when a picture is viewed (off by default). This is handy for small screens/windows, or for old-time zgv users who just dig that groovy modal interface, er, man. :-)

Alt-b
Selector menu, Options, Status Bar

Toggle status bar at the bottom of the selector (off by default). This displays messages in certain circumstances — normally, it just says when a picture is being read.

Selector menu, Options, Thumbnail Msgs

Toggle reading-thumbnails messages (default is off), only visible if the status bar is enabled. These messages make it clear when all thumbnails have been read, but having something flash up every time you change directory is generally just annoying.

v
Selector menu, Options, Thin Rows

Toggle ‘thin rows’ mode (off by default), in which thumbnails are shown at a third their normal size so that many more files can be shown at once. (The odd keyboard shortcut for this is inherited from zgv’s ‘visual’ mode toggle, which had a roughly similar effect.)

Alt-i
Selector menu, Directory, Images Only

Toggle the option to show only directories and image files in the selector (off by default). This is handy in directories where images and other file types are intermingled and you want to avoid the ’Couldn’t load image’ error on those other files. Images are identified by their extensions.


Next: , Previous:   [Contents][Index]

6 The Viewer

Once you’ve selected a file to view, it’s shown in the viewer (the right-hand part of xzgv’s window). This section describes what you can do while viewing the picture.

Like the selector, the viewer has its own menu — right-click anywhere on the viewer (or press F10 or Menu) to show it — and a similar help menu (see The Selector Menu).


Next: , Previous: , Up: The Viewer   [Contents][Index]

6.1 Exiting the Viewer

When using the mouse to control xzgv, it doesn’t matter whether the selector or the viewer has keyboard focus — mouse operations transcend such petty boundaries. :-) But keyboard control is (of necessity) effectively modal, and so you need to ‘exit’ the viewer in order to have keyboard control over the selector again. You also need to exit the viewer if you’ve enabled auto-hide mode.

Exiting the viewer is simple:

Esc
Tab
Viewer menu, Exit to Selector

Exit the viewer. This also returns the selector to its former size, if it was previously ‘hidden’.

Another way of exiting the viewer is to middle-click on it, but this mouse-only approach is really only of use when the selector is ‘hidden’.


Next: , Previous: , Up: The Viewer   [Contents][Index]

6.2 Big Pictures

A picture may well be too large to fit entirely in the viewer window. There are two main things which can help you see more of the picture at once:

But of course, these are only partial solutions to the problem; there will inevitably always be pictures larger than your screen can show at once. In general, then, there are two ways to see the whole of the picture.


Next: , Previous: , Up: Big Pictures   [Contents][Index]

6.2.1 Scrolling

Scrolling is the default approach to handling big pictures in xzgv. When the viewer is started up, the top-left of the picture is shown — you can either drag the picture around with the mouse (i.e. click and hold the button down, then move the mouse around), or use the scrollbars, or use the cursor keys (and others) to move around the rest of the picture:

Cursor Up
K

Move up 100 pixels. Ctrl-Cursor Up and k both move up 10 pixels.

Cursor Down
J

Move down 100 pixels. Ctrl-Cursor Down and j both move down 10 pixels.

Cursor Left
H

Move left 100 pixels. Ctrl-Cursor Left and h both move left 10 pixels.

Cursor Right
L

Move right 100 pixels. Ctrl-Cursor Right and l both move right 10 pixels.

Page Up
Shift-Cursor Up
Ctrl-u

Move up (nearly) the window height. (It moves by 90% of the height.)

Page Down
Shift-Cursor Down
Ctrl-v

Move down (nearly) the window height.

-
Shift-Cursor Left

Move left (nearly) a window-length. (It moves by 90% of it.)

=
Shift-Cursor Right

Move right (nearly) a window-length.

Home
Ctrl-a

Move to the top-left of the picture.

End
Ctrl-e

Move to the bottom-right of the picture.


Previous: , Up: Big Pictures   [Contents][Index]

6.2.2 Zoom Mode

An alternative way of viewing the whole picture, one which lets you see the picture onscreen all at once no matter how big (or small) it is, is zoom mode.

Zoom mode’s name derives from the idea of ‘zooming’ a small file up to fit the window. But in reality, it is more often used to reduce a large file to fit.

Zoom mode is not the default, and has to be enabled. Once enabled, it stays on until you turn it off again (or until you enable scaling, or select ‘Normal’ (see Scaling)).

z
Viewer menu, Options, Zoom (fit to window)

Toggle zoom mode.

Alt-r
Viewer menu, Options, When Zooming Reduce Only

When in zoom mode, only reduce pictures to fit. This can be useful when going through a lot of unpredictably-sized pictures, as it means that you can see all of a big picture easily without also meaning that tiny little icons assume a scale of Biblical proportions. :-)

Alt-p
Viewer menu, Options, When Zooming Panorama

When in zoom mode, resize to make the most proportional dimension fit and allow scrolling on the other dimension. This can be useful when viewing iamges that do not adjust nicely to the window size but you want to see them as big as possible while using the most space available. The cause for this function was to better read comics, so you can guess it works like a ’fit page width’ option, but is not limited to horizontal adjustment.

The way zoom mode reduces a file to fit the window is (relatively) quick but harsh, and may make the picture look a bit ugly. In future there may be a smoothing option like zgv’s ‘vkludge’, but for now I’m afraid the fairly crude resize is all that’s available.

There is in fact an alternative to zoom mode, as you can scale down an image instead. This is generally only useful for very large images, however; zoom mode tends to be the Right Thing for the most part.


Next: , Previous: , Up: The Viewer   [Contents][Index]

6.3 Scaling

You can scale a picture — this makes it appear larger (or smaller) onscreen. xzgv acts much as if the scaled picture were the real picture; for example, the cursor keys scroll around in steps of 100 scaled pixels, even if this means moving a fraction of a pixel (or many pixels) in the original picture (and similarly for movement with the mouse).

The main limitation of scaling (other than how much it slows things down :-), at least when scaling up) is that you can only scale by integer values, so you can only make each pixel in the image twice as wide/high, or three times as wide/high, or four times, and so on.

(It may seem odd saying e.g. ‘twice as wide/high’ rather than ‘twice the size’, but technically ‘twice the size’ would be referring to scaling up the width (and height) by about 1.414…)

Normally, xzgv does no scaling, which could be considered a ratio of 1:1. Scaling up increases that ratio. How it is increased depends on which option/key you use:

d
Viewer menu, Scaling, Double Scaling

Increase the ratio by doubling it — this leads to ratios of 2:1, 4:1, 8:1…

s
Viewer menu, Scaling, Add 1 to Scaling

Increase the ratio by adding one — leads to ratios of 2:1, 3:1, 4:1…

There are similar commands to decrease the ratio:

D (Shift-d)
Viewer menu, Scaling, Halve Scaling

Decrease the ratio by halving it.

S (Shift-s)
Viewer menu, Scaling, Sub 1 from Scaling

Decrease the ratio by subtracting one.

Usually the double/halve scalings are more useful.

Note that you can also double/halve the scaling by using shift-left-click on the viewer to double, and shift-right-click to halve. This still changes scale ‘around’ the middle of the window though (rather than around the point clicked on, as you might expect), which is a little strange and may possibly be changed in future.

When you scale ‘below’ 1:1, the above commands lead to ratios of (e.g.) 1:2, 1:4, 1:8, etc. — that is, the ratios work the same way, but the other way around. This gives you an increasingly small image.

The scaling ratio is never decreased below 1:32. It is also never increased beyond the point where the overall image size would exceed 32767x32767 — this limit is due to the combination of X’s limit on window sizes, and the implementation used by xzgv for scaling.

One problem with scaling up, given the way it’s currently implemented, is that it’s not well-suited to dithered display — so if you’re running on an 8-bit server, dragging the image around slowly when using scaling (especially scaling with interpolation) may result in some nasty, streaky, undithered-looking parts of the picture. :-(

You can undo the effect of scaling (up or down) at any time:

n
Viewer menu, Scaling, Normal

Resume ‘normal’ display — disables scaling mode, and also zoom mode.

Normally, scaling up works by simply making the pixels into larger and larger squares (in effect), which remain the same colour. However, you can enable a feature called ‘interpolation’ which smoothly graduates the colour change between the top-left corners of each pixel. This is very slow, but looks nice.

i
Viewer menu, Options, Interpolate when Scaling

Toggle interpolation in scaling mode.

(If you like the appearance of scaling with interpolation, you may also be interested in a program I wrote called pnminterp, which can scale up a PGM or PPM file while applying this effect. These days it’s part of the netpbm package.)

Scaling down, however, is implemented a bit like a special-case zoom mode, and currently there are no ways of making that look nicer. :-/

xzgv normally ‘reverts’ scaling (returning the scale to 1:1) back to normal when you view a new picture. However, it’s possible to disable this behaviour (see Viewer Options).

There is also support for an alternative form of scaling — decoupled, or axis-specific, scaling. When you scale in this way, only one axis of the image is scaled at once. For example, you might choose to effectively double the height of an image (with the width left unchanged). Indeed, this sort of scaling is useful for temporarily correcting pictures intended for display using pixels twice as wide or high as normal.

x
Viewer menu, Scaling, X Only, Double Scaling

Increase the (x axis) ratio by doubling it.

X (Shift-x)
Viewer menu, Scaling, X Only, Halve Scaling

Decrease the (x axis) ratio by halving it.

Alt-x
Viewer menu, Scaling, X Only, Add 1 to Scaling

Increase the (x axis) ratio by adding one.

Alt-Shift-x
Viewer menu, Scaling, X Only, Sub 1 from Scaling

Decrease the (x axis) ratio by subtracting one.

y
Viewer menu, Scaling, Y Only, Double Scaling

Increase the (y axis) ratio by doubling it.

Y (Shift-y)
Viewer menu, Scaling, Y Only, Halve Scaling

Decrease the (y axis) ratio by halving it.

Alt-y
Viewer menu, Scaling, Y Only, Add 1 to Scaling

Increase the (y axis) ratio by adding one.

Alt-Shift-y
Viewer menu, Scaling, Y Only, Sub 1 from Scaling

Decrease the (y axis) ratio by subtracting one.

There are also mouse shortcuts for scaling up/down a single axis; control-left-click scales up, and control-right-click scales down. By default this acts on the y axis, but the active axis can be toggled with Alt-c, or by toggling the Ctl+Click Scales X Axis option (see Viewer Options).

Interpolation is not currently supported in situations where the x scaling does not match the y scaling.


Next: , Previous: , Up: The Viewer   [Contents][Index]

6.4 Mirror and Rotate

Sometimes when viewing a picture you will want to flip it horizontally or vertically, or rotate it:

m
Viewer menu, Orientation, Mirror (horiz)

‘Mirror’ the picture (flip it horizontally).

f
Viewer menu, Orientation, Flip (vert)

‘Flip’ the picture (flip it vertically).

r
Viewer menu, Orientation, Rotate Right

Rotate the picture 90 degrees clockwise.

R (Shift-r)
Viewer menu, Orientation, Rotate Left

Rotate the picture 90 degrees anti-clockwise. (Any US readers surprised and/or annoyed by my not saying ‘counter-clockwise’ will realise why the menus say rotate right/left. :-))

N (Shift-n)
Viewer menu, Orientation, Normal

Restore the picture orientation to normal. This undoes the effect of any mirrors, flips, and/or rotations.

xzgv normally ‘reverts’ the picture orientation (the way the picture has been transformed by mirror/flip/rotate) back to normal when you view a new picture. However, it’s possible to disable this (see Viewer Options), so that any new pictures are mirrored, flipped, and/or rotated in the same way.


Next: , Previous: , Up: The Viewer   [Contents][Index]

6.5 Changing Picture

It’s possible to go directly to the previous or next file (or tagged file) in the directory, or to tag a file, without having to pick the file from the file selector by hand. These commands are particularly useful when using xzgv from the keyboard, but there’s also a notable mouse shortcut for moving to the next image.

Space
Viewer menu, Next Image

Move to next file in dir, and view it. You can also click on the picture/viewer to do this. (If you find this interferes with dragging the picture around (though it shouldn’t), or just don’t like it, it can be disabled (see Config Variables).)

b
Viewer menu, Previous Image

Move to previous file in dir, and view it.

Ctrl-Space
Viewer menu, Tagging, Tag then Next

Tag current file, then move to next file in dir and view it.

/
Viewer menu, Tagging, Next Tagged

Move to next tagged file in dir, and view it.

?
Viewer menu, Tagging, Previous Tagged

Move to previous tagged file in dir, and view it.


Next: , Previous: , Up: The Viewer   [Contents][Index]

6.6 Hiding the Selector

When running on small screens, or in a small window, it can get a bit annoying to lose viewer space by having the selector constantly displayed when you don’t actually need it. The usual solution to this problem is to enable auto-hide mode. But what if some pictures you’re viewing are small and some large? It can sometimes be nearly as annoying having the selector hidden to ‘make room for’ a small picture which didn’t need it. So for that reason, or perhaps if you just don’t like auto-hide mode :-), you may prefer to leave auto-hide off and explicitly hide the selector when necessary:

Z (shift-z)
Viewer menu, Window, Hide Selector

Hide the selector. (This is actually a toggle, of sorts; ‘hide selector’ when it’s already hidden unhides it.)

You can also hide or unhide the selector by middle-clicking on the viewer.


Next: , Previous: , Up: The Viewer   [Contents][Index]

6.7 Minimizing xzgv

Generally it’s easy enough to use your window manager to change windows etc., but when running fullscreen this can sometimes be a little problematic. For this reason, xzgv has built-in support for ‘iconifying’ itself:

Ctrl-z
Viewer menu, Window, Minimize

Minimize the xzgv window.


Previous: , Up: The Viewer   [Contents][Index]

6.8 Viewer Options

As with the selector, various options can be disabled/enabled which relate to the viewer.

These settings can also be altered using command-line options (see Invoking xzgv) and/or config file settings (see Configuring xzgv).

z
Viewer menu, Options, Zoom (fit to window)

Toggle zoom mode, discussed in more detail elsewhere (see Zoom Mode).

Alt-r
Viewer menu, Options, When Zooming Reduce Only

Toggle reduce-only in zoom mode, also covered elsewhere (see Zoom Mode).

Alt-p
Viewer menu, Options, When Zooming Panorama

Toggle panorama view in zoom mode, also covered elsewhere (see Zoom Mode).

i
Viewer menu, Options, Interpolate when Scaling

Toggle interpolation when a picture is being scaled-up. Again, this has already been mentioned (see Scaling).

Alt-c
Viewer menu, Options, Ctl+Click Scales X Axis

Toggle the axis scaled when you control-click (or control-right-click) on the image. The default is to scale the y axis.

F (shift-f)
Viewer menu, Options, Dither in 15 & 16-bit

Toggle dithering in 15/16-bit modes. This increases the apparent colour depth making gradations look much better, but it’s slower than undithered rendering, and can (in 16-bit) slightly distort a picture’s colour balance. (The F key was chosen for this as the dither toggle is functionally similar to zgv’s ‘fakecols’ toggle.)

Viewer menu, Options, Revert Scaling For New Pic

Normally xzgv returns the scaling back down to 1 (normal) when a new picture is selected. By disabling this, you can retain scaling across picture selection. (There is currently no keyboard shortcut for this fairly-seldom-changed option — to toggle it from the keyboard, you should use the popup menu (press F10), and select the menu item.)

Viewer menu, Options, Revert Orient. For New Pic

Similarly, xzgv returns to the picture’s true orientation (not mirrored, rotated, etc.) on selecting a new picture. Disabling this option means that any mirrors/flips/rotates applied persist across multiple images. (No keyboard shortcut — see above.)

Viewer menu, Options, Use Exif Orientation

Toggle support for Exif orientation. Devices which create JPEG files in the Exif format (e.g. many digital cameras) may add an orientation tag to the file, which says how the camera was being held when the picture was taken. When this tag is present, xzgv can adjust the image to compensate for a camera being held on its side. (This isn’t done by default as it misrepresents the true image, which could be confusing if you don’t know why it’s happening.) Enabling this option may be useful if you take pictures with your camera on its side, but don’t want to have to rotate the pictures before being able to view them properly. Of course, for this to work your camera has to be inserting the orientation tag in the first place — but it can’t hurt to try it and see. (No keyboard shortcut — see above.)


Next: , Previous:   [Contents][Index]

7 File Formats

Picture files are stored in a variety of different forms, or ‘file formats’. xzgv, via gdk, supports many.


Previous: , Up: File Formats   [Contents][Index]

7.1 File Type Identification

The format a file is in is identified by its content. The file-reading code relies on libgdk to determine the file type and read the file correctly; generally this uses the format’s ‘magic number’ to determine file type — e.g. a JPEG/JFIF file starts with the (hex) bytes FF D8. So if you start xzgv with ‘xzgv foo’, and foo is in a supported format (such as JPEG), the format will be figured out and the file loaded even though the ‘extension’ is absent.


Next: , Previous:   [Contents][Index]

8 Configuring xzgv

Many aspects of the way xzgv works can be modified by using a configuration file.


Next: , Previous: , Up: Configuring xzgv   [Contents][Index]

8.1 Config Files

A configuration file lets you alter aspects of xzgv’s behaviour. xzgv supports two possible config files — a system-wide one, /etc/xzgv.conf; and one for each user in their home directory, $HOME/.xzgvrc. Both are optional. If $HOME/.xzgvrc exists, it is used instead of /etc/xzgv.conf.

Before describing the format of config files, it may help to give an example file:

# Sample xzgv config file
# Comment lines begin with `#' and are ignored,
#  as are blank lines.

# make pics fit window
zoom on
# hog the screen :-)
fullscreen on

It is a line-based format. Each line (or rather, each line which is not a comment line and is not blank) assigns a value to a single predefined ‘variable’. xzgv has many such variables it lets you modify in this way. For example, the ‘fullscreen’ option above controls whether or not xzgv tries to use the whole screen for its window. If it is given the value on/y/yes/1 it does; if off/n/no/0, it doesn’t. Most variables are of this yes-or-no ‘boolean’ type.

Since the variables set in a config file have a direct effect on how xzgv works, it can be easier to simply call them ‘settings’. Indeed, such terminology is used on occasion in this documentation.


Next: , Previous: , Up: Configuring xzgv   [Contents][Index]

8.2 Config Variable Types

There are various types of variable:


Previous: , Up: Configuring xzgv   [Contents][Index]

8.3 Config Variables

Currently, most configuration variables (settings) in xzgv can also be set by command-line options; indeed, the name of the setting in all such cases is identical to that for the long version of the option (e.g. fullscreen, auto-hide). As such, they’re documented in the section which discusses command-line options and the like (see Invoking xzgv).

However, there are some settings only available in the config file:

click-for-next

This is enabled by default, allowing you to click on the viewer to skip to the next image. If disabled, clicking on the viewer does nothing.


Next: , Previous:   [Contents][Index]

9 Rationale

Here I (RJM) attempt to explain why I did things the way I did. This is presented in a question-and-answer format of sorts.


Next: , Previous: , Up: Rationale   [Contents][Index]

9.1 Why Yet Another Viewer?

Previously, this section concentrated on xv; that may have made sense when I originally wrote it, and still makes a certain limited amount of sense for zgv, but for xzgv it was looking increasingly dated. And so here I am writing an update. :-)

I originally wrote xzgv as I simply wasn’t happy with the viewers for X that I was aware of at the time (mid-1999). At the time of writing (late 2000), other key things about xzgv are becoming apparent, partly through responses I’ve been getting to it:

I won’t pretend xzgv is The Ultimate Viewer For Everyone. Some people will prefer other approaches, or just simply prefer other viewers. (Some people may even still use xv, ghod forbid.) There are a few viewers which you may like to try if you don’t think much of xzgv:

Ah, you say, what of xv? Well, we’ve emphatically reached the point where no-one need use xv any more. Anyone using xv these days really should drop that pile of ill-conceived non-Free crap and use one of the better viewers now available. It’s that simple.


Next: , Previous: , Up: Rationale   [Contents][Index]

9.2 Why no image-editing capabilities?

It’s a fscking viewer, dammit. If you want xv you know where to find it.

(OTOH, if you want a decent image editor, use the Gimp.)


Next: , Previous: , Up: Rationale   [Contents][Index]

9.3 Why a Texinfo Manual?

For years, I maintained a conventional ‘man page’ for zgv (which xzgv was loosely based on). But over time, I realised just how impossibly confusing the zgv man page had become.

So I wanted to rewrite zgv’s documentation in a more sensible way, in some other format than a man page. I wanted an established, well-supported format with structure and cross-referencing. I felt this made it a choice between HTML and texinfo. HTML seemed to me to be a moving target like no other, and not as well supported on text-only terminals as Info (and thus texinfo). (This latter point is admittedly not too relevant as far as xzgv is concerned.) When I noticed that a converter existed to convert texinfo to HTML in any case, the case was closed. xzgv’s documentation was then based on zgv’s — the documentation is probably more similar than the programs are. :-)

Don’t get me wrong — I like man pages. And even with the excellent Texinfo documentation and Emacs’ very helpful Texinfo mode, writing texinfo is hardly easy. (Without Texinfo mode’s node- and menu-update commands, I personally would find it near-impossible!) But big man pages just aren’t that good for reference, and this is made worse by the relative lack of structure.


Previous: , Up: Rationale   [Contents][Index]

9.4 Why One-space Sentence Ends?

The conventional way to write texinfo is to follow each sentence with two spaces after the dot (or whatever ends the sentence). Many people normally write this way in a non-texinfo context too. But a sizeable proportion of people normally write text with only one space after the dot — and I’m one of them.

The Texinfo documentation gives the impression that two-space must be used; it says “it is important to put two spaces at the end of sentences in Texinfo documents.” But the only circumstance in which spacing from the texinfo file is preserved at all (in any sense other than ‘there is a space here’) is when the texinfo is converted to Info format. So, in fact, the decision to use two-space depends on how the author wants Info output to appear — this is a subjective decision which should be entirely down to the preference of the author, despite the Texinfo documentation’s attempt to make two-space sound like an objective you-must-do-this kind of thing.

You might wonder what the problem with using one-space is, then. Well, ‘makeinfo’ has to reformat paragraphs, and whenever it needs to insert space at (what appears to it to be) the end of a sentence, it inserts two spaces. This behaviour cannot be altered, unlike in Emacs (‘sentence-end-double-space’; see Fill Commands in The Emacs Editor) and GNU fmt (‘-u’; see fmt invocation in GNU Text Utilities). Also, attempting to ‘fix’ the output Info with sed doesn’t work properly because the ‘tags’ used to find nodes quickly are then incorrect. These could of course also be fixed, but this would involve a lot more work than a simple sed invocation.

So realistically, anyone who writes texinfo with one-space has to put up with the occasional two-space sentence end being inserted into their text — worse still, the current ‘makeinfo’ formatting algorithm seems to insert two spaces even after abbreviations (such as ‘e.g.’ and ‘etc.’), which breaks even two-space texinfo. (This is particularly ironic, by the way, since two-space partisans’ main argument in favour of the practice is often the way it makes it possible to tell the difference between abbreviations and the end of a sentence.)

One last point may be worth noting; I am not the first person to write texinfo files using one-space. At the time of writing, it is used in the texinfo documentation for BFD, gdbm, GTK/GDK, (Linux) IPC, and viper, and I expect there are instances I’m not aware of.


Next: , Previous:   [Contents][Index]

10 Bugs and Restrictions

All (non-trivial) programs have bugs. Anyone who denies this…

It follows that xzgv, like everything else, always has some bugs. Usually these are not too serious, or I’d have fixed them before releasing xzgv. But either way, bugs and other problems with xzgv are noted here.


Next: , Previous: , Up: Bugs and Restrictions   [Contents][Index]

10.1 Known Bugs


Next: , Previous: , Up: Bugs and Restrictions   [Contents][Index]

10.2 Suboptimal Features


Next: , Previous: , Up: Bugs and Restrictions   [Contents][Index]

10.3 Restrictions


Next: , Previous: , Up: Bugs and Restrictions   [Contents][Index]

10.4 Reporting Bugs

If you find xzgv does something wrong, which you suspect might be a fault of some sort (a bug) in the program, it is best to report it as I may not be aware of the problem. (But first, check it is not a ‘known bug’. See Known Bugs. It is not usually helpful to report a bug I already know about.)

It is important to include as much detail in a bug report as you can. Here are some details you should include:

Then, please file a bug report in the SourceForge bug tracker. See ‘https://sourceforge.net/p/xzgv’.


Previous: , Up: Bugs and Restrictions   [Contents][Index]

10.5 Reporting Documentation Bugs

Bugs in the documentation can sometimes cause as much trouble as bugs in the program; if you notice a problem in the documentation, it’s a good idea to report it.

For reports of documentation bugs, you should include these details:

See Reporting Bugs, for details of where to send the bug report.


Next: , Previous:   [Contents][Index]

11 Future Changes

If you want to suggest a feature you’d like in xzgv, or a change to an existing feature, contact me; see See Reporting Bugs for the address.

Future changes etc. are listed in the TODO file.


Next: , Previous:   [Contents][Index]

Keyboard Commands Index

Jump to:   '   +   -   /   0   9   ;   =   ?   [   ]   ~  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   P   Q   R   S   T   U   V   X   Y   Z  
Index Entry  Section

'
' (Selector): Moving Around The List

+
+ (Selector): Tag and Untag Commands

-
- (Selector): Tag and Untag Commands
- (Viewer): Scrolling

/
/ (Selector): Moving Between Tagged Files
/ (Viewer): Changing Picture

0
0 (Selector): Tag and Untag Commands

9
9 (Selector): Tag and Untag Commands

;
; (Selector): File Details

=
= (Selector): Tag and Untag Commands
= (Viewer): Scrolling

?
? (Selector): Moving Between Tagged Files
? (Viewer): Changing Picture

[
[: Selector Layout and Resizing

]
]: Selector Layout and Resizing

~
~: Selector Layout and Resizing

A
Alt - (Selector): Tag and Untag Commands
Alt = (Selector): Tag and Untag Commands
Alt-0 (Selector): Tag and Untag Commands
Alt-9 (Selector): Tag and Untag Commands
Alt-a: File Selector Options
Alt-b: File Selector Options
Alt-c: Viewer Options
Alt-d: Changing the Sorting Order
Alt-e: Changing the Sorting Order
Alt-i: File Selector Options
Alt-Keypad + (Selector): Tag and Untag Commands
Alt-Keypad - (Selector): Tag and Untag Commands
Alt-n: Changing the Sorting Order
Alt-o (Selector): Tag and Untag Commands
Alt-p: Zoom Mode
Alt-r: Zoom Mode
Alt-s: Changing the Sorting Order
Alt-Shift-a: Changing the Sorting Order
Alt-Shift-c: Changing the Sorting Order
Alt-Shift-m: Changing the Sorting Order
Alt-Shift-x: Scaling
Alt-Shift-y: Scaling
Alt-u: Updating Thumbnails
Alt-x: Scaling
Alt-y: Scaling

B
b: Changing Picture
Backspace (Dir dialog): Dialog Boxes

C
C (Selector): Copying/Moving Files
colon (Selector): File Details
Ctrl-a (Dir dialog): Dialog Boxes
Ctrl-a (Selector): Moving Around The List
Ctrl-a (Selector): Moving Around The List
Ctrl-a (Viewer): Scrolling
Ctrl-b (Dir dialog): Dialog Boxes
Ctrl-c (Dir dialog): Dialog Boxes
Ctrl-Cursor Down (Viewer): Scrolling
Ctrl-Cursor Left (Viewer): Scrolling
Ctrl-Cursor Right (Viewer): Scrolling
Ctrl-Cursor Up (Viewer): Scrolling
Ctrl-d: Deleting a File
Ctrl-d (Dir dialog): Dialog Boxes
Ctrl-e (Dir dialog): Dialog Boxes
Ctrl-e (Selector): Moving Around The List
Ctrl-e (Viewer): Scrolling
Ctrl-End (Selector): Moving Around The List
Ctrl-f (Dir dialog): Dialog Boxes
Ctrl-h (Dir dialog): Dialog Boxes
Ctrl-Home (Selector): Moving Around The List
Ctrl-Insert (Dir dialog): Dialog Boxes
Ctrl-n (Selector): Renaming a File
Ctrl-q: Exiting xzgv
Ctrl-r: Rescanning the Directory
Ctrl-Space (Viewer): Changing Picture
Ctrl-u (Viewer): Scrolling
Ctrl-v (Dir dialog): Dialog Boxes
Ctrl-v (Selector): Moving Around The List
Ctrl-v (Viewer): Scrolling
Ctrl-w: Closing a File
Ctrl-x (Dir dialog): Dialog Boxes
Ctrl-z: Minimizing xzgv
Ctrl-[: Selector Layout and Resizing
Ctrl-]: Selector Layout and Resizing
Cursor Down (Selector): Moving Around The List
Cursor Down (Viewer): Scrolling
Cursor Left (Dir dialog): Dialog Boxes
Cursor Left (Viewer): Scrolling
Cursor Right (Dir dialog): Dialog Boxes
Cursor Right (Viewer): Scrolling
Cursor Up (Selector): Moving Around The List
Cursor Up (Viewer): Scrolling

D
d: Scaling
D: Scaling
Delete (Dir dialog): Dialog Boxes

E
End (Dir dialog): Dialog Boxes
End (Viewer): Scrolling
Enter (Selector): Viewing a File
Esc (Viewer): Exiting the Viewer

F
f: Mirror and Rotate
F: Viewer Options
F1: The Selector Menu
F10 (Selector): The Selector Menu
F10 (Viewer): The Viewer

G
g (Selector): Moving Around The List
G (Selector): Changing Directory

H
H (Viewer): Scrolling
h (Viewer): Scrolling
Home (Dir dialog): Dialog Boxes
Home (Viewer): Scrolling

I
i: Scaling

J
j (Selector): Moving Around The List
J (Viewer): Scrolling
j (Viewer): Scrolling

K
k (Selector): Moving Around The List
K (Viewer): Scrolling
k (Viewer): Scrolling
Keypad + (Selector): Tag and Untag Commands
Keypad - (Selector): Tag and Untag Commands

L
L (Viewer): Scrolling
l (Viewer): Scrolling

M
m: Mirror and Rotate
M (Selector): Copying/Moving Files
Menu (Selector): The Selector Menu
Menu (Viewer): The Viewer

N
n: Scaling
N: Mirror and Rotate

P
Page Down (Selector): Moving Around The List
Page Down (Viewer): Scrolling
Page Up (Selector): Moving Around The List
Page Up (Viewer): Scrolling

Q
q: Exiting xzgv

R
r: Mirror and Rotate
R: Mirror and Rotate

S
s: Scaling
S: Scaling
Shift-Cursor Down (Viewer): Scrolling
Shift-Cursor Left (Viewer): Scrolling
Shift-Cursor Right (Viewer): Scrolling
Shift-Cursor Up (Viewer): Scrolling
Shift-Delete (Dir dialog): Dialog Boxes
Shift-Insert (Dir dialog): Dialog Boxes
Space (Viewer): Changing Picture

T
Tab (Viewer): Exiting the Viewer

U
u: Updating Thumbnails

V
v: File Selector Options

X
x: Scaling
X: Scaling

Y
y: Scaling
Y: Scaling

Z
z: Zoom Mode
Z: Hiding the Selector

Jump to:   '   +   -   /   0   9   ;   =   ?   [   ]   ~  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   P   Q   R   S   T   U   V   X   Y   Z  

Next: , Previous:   [Contents][Index]

Menu Item Index

Jump to:   S   V  
Index Entry  Section

S
Selector menu, Directory, Change: Changing Directory
Selector menu, Directory, Images Only: File Selector Options
Selector menu, Directory, Rescan: Rescanning the Directory
Selector menu, Directory, Sort by Extension: Changing the Sorting Order
Selector menu, Directory, Sort by Name: Changing the Sorting Order
Selector menu, Directory, Sort by Size: Changing the Sorting Order
Selector menu, Directory, Sort by Time & Date: Changing the Sorting Order
Selector menu, Directory, Time & Date Type, Access Time (atime): Changing the Sorting Order
Selector menu, Directory, Time & Date Type, Attribute Change Time (ctime): Changing the Sorting Order
Selector menu, Directory, Time & Date Type, Modification Time (mtime): Changing the Sorting Order
Selector menu, Exit xzgv: Exiting xzgv
Selector menu, File, Close: Closing a File
Selector menu, File, Copy: Copying/Moving Files
Selector menu, File, Delete file: Deleting a File
Selector menu, File, Details: File Details
Selector menu, File, Exit: Exiting xzgv
Selector menu, File, Move: Copying/Moving Files
Selector menu, File, Rename file: Renaming a File
Selector menu, Help, About: The Selector Menu
Selector menu, Help, Contents: The Selector Menu
Selector menu, Help, Index: The Selector Menu
Selector menu, Help, The File Selector: The Selector Menu
Selector menu, Options, Auto Hide: File Selector Options
Selector menu, Options, Status Bar: File Selector Options
Selector menu, Options, Thin Rows: File Selector Options
Selector menu, Options, Thumbnail Msgs: File Selector Options
Selector menu, Recursive Update: Updating Thumbnails
Selector menu, Tagging, Next Tagged: Moving Between Tagged Files
Selector menu, Tagging, Previous Tagged: Moving Between Tagged Files
Selector menu, Tagging, Tag: Tag and Untag Commands
Selector menu, Tagging, Tag All: Tag and Untag Commands
Selector menu, Tagging, Toggle All: Tag and Untag Commands
Selector menu, Tagging, Untag: Tag and Untag Commands
Selector menu, Tagging, Untag All: Tag and Untag Commands
Selector menu, Update Thumbnails: Updating Thumbnails

V
Viewer menu, Exit to Selector: Exiting the Viewer
Viewer menu, Help, About: The Selector Menu
Viewer menu, Help, Contents: The Selector Menu
Viewer menu, Help, Index: The Selector Menu
Viewer menu, Help, The Viewer: The Selector Menu
Viewer menu, Next Image: Changing Picture
Viewer menu, Options, Ctl+Click Scales X Axis: Viewer Options
Viewer menu, Options, Dither in 15 & 16-bit: Viewer Options
Viewer menu, Options, Interpolate when Scaling: Scaling
Viewer menu, Options, Revert Orient. For New Pic: Viewer Options
Viewer menu, Options, Revert Scaling For New Pic: Viewer Options
Viewer menu, Options, Use Exif Orientation: Viewer Options
Viewer menu, Options, When Zooming Panorama: Zoom Mode
Viewer menu, Options, When Zooming Reduce Only: Zoom Mode
Viewer menu, Options, Zoom (fit to window): Zoom Mode
Viewer menu, Orientation, Flip (vert): Mirror and Rotate
Viewer menu, Orientation, Mirror (horiz): Mirror and Rotate
Viewer menu, Orientation, Normal: Mirror and Rotate
Viewer menu, Orientation, Rotate Left: Mirror and Rotate
Viewer menu, Orientation, Rotate Right: Mirror and Rotate
Viewer menu, Previous Image: Changing Picture
Viewer menu, Scaling, Add 1 to Scaling: Scaling
Viewer menu, Scaling, Double Scaling: Scaling
Viewer menu, Scaling, Halve Scaling: Scaling
Viewer menu, Scaling, Normal: Scaling
Viewer menu, Scaling, Sub 1 from Scaling: Scaling
Viewer menu, Scaling, X Only, Add 1 to Scaling: Scaling
Viewer menu, Scaling, X Only, Double Scaling: Scaling
Viewer menu, Scaling, X Only, Halve Scaling: Scaling
Viewer menu, Scaling, X Only, Sub 1 from Scaling: Scaling
Viewer menu, Scaling, Y Only, Add 1 to Scaling: Scaling
Viewer menu, Scaling, Y Only, Double Scaling: Scaling
Viewer menu, Scaling, Y Only, Halve Scaling: Scaling
Viewer menu, Scaling, Y Only, Sub 1 from Scaling: Scaling
Viewer menu, Tagging, Next Tagged: Changing Picture
Viewer menu, Tagging, Previous Tagged: Changing Picture
Viewer menu, Tagging, Tag then Next: Changing Picture
Viewer menu, Window, Hide Selector: Hiding the Selector
Viewer menu, Window, Minimize: Minimizing xzgv

Jump to:   S   V  

Next: , Previous:   [Contents][Index]

Configuration Variables Index

Jump to:   A   C   D   E   F   G   I   M   R   S   T   Z  
Index Entry  Section

A
auto-hide: Invoking xzgv

C
careful-jpeg: Invoking xzgv
click-for-next: Config Variables

D
delete-single-prompt: Invoking xzgv
dither-hicol: Invoking xzgv

E
exif-orient: Invoking xzgv

F
fast-recursive-update: Invoking xzgv
fullscreen: Invoking xzgv

G
geometry: Invoking xzgv

I
image-bigness-threshold: Invoking xzgv
images-only: Invoking xzgv
interpolate: Invoking xzgv

M
mouse-scale-x: Invoking xzgv

R
revert-orient: Invoking xzgv
revert-scale: Invoking xzgv

S
selector-width: Invoking xzgv
show-thumbnail-messages: Invoking xzgv
skip-parent: Invoking xzgv
sort-order: Invoking xzgv
sort-timestamp-type: Invoking xzgv
statusbar: Invoking xzgv

T
thin-rows: Invoking xzgv

Z
zoom: Invoking xzgv
zoom-panorama: Invoking xzgv
zoom-reduce-only: Invoking xzgv

Jump to:   A   C   D   E   F   G   I   M   R   S   T   Z  

Previous:   [Contents][Index]

Concept Index

Jump to:   1  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Z  
Index Entry  Section

1
15/16-bit modes, toggling dithering in: Viewer Options

A
acknowledgements: Acknowledgements
arguments, command-line: Invoking xzgv
aspect ratio, altering: Scaling
author, contacting the: Reporting Bugs
auto-hide selector, toggling: File Selector Options
axis, toggling mouse scaling: Viewer Options
axis-specific scaling: Scaling

B
big pictures: Big Pictures
bug, that’s a feature not a: Suboptimal Features
bugs and restrictions: Bugs and Restrictions
bugs, known: Known Bugs
bugs, reporting: Reporting Bugs
bugs, reporting documentation: Reporting Documentation Bugs

C
changes, possible future: Future Changes
changing a file’s name: Renaming a File
changing directory: Changing Directory
changing pictures: Changing Picture
changing relative sizes of selector/viewer: Selector Layout and Resizing
changing the file selector sorting order: Changing the Sorting Order
changing xzgv’s behaviour: Configuring xzgv
choosing a file: Moving Around The List
clearing the viewer: Closing a File
closing a file: Closing a File
command-line options: Invoking xzgv
config files: Config Files
config files, types in: Config Variable Types
config variables: Config Variables
config variables types: Config Variable Types
configuration: Configuring xzgv
contacting the author: Reporting Bugs
conventions used in this manual: A Note on Notation
copying files: Copying/Moving Files
correcting digital camera pictures: Viewer Options
creating thumbnails: Updating Thumbnails
credits: Acknowledgements
current directory: Changing Directory
cursor, file selector: Moving Around The List
customising: Configuring xzgv

D
dark GTK+ themes, adjusting for: Config Variables
date order, showing files in: Changing the Sorting Order
date, showing a file’s time and: File Details
dealing with big pictures: Big Pictures
decoupled scaling: Scaling
default selector size, specifying: Invoking xzgv
defaults, changing: Configuring xzgv
deleting a file: Deleting a File
details on a file, getting: File Details
dialog boxes: Dialog Boxes
digital camera pictures, correcting: Viewer Options
dimensions, changing initial window: Invoking xzgv
dimensions, showing a file’s: File Details
directory dialog: Dialog Boxes
directory, changing: Changing Directory
directory, rescanning: Rescanning the Directory
directory, starting on given: Invoking xzgv
directory, updating thumbnails in a: Updating Thumbnails
dithering in 15/16-bit modes: Viewer Options
documentation, reporting bugs in the: Reporting Documentation Bugs

E
enlarged pictures, toggling interpolation for: Viewer Options
enlarging a picture: Scaling
errors: Dialog Boxes
exif orientation support: Viewer Options
exiting the viewer: Exiting the Viewer
exiting xzgv: Exiting xzgv
extension, showing files in order of: Changing the Sorting Order

F
faults, reporting: Reporting Bugs
file details: File Details
file format, identification of: File Type Identification
file formats: File Formats
file selector: The File Selector
file selector options: File Selector Options
file selector, cursor movement in: Moving Around The List
file selector, layout of: Selector Layout and Resizing
file selector, moving around: Moving Around The List
file selector, options in: File Selector Options
file selector, returning to: Exiting the Viewer
file selector, run-time configuration of: File Selector Options
file selector, sorting order of the: Changing the Sorting Order
file selector, viewing a file from the: Viewing a File
file thumbnails: Thumbnails
file, closing a: Closing a File
file, deleting a: Deleting a File
file, renaming a: Renaming a File
file, selecting more than one: Tagging
file, viewing only one: Invoking xzgv
filenames, rescanning: Rescanning the Directory
files, config: Config Files
files, copying: Copying/Moving Files
files, identification of: File Type Identification
files, moving: Copying/Moving Files
files, moving between tagged: Moving Between Tagged Files
files, tagging: Tagging
fit to window, toggling: Viewer Options
fitting picture to window: Zoom Mode
flipping a picture: Mirror and Rotate
flips, preserving: Viewer Options
format of config files: Config Files
format of menu item descriptions: A Note on Notation
future changes: Future Changes

G
geometry, specifying the window: Invoking xzgv
getting the selector menu: The Selector Menu
getting the viewer menu: The Viewer
Gimp-compatible thumbnails: Thumbnails
go to directory: Changing Directory
GTK+ themes, adjusting for dark: Config Variables

H
height/width, showing a file’s: File Details
help: The Selector Menu
help on this manual’s notation: A Note on Notation
high-colour modes, toggling dithering in: Viewer Options

I
identifying files: File Type Identification
index, configuration variables: Configuration Variables Index
index, keyboard commands: Keyboard Commands Index
index, menu item: Menu Item Index
Info file, reporting bugs in the: Reporting Documentation Bugs
initial selector size, specifying: Invoking xzgv
interpolation when scaling, toggling: Viewer Options
introduction to xzgv: Overview
invoking xzgv: Invoking xzgv

J
jumping to a directory: Changing Directory

K
keyboard, moving around the selector via: Moving Around The List
keyboard, moving in the viewer via: Scrolling
known bugs: Known Bugs

L
large pictures: Big Pictures
last-modified date/time, showing a file’s: File Details
layout, selector: Selector Layout and Resizing
leaving the viewer: Exiting the Viewer
leaving xzgv: Exiting xzgv
location, changing initial window: Invoking xzgv

M
making a picture bigger/smaller: Scaling
making thumbnails: Updating Thumbnails
man page, why not just have a: Why a Texinfo Manual?
manual, reporting bugs in the: Reporting Documentation Bugs
marking files: Tagging
menu item descriptions, format of: A Note on Notation
menu, getting the selector: The Selector Menu
menu, getting the viewer: The Viewer
menus, help: The Selector Menu
messages: Dialog Boxes
mirroring a picture: Mirror and Rotate
mirrors, preserving: Viewer Options
moaning for fun and profit: Rationale
modification date/time, showing a file’s: File Details
mouse scaling axis, toggling: Viewer Options
moving around the file list: Moving Around The List
moving around the picture: Scrolling
moving directory: Changing Directory
moving files: Copying/Moving Files
multiple files, selecting: Tagging

N
next picture: Changing Picture
next tagged file: Moving Between Tagged Files
normal size, returning selector to: Selector Layout and Resizing
normal, returning display to: Scaling
notation used in this manual: A Note on Notation

O
online help: The Selector Menu
options in file selector: File Selector Options
options in the viewer: Viewer Options
options, command-line: Invoking xzgv
options, setting default: Configuring xzgv
order, changing the file selector’s sorting: Changing the Sorting Order
orientation, exif: Viewer Options
orientation, picture: Mirror and Rotate
orientation, preserving: Viewer Options
other viewers, comparison with: Why Yet Another Viewer?
overview: Overview

P
panning: Scrolling
picture format, identification of: File Type Identification
picture orientation: Mirror and Rotate
picture thumbnails: Thumbnails
picture, enlarging: Scaling
picture, flipping a: Mirror and Rotate
picture, mirroring a: Mirror and Rotate
picture, moving around a: Scrolling
picture, reducing: Scaling
picture, rotating a: Mirror and Rotate
picture, selecting: Moving Around The List
picture, viewing a: Viewing a File
picture, viewing only one: Invoking xzgv
pictures, big: Big Pictures
pictures, changing: Changing Picture
pictures, copying: Copying/Moving Files
pictures, file formats used by: File Formats
pictures, moving: Copying/Moving Files
position, changing initial window: Invoking xzgv
preserving orientation: Viewer Options
preserving scaling: Viewer Options
previous picture: Changing Picture
problematic features: Suboptimal Features
problems, reporting: Reporting Bugs

Q
quitting the viewer: Exiting the Viewer
quitting xzgv: Exiting xzgv

R
rationale: Rationale
recursion joke, ANSI standard: Concept Index
recursive update, problem with: Thumbnail Issues
recursively, updating thumbnails: Updating Thumbnails
reduce-only in zoom mode: Zoom Mode
reducing a picture: Scaling
refreshing directory contents: Rescanning the Directory
removing a file: Deleting a File
renaming a file: Renaming a File
reporting bugs: Reporting Bugs
reporting documentation bugs: Reporting Documentation Bugs
rescanning the directory: Rescanning the Directory
resizing selector/viewer: Selector Layout and Resizing
restoring picture orientation: Mirror and Rotate
restrictions: Restrictions
returning to file selector: Exiting the Viewer
revert orientation, toggling: Viewer Options
revert scaling, toggling: Viewer Options
rotating a picture: Mirror and Rotate
rotation, preserving: Viewer Options
running xzgv: Invoking xzgv

S
scaling axis, toggling mouse: Viewer Options
scaling up/down a picture: Scaling
scaling with interpolation, toggling: Viewer Options
scaling, axis-specific: Scaling
scaling, preserving: Viewer Options
scrolling: Scrolling
selecting a file: Moving Around The List
selecting directory: Changing Directory
selecting multiple files: Tagging
selector: The File Selector
selector layout: Selector Layout and Resizing
selector menu, getting the: The Selector Menu
settings, changing: Configuring xzgv
showing file size, date, etc.: File Details
showing the selector menu: The Selector Menu
showing the viewer menu: The Viewer
size, changing default selector: Invoking xzgv
size, changing initial window: Invoking xzgv
size, changing selector/viewer: Selector Layout and Resizing
size, showing a file’s: File Details
size, showing files in order of: Changing the Sorting Order
small picture, enlarging a: Scaling
small picture, making window fit a: Zoom Mode
small pictures, not zooming: Zoom Mode
small screen/window, coping with a: Big Pictures
small window, making picture fit a: Zoom Mode
sorting order, changing the file selector’s: Changing the Sorting Order
starting on given directory: Invoking xzgv
starting xzgv: Invoking xzgv
status bar, toggling: File Selector Options
suboptimal features: Suboptimal Features

T
tag and untag commands: Tag and Untag Commands
tagged files, moving between: Moving Between Tagged Files
tagging: Tagging
tagging pictures in the viewer: Changing Picture
tagging, how to use: Tag and Untag Commands
Texinfo documentation, reporting bugs in the: Reporting Documentation Bugs
Texinfo, problems with: Why One-space Sentence Ends?
Texinfo, why xzgv doc. is in: Why a Texinfo Manual?
the file selector: The File Selector
the viewer: The Viewer
themes, adjusting for dark GTK+: Config Variables
thin rows mode, toggling: File Selector Options
thumbnail display, toggling size of: File Selector Options
thumbnails: Thumbnails
thumbnails, creating: Updating Thumbnails
thumbnails, issues relating to: Thumbnail Issues
thumbnails, problems with displaying: Thumbnail Issues
thumbnails, updating: Updating Thumbnails
time, showing a file’s date and: File Details
TODO list: Future Changes
tree, problem with updating directory: Thumbnail Issues
tree, updating all thumbnails in a directory: Updating Thumbnails
types, config variable: Config Variable Types

U
updating thumbnails: Updating Thumbnails
use panorama view in zoom mode: Zoom Mode
using the viewer: The Viewer

V
variable, types of config: Config Variable Types
variables, config: Config Variables
viewer menu, getting the: The Viewer
viewer options: Viewer Options
viewer, changing pictures from the: Changing Picture
viewer, clearing the: Closing a File
viewer, moving around in the: Scrolling
viewer, options in: Viewer Options
viewer, run-time configuration of: Viewer Options
viewer, scrolling in the: Scrolling
viewer, tagging pictures in the: Changing Picture
viewer, using the: The Viewer
viewing a file: Viewing a File
viewing only one file: Invoking xzgv

W
why a texinfo manual?: Why a Texinfo Manual?
why another viewer?: Why Yet Another Viewer?
why one-space sentence ends?: Why One-space Sentence Ends?
width/height, showing a file’s: File Details
wish-list: Future Changes

X
xv-compatible thumbnails: Thumbnails
xzgv, exiting: Exiting xzgv
xzgv.conf: Config Files
xzgvrc: Config Files

Z
zgv, problem with pre-5.2 versions of: File Details
zoom mode: Zoom Mode
zoom mode, reduce-only in: Zoom Mode
zoom, toggling: Viewer Options
zooming big but not small pictures: Zoom Mode
zooming into a picture: Scaling

Jump to:   1  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Z  

Table of Contents