add(fill);
}
private JPanel createCheckBoxes() {
RDRenderingOptions renderingOptions = simulator_.getRenderingOptions();
showU_ = new JCheckBox("U Value", renderingOptions.isShowingU());
showU_.addActionListener(this);
showV_ = new JCheckBox("V Value", renderingOptions.isShowingV());
showV_.addActionListener(this);
useComputeConcurrency_ =
createCheckBox("Parallel caclulation",
"Take advantage of multiple processors for RD calculation if checked.",
gs_.isParallelized());
useRenderingConcurrency_ =
createCheckBox("Parallel rendering",
"Take advantage of multiple processors for rendering if checked.",
renderingOptions.isParallelized());
useFixedSize_ =
createCheckBox("Fixed Size",
"Use just a small fixed size area for rendering rather than the whole resizable area.",
simulator_.getUseFixedSize());