Browse Source

more parameter refinements

David Rose 24 years ago
parent
commit
2f5ba8186a
1 changed files with 10 additions and 9 deletions
  1. 10 9
      pandaapp/src/indexify/indexify.cxx

+ 10 - 9
pandaapp/src/indexify/indexify.cxx

@@ -157,6 +157,12 @@ Indexify() {
      "concatenated with a frame number.",
      "concatenated with a frame number.",
      &Indexify::dispatch_none, &caption_frame_numbers);
      &Indexify::dispatch_none, &caption_frame_numbers);
 
 
+  add_option
+    ("font", "fontname", 0,
+     "Specifies the filename of the font to use to generate the thumbnail "
+     "captions.",
+     &Indexify::dispatch_filename, NULL, &_font_filename);
+
   add_option
   add_option
     ("fontaa", "factor", 0,
     ("fontaa", "factor", 0,
      "Specifies a scale factor to apply to the fonts used for captioning "
      "Specifies a scale factor to apply to the fonts used for captioning "
@@ -166,15 +172,9 @@ Indexify() {
      "should be a number in the range 3 to 4 for best effect.",
      "should be a number in the range 3 to 4 for best effect.",
      &Indexify::dispatch_double, NULL, &_font_aa_factor);
      &Indexify::dispatch_double, NULL, &_font_aa_factor);
 
 
-  add_option
-    ("font", "fontname", 0,
-     "Specifies the filename of the font to use to generate the thumbnail "
-     "captions.",
-     &Indexify::dispatch_filename, NULL, &_font_filename);
-
   add_option
   add_option
     ("thumb", "x,y", 0,
     ("thumb", "x,y", 0,
-     "Specifies the size in pixels of thumbnails.",
+     "Specifies the size in pixels of the thumbnail images.",
      &Indexify::dispatch_int_pair, NULL, &thumb_width);
      &Indexify::dispatch_int_pair, NULL, &thumb_width);
 
 
   add_option
   add_option
@@ -185,12 +185,13 @@ Indexify() {
 
 
   add_option
   add_option
     ("space", "x,y", 0,
     ("space", "x,y", 0,
-     "Specifies the x,y spacing between thumbnails in pixels.",
+     "Specifies the x,y spacing between thumbnail images, in pixels.",
      &Indexify::dispatch_int_pair, NULL, &thumb_x_space);
      &Indexify::dispatch_int_pair, NULL, &thumb_x_space);
 
 
   add_option
   add_option
     ("index", "x,y", 0,
     ("index", "x,y", 0,
-     "Specifies the size in pixels of the index images.",
+     "Specifies the size in pixels of the index images (the images that "
+     "contain an index of thumbnails).",
      &Indexify::dispatch_int_pair, NULL, &max_index_width);
      &Indexify::dispatch_int_pair, NULL, &max_index_width);
 
 
   add_option
   add_option