prm.declare_entry ("Color shading of interior of cells", "true",
Patterns::Bool());
prm.declare_entry ("Color function", "default",
- Patterns::Selection ("default|grey scale"));
+ Patterns::Selection ("default|grey scale|reverse grey scale"));
};
shade_cells = prm.get_bool ("Color shading of interior of cells");
if (prm.get("Color function") == "default")
color_function = &default_color_function;
- else
+ else if (prm.get("Color function") == "grey scale")
color_function = &grey_scale_color_function;
+ else if (prm.get("Color function") == "reverse grey scale")
+ color_function = &reverse_grey_scale_color_function;
+ else
+ // we shouldn't get here, since
+ // the parameter object should
+ // already have checked that the
+ // given value is valid
+ Assert (false, ExcInternalError());
};
<h3>base</h3>
<ol>
-
+ <li> <p>
+ Fixed: The <code class="class">DataOutBase::EpsFlags</code>
+ class forgot to declare the reverse grey scale function as one
+ possible input for the color function for the
+ <code class="class">ParameterHandler</code> class. This is now
+ possible.
+ <br>
+ (WB 2001/10/10)
+ </p>
</ol>