This file is indexed.

/usr/share/doc/geeqie/html/GuideImageSearchSearch.html is in geeqie-common 1:1.2-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Search Window</title>
<link rel="previous" href="GuideImageSearchSearch.html" title="
      Search Window
    ">
<link rel="next" href="GuideImageSearchFindingDuplicates.html" title="
      Finding Duplicates
    ">
<link rel="top" href="GuideIndex.html" title="
      The Geeqie User Manual
    ">
<style type="text/css">

html { height: 100%; }
body {
  margin: 0px; padding: 12px;
  background-color: #f9f9f6;
  min-height: 100%;
  direction: ltr;
}
div, p, pre, blockquote { margin: 0; padding: 0; }
p img { vertical-align: middle; }
sub { font-size: 0.83em; }
sub sub { font-size: 1em; }
sup { font-size: 0.83em; }
sup sup { font-size: 1em; }
table { border-collapse: collapse; }
table.table-pgwide { width: 100%; }
td { vertical-align: top; }
td { padding: 0.2em 0.83em 0.2em 0.83em; }
th { padding: 0 0.83em 0 0.83em; }
tr.tr-shade {
  background-color: #f9f9f6;
}
td.td-colsep { border-right: solid 1px; }
td.td-rowsep { border-bottom: solid 1px; }
thead { border-top: solid 2px; border-bottom: solid 2px; }
tfoot { border-top: solid 2px; border-bottom: solid 2px; }
div.body {
  padding: 1em;
  max-width: 60em;
  background-color: #ffffff;
  border: solid 1px #e0e0df;
}
div.body-sidebar {
  margin-right: 13em;
}
div.division div.division { margin-top: 1.72em; }
div.division div.division div.division { margin-top: 1.44em; }
div.header {
  margin: 0;
  color: #3f3f3f;
  border-bottom: solid 1px #e0e0df;
}
h1, h2, h3, h4, h5, h6, h7 {
  margin: 0; padding: 0;
  color: #3f3f3f;
}
h1.title { font-size: 1.72em; }
h2.title { font-size: 1.44em; }
h3.title { font-size: 1.2em; }
h4.title, h5.title, h6.title, h7.title { font-size: 1em; }
.block { margin-top: 1em; }
.block .block-first { margin-top: 0; }
.block-indent {
  margin-left left: 1.72em;
  margin-: 1em;
}
.block-indent .block-indent { margin-left: 0em; margin-right: 0em; }
td .block-indent  { margin-left: 0em; margin-right: 0em; }
dd .block-indent  { margin-left: 0em; margin-right: 0em; }
.block-verbatim { white-space: pre; }
div.title {
  margin-bottom: 0.2em;
  font-weight: bold;
  color: #3f3f3f;
}
div.title-formal { padding-left: 0.2em; padding-right: 0.2em; }
div.title-formal .label { font-weight: normal; }
a {
  color: #1f609f;
  text-decoration: none;
}
a:hover { text-decoration: underline; }
a:visited { color: #9f1f6f; }
ul, ol, dl { margin: 0; padding: 0; }
li {
  margin-top: 1em;
  margin-left: 2.4em;
  padding: 0;
}
li.li-first { margin-top: 0; }
dt { margin: 1em 0 0 0; }
dt.dt-first { margin: 0; }
dd {
  margin-left: 1.72em;
  margin-top: 0.5em;
}
dl.dl-compact dt { margin-top: 0; }
dl.dl-compact dd { margin-top: 0; margin-bottom: 0; }


ul.linktrail {
  display: block;
  margin: 0.2em 0 0 0;
  text-align: right;
}
li.linktrail { display: inline; margin: 0; padding: 0; }

li.linktrail::before {
  content: '  /  ';
  color: #3f3f3f;
}

li.linktrail-first::before, li.linktrail-only::before { content: ''; }


div.navbar {
  padding: 0.5em 1em 0.5em 1em;
  max-width: 60em;
  background-color: #ffffff;
  border: solid 1px #e0e0df;
}
div.navbar-top { margin-bottom: 1em; }
div.navbar-bottom { margin-top: 1em; clear: both; }
div.navbar img { border: 0; vertical-align: -0.4em; }
table.navbar { width: 100%; margin: 0; border: none; }
table.navbar td { padding: 0; border: none; }
td.navbar-next {
  text-align: right;
}
a.navbar-prev::before {
  
  content: '◀  ';
  color: #3f3f3f;
}
a.navbar-next::after {
  
  content: '  ▶';
  color: #3f3f3f;
}


div.sidebar {
  float: right;
  padding: 0; margin: 0; width: 12em;
}
div.sidenav {
  padding: 0.5em 1em 0 1em;
  background-color: #ffffff;
  border: solid 1px #e0e0df;
}
div.sidenav div.autotoc {
  background-color: #ffffff;
  border: none; padding: 0; margin: 0;
}
div.sidenav div.autotoc div.autotoc { margin-top: 0.5em; }
div.sidenav div.autotoc li { margin-bottom: 0.5em; }
div.sidenav div.autotoc div.autotoc div.autotoc {
  margin-left: 1em;
  margin-top: 0;
}
div.sidenav div.autotoc div.autotoc div.autotoc li { margin-bottom: 0; }


div.autotoc {
  
  display: table;
  margin-top: 1em;
  margin-left: 1.72em;
  padding: 0.5em 1em 0.5em 1em;
  background-color: #f0f9ff;
  border: solid 1px #c0c9ff;
}
div.autotoc ul { margin: 0; padding: 0; }
div.autotoc li { list-style-type: none; margin: 0; }
div.autotoc div.autotoc-title { margin-bottom: 0.5em; }
div.autotoc div.autotoc { border: none; padding: 0; margin-top: 0; margin-bottom: 0.5em; }
div.autotoc div.autotoc div.autotoc { margin-bottom: 0; }


span.bibliolabel {
  color: #3f3f3f;
}


div.admonition {
  padding: 0.5em 6px 0.5em 6px;
  border: solid 1px #e0e0df;
  background-color: #fffff0;
}
div.caution-inner, div.important-inner, div.note-inner, div.tip-inner, div.warning-inner {
  padding-left: 60px;
  background-position: left top;
  background-repeat: no-repeat;
  min-height: 48px;
}
div.caution-inner { background-image: url("admon-caution.png"); }
div.important-inner { background-image: url("admon-important.png"); }
div.note-inner { background-image: url("admon-note.png"); }
div.note-bug div.note-inner { background-image: url("admon-bug.png"); }
div.tip-inner { background-image: url("admon-tip.png"); }
div.warning-inner { background-image: url("admon-warning.png"); }
div.blockquote {
  
  background-image: url('watermark-blockquote-201C.png');
  background-repeat: no-repeat;
  background-position: top left;
  padding: 0.5em;
  padding-left: 4em;
}
div.attribution {
  margin-top: 0.5em;
  color: #3f3f3f;
}
div.attribution::before {
  
  content: '― ';
}
div.epigraph {
  text-align: right;
  margin-left: 20%;
  margin-right: 0;
  color: #3f3f3f;
}
div.figure, div.informalfigure {
  
  display: table;
  padding: 0.5em;
  background-color: #f9f9f6;
  border: solid 1px #e0e0df;
}
div.figure-inner, div.informalfigure-inner {
  padding: 0.5em;
  background-color: #ffffff;
  border: solid 1px #e0e0df;
}
div.caption { margin-top: 0.5em; }
div.programlisting {
  padding: 0.5em;
  
  background-color: #f9f9f6;
  border: solid 1px #e0e0df;
}
div.screen {
  padding: 0.5em;
  
  background-color: #f9f9f6;
  border: solid 1px #e0e0df;
}
div.screen .prompt {
  color: #3f3f3f;
}
div.screen .userinput {
  font-weight: bold;
  color: #3f3f3f;
}
div.programlisting .userinput {
  font-weight: bold;
  color: #3f3f3f;
}
pre.linenumbering {
  color: #3f3f3f;
  margin: 0;
  padding-right: 1em;
  float: left;
  text-align: right;
}



dl.index dt { margin-top: 0; }
dl.index dd { margin-top: 0; margin-bottom: 0; }
dl.indexdiv dt { margin-top: 0; }
dl.indexdiv dd { margin-top: 0; margin-bottom: 0; }
dl.setindex dt { margin-top: 0; }
dl.setindex dd { margin-top: 0; margin-bottom: 0; }
div.list div.title-formal span.title {
  border-bottom: solid 1px #e0e0df;
}
div.simplelist {
  margin-left: 1.72em;
}
div.simplelist table { margin-left: 0; border: none; }
div.simplelist td {
  padding: 0.5em;
  border-left: solid 1px #e0e0df;
}
div.simplelist td.td-first {
  padding-left: 0;
  border-left: 0;
}
div.synopsis {
  padding: 0.5em;
  
  background-color: #f9f9f6;
  border-top: solid 2px #c0c9ff;
  border-bottom: solid 2px #c0c9ff;
}
div.synopsis div.synopsis {
  padding: 0;
  border: none;
}
div.synopsis div.block { margin-top: 0.2em; }
div.synopsis div.block-first { margin-top: 0; }
div.cmdsynopsis { font-family: monospace; }

span.accel { text-decoration: underline; }
span.acronym { font-family: sans-serif; }
span.application { font-style: italic; }
span.classname, span.exceptionname, span.interfacename { font-family: monospace; }
span.code {
  font-family: monospace;
  border: solid 1px #e0e0df;
  padding-left: 0.2em;
  padding-right: 0.2em;
}
pre span.code { border: none; padding: 0; }
span.command {
  font-family: monospace;
  border: solid 1px #e0e0df;
  padding-left: 0.2em;
  padding-right: 0.2em;
}
pre span.command { border: none; padding: 0; }
span.computeroutput { font-family: monospace; }

span.constant { font-family: monospace; }
span.database { font-family: monospace; }
span.email { font-family: monospace; }
span.emphasis { font-style: italic; }
span.emphasis-bold { font-style: normal; font-weight: bold; }
span.envar { font-family: monospace; }

span.filename { font-family: monospace; }
span.firstterm { font-style: italic; }
span.foreignphrase { font-style: italic; }
span.function { font-family: monospace; }

dt.glossterm span.glossterm { font-style: normal; }


span.glossterm { font-style: italic; }

span.guibutton, span.guilabel, span.guimenu, span.guimenuitem, span.guisubmenu, span.interface {
  font-weight: bold;
  color: #3f3f3f;
}
span.keycap {
  font-weight: bold;
  color: #3f3f3f;
}
span.lineannotation { font-style: italic; }
span.literal { font-family: monospace; }
span.markup  { font-family: monospace; }
span.medialabel { font-style: italic; }
span.methodname { font-family: monospace; }
span.ooclass, span.ooexception, span.oointerface { font-family: monospace; }
span.option { font-family: monospace; }
span.parameter { font-family: monospace; }
span.paramdef span.parameter { font-style: italic; }
span.prompt { font-family: monospace; }
span.property { font-family: monospace; }
span.replaceable  { font-style: italic; }
span.returnvalue { font-family: monospace; }
span.sgmltag { font-family: monospace; }
span.structfield, span.structname { font-family: monospace; }
span.symbol { font-family: monospace; }
span.systemitem { font-family: monospace; }
span.token { font-family: monospace; }
span.type { font-family: monospace; }
span.uri { font-family: monospace; }
span.userinput { font-family: monospace; }
span.varname { font-family: monospace; }
span.wordasword { font-style: italic; }



div.footnotes { font-style: italic; font-size: 0.8em; }
div.footnote { margin-top: 1.44em; }
span.footnote-number { display: inline; padding-right: 0.83em; }
span.footnote-number + p { display: inline; }
a.footnote { text-decoration: none; font-size: 0.8em; }
a.footnote-ref { text-decoration: none; }

span.co {
  margin-left: 0.2em; margin-right: 0.2em;
  padding-left: 0.4em; padding-right: 0.4em;
  border: solid 1px #000000;
  -moz-border-radius: 8px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 8px;
}
span.co:hover {
  border-color: #333333;
  background-color: #333333;
  color: #FFFFFF;
}
span.co a { text-decoration: none; }
span.co a:hover { text-decoration: none; }

dt.question { margin-left: 0em; }
dt.question div.label { float: left; }
dd + dt.question { margin-top: 1em; }
dd.answer {
  margin-top: 1em;
  margin-left: 2em;
  margin-right: 1em;
}
dd.answer div.label { float: left; }
</style>
</head>
<body>
<div class="navbar navbar-top"><table class="navbar"><tr>
<td class="navbar-prev"><a class="navbar-prev" href="GuideImageSearchSearch.html" title="
      Search Window
    ">
      Search Window
    </a></td>
<td class="navbar-next"><a class="navbar-next" href="GuideImageSearchFindingDuplicates.html" title="
      Finding Duplicates
    ">
      Finding Duplicates
    </a></td>
</tr></table></div>
<div class="sidebar"><div class="sidenav"><div class="autotoc"><ul>
<li><a href="GuideIndex-info.html" title="About This Document">About This Document</a></li>
<li>
<a class="xref" href="GuideIndex.html" title="
      The Geeqie User Manual
    ">
      The Geeqie User Manual
    </a><div class="autotoc"><ul>
<li><a class="xref" href="GuideIntroduction.html" title="
      Introduction
    ">
      Introduction
    </a></li>
<li><a class="xref" href="GuideMainWindow.html" title="
      Main Window
    ">
      Main Window
    </a></li>
<li><a class="xref" href="GuideOtherWindows.html" title="
      Other Windows
    ">
      Other Windows
    </a></li>
<li><a class="xref" href="GuideImageManagement.html" title="
      Image Management
    ">
      Image Management
    </a></li>
<li>
<a class="xref" href="GuideImageSearch.html" title="
      Image Search
    ">
      Image Search
    </a><div class="autotoc"><ul>
<li>
      Search Window
    </li>
<li><a class="xref" href="GuideImageSearchFindingDuplicates.html" title="
      Finding Duplicates
    ">
      Finding Duplicates
    </a></li>
</ul></div>
</li>
<li><a class="xref" href="GuideCollections.html" title="
      Collections
    ">
      Collections
    </a></li>
<li><a class="xref" href="GuideSidebars.html" title="
      Sidebars
    ">
      Sidebars
    </a></li>
<li><a class="xref" href="GuideImagePresentation.html" title="
      Image Presentation
    ">
      Image Presentation
    </a></li>
<li><a class="xref" href="GuidePrinting.html" title="
      Printing
    ">
      Printing
    </a></li>
<li><a class="xref" href="GuideOptions.html" title="
      Options Explained
    ">
      Options Explained
    </a></li>
<li><a class="xref" href="GuideReference.html" title="
      Reference
    ">
      Reference
    </a></li>
<li><a class="xref" href="GuideFaq.html" title="
      Frequently Asked Questions
    ">
      Frequently Asked Questions
    </a></li>
<li><a class="xref" href="GuideCredits.html" title="
      Credits
    ">
      Credits
    </a></li>
<li><a class="xref" href="GuideGnuFdl.html" title="
      GNU Free Documentation License
    ">
      GNU Free Documentation License
    </a></li>
</ul></div>
</li>
</ul></div></div></div>
<div class="body body-sidebar"><div class="division section">
<a name="GuideImageSearchSearch"></a><div class="header"><h1 class="section title"><span class="title">
      Search Window
    </span></h1></div>
<ul class="linktrail">
<li class="linktrail linktrail-first"><a class="linktrail" href="GuideIndex.html" title="
      The Geeqie User Manual
    ">
      The Geeqie User Manual
    </a></li>
<li class="linktrail linktrail-last"><a class="linktrail" href="GuideImageSearch.html" title="
      Image Search
    ">
      Image Search
    </a></li>
</ul>
<p class="para block block-first">
      Geeqie provides a utility to find one or more images based on various parameters.
    </p>
<p class="para block">
      To display a new Search Window press F3 or select Search from the File menu.
    </p>
<p class="para block">
      To start a search activate the Find button. A search in progress can be stopped by activating the Stop button.
    </p>
<p class="para block">
      The progress of an active search is displayed as a progress bar at the bottom of the window. The progress bar will also display the total files that match the search parameters, and the total number of files searched.
    </p>
<p class="para block">
      When a search is completed, the total number of files found and their total size will be displayed in the status bar.
    </p>
<p class="para block"></p>
<div class="autotoc"><ul>
<li>
<span class="label">5.1.1. </span><a class="xref" href="GuideImageSearchSearch.html#Searchlocation" title="
      Search location
    ">
      Search location
    </a>
</li>
<li>
<span class="label">5.1.2. </span><a class="xref" href="GuideImageSearchSearch.html#Searchparameters" title="
      Search parameters
    ">
      Search parameters
    </a>
</li>
<li>
<span class="label">5.1.3. </span><a class="xref" href="GuideImageSearchSearch.html#Resultslist" title="
      Results list
    ">
      Results list
    </a>
</li>
<li>
<span class="label">5.1.4. </span><a class="xref" href="GuideImageSearchSearch.html#Statusbar" title="
      Status bar
    ">
      Status bar
    </a>
</li>
<li>
<span class="label">5.1.5. </span><a class="xref" href="GuideImageSearchSearch.html#DragandDrop" title="
      Drag and Drop
    ">
      Drag and Drop
    </a>
</li>
</ul></div>
<div class="division section">
<a name="Searchlocation"></a><div class="header"><h2 class="section title"><span class="title"><span class="label">5.1.1. </span>
      Search location
    </span></h2></div>
<p class="para block block-first">
      One of several locations can be chosen as the source to use in the search.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        Path
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      The search will include files located in the selected folder, enable the Recurse check box to include the contents of all sub folders.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        Comments
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      The search will include all files that have a keyword or comment associated to it.
    </p>
<p class="para block">
      Note: Only keyword and comment associations stored in the user's home folder are included in this search type.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        Results
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      The search will include all files currently listed in the results list, use this to refine a previous search.
    </p>
<p class="para block"></p>
</div>
<div class="division section">
<a name="Searchparameters"></a><div class="header"><h2 class="section title"><span class="title"><span class="label">5.1.2. </span>
      Search parameters
    </span></h2></div>
<p class="para block block-first">
      Each search parameter can be enabled or disabled with the check box to it's left. For a file to be a match, all enabled parameters must be true.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        File name
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      The search will match if the entered text appears within the file name, or if the text exactly matches the file name, depending on the method selected from the drop down menu. The text comparison can be made to be case sensitive by enabling the Match case checkbox.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        File size
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      The search will match if the file size on disk is equal to, less than, greater than, or between the entered value, depending on the method selected from the drop down menu. The between test is inclusive, for example a file of size 10 will match if the size parameters are between 10 and 15.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        File date
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      The search will match if the file modification time on disk is equal to, before, after, or between the entered date, depending on the method selected from the drop down menu. The between test is inclusive, for example a file with date of 10/04/2003 will match if the date parameters are between 10/04/2003 and 12/31/2003.
    </p>
<p class="para block">
      For convenience, the button with the down arrow displays a pop up calendar to enter the date.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        Image dimensions
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      The search will match if the image dimensions are equal to, less than, greater than, or between the entered values, depending on the method selected from the drop down menu. The between test is inclusive.
    </p>
<p class="para block">
      The image dimensions test is simple, both width and height must be within the allowed values for a match.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        Image content
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      The search will match if the image contents are similar within the percentage value, inclusive. This uses the same test and data that is used to determine image similarity when <a class="link" href="GuideImageSearchFindingDuplicates.html" title="
      Finding Duplicates
    ">Finding Duplicates</a>. The entry is for entering the path for the image to use in this test.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        Keywords
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      The search will match if the file's associated keywords match all, match any, or exclude the entered keywords, depending on the method selected from the drop down menu. Keywords can be separated with a space, comma, or tab character.
    </p>
<p class="para block"></p>
</div>
<div class="division section">
<a name="Resultslist"></a><div class="header"><h2 class="section title"><span class="title"><span class="label">5.1.3. </span>
      Results list
    </span></h2></div>
<p class="para block block-first">
      Files that match the parameters of the search are shown in the list. By default they are displayed in the order that they are found, to sort the results list by a column activate or click the column title. Activating a column that is already used to sort the list will toggle between increasing and decreasing sort order.
    </p>
<p class="para block">
      A <span class="emphasis emphasis-bold">context menu</span> is available for the result list by right clicking the mouse or pressing the Menu key when a row has the focus.
    </p>
<p class="para block">
      <span class="emphasis emphasis-bold">Keyboard shortcuts</span> available in the results list:
    </p>
<div class="table block block-indent"><table style="border: solid 1px;"><tbody>
<tr>
<td class="td-colsep">
          Shortcut
        </td>
<td class="td-colsep">
          Context menu name
        </td>
<td>
          Description
        </td>
</tr>
<tr class="tr-shade">
<td class="td-colsep">
          Enter
        </td>
<td class="td-colsep">
          View
        </td>
<td>
          Opens selected image in main window.
        </td>
</tr>
<tr>
<td class="td-colsep">
          V
        </td>
<td class="td-colsep">
          View in new window
        </td>
<td>
          Opens selected image in a new window.
        </td>
</tr>
<tr class="tr-shade">
<td class="td-colsep">
          Ctrl + A
        </td>
<td class="td-colsep">
          Select all
        </td>
<td>
          Selects all images.
        </td>
</tr>
<tr>
<td class="td-colsep">
          Ctrl + Shift + A
        </td>
<td class="td-colsep">
          Select none
        </td>
<td>
          Clear the image selection.
        </td>
</tr>
<tr class="tr-shade">
<td class="td-colsep">
          Ctrl + 1 through
          Ctrl + 0
        </td>
<td class="td-colsep">
          Edit sub menu
        </td>
<td>
          Executes the respective editor command.
        </td>
</tr>
<tr>
<td class="td-colsep">
          Ctrl + P
        </td>
<td class="td-colsep">
          Properties
        </td>
<td>
          Opens a properties window for selected images.
        </td>
</tr>
<tr class="tr-shade">
<td class="td-colsep">
          C
        </td>
<td class="td-colsep">
          Add to new collection
        </td>
<td>
          Creates a new collection containing the selected images.
        </td>
</tr>
<tr>
<td class="td-colsep"></td>
<td class="td-colsep">
          Print
        </td>
<td>
          Opens a print dialog for selected images.
        </td>
</tr>
<tr class="tr-shade">
<td class="td-colsep">
          Ctrl + C
        </td>
<td class="td-colsep">
          Copy
        </td>
<td>
          Copy selected images.
        </td>
</tr>
<tr>
<td class="td-colsep">
          Ctrl + M
        </td>
<td class="td-colsep">
          Move
        </td>
<td>
          Move selected images.
        </td>
</tr>
<tr class="tr-shade">
<td class="td-colsep">
          Ctrl + R
        </td>
<td class="td-colsep">
          Rename
        </td>
<td>
          Rename selected images.
        </td>
</tr>
<tr>
<td class="td-colsep">
          Ctrl + D
        </td>
<td class="td-colsep">
          Delete
        </td>
<td>
          Delete selected images.
        </td>
</tr>
<tr class="tr-shade">
<td class="td-colsep">
          Delete
        </td>
<td class="td-colsep">
          Remove
        </td>
<td>
          Remove selected images from result list.
        </td>
</tr>
<tr>
<td class="td-colsep">
          Ctrl + Delete
        </td>
<td class="td-colsep">
          Clear
        </td>
<td>
          Cleared the result list.
        </td>
</tr>
<tr class="tr-shade">
<td class="td-colsep">
          Menu
        </td>
<td class="td-colsep"></td>
<td>
          Displays the context menu.
        </td>
</tr>
<tr>
<td class="td-colsep">
          Ctrl + T
        </td>
<td class="td-colsep"></td>
<td>
          Toggle display of thumbnails.
        </td>
</tr>
<tr class="tr-shade">
<td class="td-colsep">
          Ctrl + W
        </td>
<td class="td-colsep"></td>
<td>
          Close window.
        </td>
</tr>
</tbody></table></div>
<p class="para block">
      The <span class="emphasis emphasis-bold">selection</span> can be changed using the keyboard and mouse the same as in a <a class="link" href="GuideMainWindowFilePane.html" title="
      File Pane
    ">file pane</a> of the main window.
    </p>
<p class="para block">
      The image Dimensions column of the result list will only contain dimension information when dimensions are included in the search parameters.
    </p>
<p class="para block"></p>
</div>
<div class="division section">
<a name="Statusbar"></a><div class="header"><h2 class="section title"><span class="title"><span class="label">5.1.4. </span>
      Status bar
    </span></h2></div>
<p class="para block block-first">
      At the bottom of the search window is an area that includes the following items from left to right:
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        Thumbnails
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      Enable this check box to display a thumbnail next to each image in the results list.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        File count display
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      Displays the total count of files in the results list, and their size on disk. The count of selected files will appear in parenthesis.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        Search progress
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      When a search is active, the text “Searching...” will appear here. Two numbers in parenthesis will also be displayed, the first number is the number of files that match the search parameters and the second number is the total number of files that were searched.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        Find
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      Activate the find button to start a search with the selected parameters.
    </p>
<div class="block list variablelist"><dl class="variablelist">
<dt class="term dt-first">
        Stop
      </dt>
<dd><p class="para block block-first"></p></dd>
</dl></div>
<p class="para block">
      Activate the stop button to end a search that is in progress.
    </p>
<p class="para block"></p>
</div>
<div class="division section">
<a name="DragandDrop"></a><div class="header"><h2 class="section title"><span class="title"><span class="label">5.1.5. </span>
      Drag and Drop
    </span></h2></div>
<p class="para block block-first">
      Drag and drop can be initiated with the primary or middle mouse buttons. Dragging a file that is selected will include all selected files in the drag. Dragging a file that is not selected will first change the selection to the dragged file, and clear the previous selection.
    </p>
<p class="para block"></p>
</div>
</div></div>
<div class="navbar navbar-bottom"><table class="navbar"><tr>
<td class="navbar-prev"><a class="navbar-prev" href="GuideImageSearchSearch.html" title="
      Search Window
    ">
      Search Window
    </a></td>
<td class="navbar-next"><a class="navbar-next" href="GuideImageSearchFindingDuplicates.html" title="
      Finding Duplicates
    ">
      Finding Duplicates
    </a></td>
</tr></table></div>
</body>
</html>