Mercurial > geeqie.yaz
annotate doc/other_windows_pan_view.html @ 1398:9e7aed6ba6bd
Display icons in edit contextual menu.
author | zas_ |
---|---|
date | Sun, 08 Mar 2009 14:27:19 +0000 |
parents | 473a7c4881cd |
children |
rev | line source |
---|---|
1140 | 1 <?xml version="1.0" encoding="iso-8859-1"?> |
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
4 | |
5 <html xmlns="http://www.w3.org/1999/xhtml"> | |
6 <head> | |
7 <meta http-equiv="CONTENT-TYPE" content="text/html; charset=iso-8859-1" /> | |
8 | |
9 <title>Pan View - Geeqie User Manual</title> | |
1151
c564ab6c11fc
Add specific css for print media(has to be improved).
zas_
parents:
1142
diff
changeset
|
10 <link rel="stylesheet" type="text/css" href="style.css" media="all" /> |
c564ab6c11fc
Add specific css for print media(has to be improved).
zas_
parents:
1142
diff
changeset
|
11 <link rel="stylesheet" type="text/css" href="style_screen.css" media="screen" /> |
c564ab6c11fc
Add specific css for print media(has to be improved).
zas_
parents:
1142
diff
changeset
|
12 <link rel="stylesheet" type="text/css" href="style_print.css" media="print" /> |
1140 | 13 </head> |
14 | |
15 <body lang="en-US" dir="ltr" xml:lang="en-US"> | |
16 <div class="navtop"> | |
17 <table width="100%" border="0" cellpadding="4" cellspacing="0"> | |
18 <col id="navtop_col1" width="33%"></col> | |
19 <col id="navtop_col2" width="33%"></col> | |
20 <col id="navtop_col3" width="33%"></col> | |
21 | |
22 <tr> | |
23 <th> | |
24 <p class="previous"><a href="other_windows_image_properties.html">Previous</a> | |
25 </p> | |
26 </th> | |
27 | |
28 <th> | |
29 <p class="navtop_title">Pan View – Other Windows</p> | |
30 </th> | |
31 | |
32 <th> | |
33 <p class="next"><a href="image_management.html">Next</a> | |
34 </p> | |
35 </th> | |
36 </tr> | |
37 </table> | |
38 </div> | |
39 | |
40 <hr /> | |
41 | |
42 <h1>Pan View Window</h1> | |
43 | |
44 <p>This window proposes alternative views of the <em>current directory and its children</em>.<br /> | |
45 You can pan the view as you pan an image in normal view mode, using left mouse button and drag.</p> | |
1165 | 46 <p>A primary mouse button click on any image will display informations about the image. Secondary mouse button will show a context menu.</p> |
1140 | 47 |
1165 | 48 <p class="note"><span class="note_label">Note:</span> The pan view recursively visits each folder under the specified folder, so be careful it can eat a lot of ressources.</p> |
1141
7a3bef49ca50
More precise description of the pan view find feature and a note about ressources eating was added.
zas_
parents:
1140
diff
changeset
|
49 |
7a3bef49ca50
More precise description of the pan view find feature and a note about ressources eating was added.
zas_
parents:
1140
diff
changeset
|
50 |
1140 | 51 <h2>Select a folder</h2> |
52 <dl class="dialog_desc"> | |
53 <dt>Location</dt><dd>Set the top folder.</dd> | |
54 </dl> | |
55 | |
56 <h2>Choose a view mode</h2> | |
57 <p>A select box let you choose among different view modes:</p> | |
58 <dl class="dialog_desc"> | |
59 <dt>Timeline</dt><dd>Shows images grouped by date.</dd> | |
60 <dt>Calendar</dt><dd>Shows a calendar with the number of images indicated for each day (as dots and number). Left mouse button click will show images in a popup.</dd> | |
61 <dt>Folders</dt><dd>Show images grouped by folder. Each box represents a folder. Parent and children folders are shown as boxes enclosing other boxes.</dd> | |
62 <dt>Folders (flower)</dt><dd>Show images grouped by folder. Each box represents a folder. Parent folders are linked to children by a line. The top folder is the center of the flower.</dd> | |
63 <dt>Grid</dt><dd>All images are shown on a grid.</dd> | |
64 </dl> | |
65 | |
66 <h2>How each image should be represented</h2> | |
67 <p>Another select box let you choose the representation of each image:</p> | |
68 <dl class="dialog_desc"> | |
69 <dt>Dots</dt><dd>Each image is represented by a dot.</dd> | |
70 <dt>No images</dt><dd>Each image is represented by a square box.</dd> | |
71 <dt>Small thumbnails</dt><dd>Each image is represented by a small thumbnail.</dd> | |
72 <dt>Normal thumbnails</dt><dd>Each image is represented by a normal thumbnail.</dd> | |
73 <dt>Large thumbnails</dt><dd>Each image is represented by a large thumbnail.</dd> | |
74 <dt>1:10 (10%)</dt><dd>Each image is represented by reduced image (1/10 of the original's dimensions).</dd> | |
75 <dt>1:4 (25%)</dt><dd>Each image is represented by reduced image (1/4 of the original's dimensions).</dd> | |
76 <dt>1:3 (33%)</dt><dd>Each image is represented by reduced image (1/3 of the original's dimensions).</dd> | |
1142 | 77 <dt>1:2 (50%)</dt><dd>Each image is represented by reduced image (1/2 of the original's dimensions).</dd> |
1140 | 78 <dt>1:1 (100%)</dt><dd>The original image is shown at its normal dimensions.</dd> |
79 </dl> | |
80 | |
81 <h2>Find</h2> | |
82 <p>At the bottom of the window:</p> | |
83 <dl class="dialog_desc"> | |
1165 | 84 <dt>Find button</dt><dd>Shows a text field for image search. One can enter a filename or a part of it or a date (yyyy or yyyy-mm or yyyy-mm-dd format, separator can be '/','-',' ','.',','). Pressing <span class="key">Enter</span> key will start the search, pressing it again will move to the next match. Matched file is made visible and details are shown for it.</dd> |
1140 | 85 </dl> |
1141
7a3bef49ca50
More precise description of the pan view find feature and a note about ressources eating was added.
zas_
parents:
1140
diff
changeset
|
86 |
1140 | 87 <hr id="bottomseparator" /> |
88 | |
89 <div class="navbottom"> | |
90 <table width="100%" border="0" cellpadding="4" cellspacing="0"> | |
91 <col id="navbottom_col1" width="33%"></col> | |
92 <col id="navbottom_col2" width="33%"></col> | |
93 <col id="navbottom_col3" width="33%"></col> | |
94 | |
95 <tr> | |
96 <th> | |
97 <p class="previous"><a href="other_windows_image_properties.html">Previous</a> | |
98 </p> | |
99 </th> | |
100 | |
101 <th> | |
102 <p class="navbottom_title"><a href="index.html">Contents</a> | |
103 </p> | |
104 </th> | |
105 | |
106 <th> | |
107 <p class="next"><a href="image_management.html">Next</a> | |
108 </p> | |
109 </th> | |
110 </tr> | |
111 | |
112 </table> | |
113 </div> | |
114 | |
115 <div class="footer">Geeqie User Manual</div> | |
116 <div class="bottomspacer"> </div> | |
117 </body> | |
118 </html> |