/** * ************************************************************************* * * Add a full row * component */ protected void addWidgetFullRowWithInsets( JComponent comp, boolean fixHeight, int inst, int insl, int insb, int insr) { rowNum_ = ds_.addWidgetFullRowWithInsets( cp_, comp, fixHeight, inst, insl, insb, insr, rowNum_, columns_); return; }
/** * ************************************************************************* * * Add two (really) * labeled components to one row */ protected void addTwoTrueLabeledWidgets( JLabel label1, JComponent comp, JLabel label2, JComponent comp2, boolean gottaGrow) { rowNum_ = ds_.installTrueLabelJCompPair( cp_, label1, comp, label2, comp2, rowNum_, columns_, gottaGrow); return; }
/** * ************************************************************************* * * Add a full row * component with a label and insets */ protected void addLabeledWidgetWithInsets( JLabel label, JComponent comp, boolean fixHeight, boolean flushLeft, int inst, int insl, int insb, int insr) { rowNum_ = ds_.addLabeledWidgetWithInsets( cp_, label, comp, fixHeight, flushLeft, inst, insl, insb, insr, rowNum_, columns_); return; }
/** * ************************************************************************* * * Finish building */ protected void finishConstructionWithMultiExtraLeftButtons(List<JButton> xtraButtonList) { ds_.buildAndInstallButtonBoxWithMultiExtra(cp_, rowNum_, columns_, false, xtraButtonList, true); setLocationRelativeTo(appState_.getTopFrame()); return; }
/** * ************************************************************************* * * Finish building */ protected void finishConstruction() { ds_.buildAndInstallButtonBox(cp_, rowNum_, columns_, false, true); setLocationRelativeTo(appState_.getTopFrame()); return; }
/** ************************************************************************* * * Add a table */ protected void addTableNoInset(JComponent tablePan, int rowHeight) { rowNum_ = ds_.addTableNoInset(cp_, tablePan, rowHeight, rowNum_, columns_); return; }
/** * ************************************************************************* * * Add a labeled * button pair to a full row */ protected void addLabeledButtonPair(JLabel label, JRadioButton but1, JRadioButton but2) { rowNum_ = ds_.addLabeledButtonPair(cp_, label, but1, but2, rowNum_, columns_); return; }
/** * ************************************************************************* * * Add a labeled * scrolled component */ protected void addLabeledScrolledWidget(String labelKey, JComponent comp, int scrollRows) { rowNum_ = ds_.addLabeledScrolledWidget(cp_, labelKey, comp, rowNum_, columns_, scrollRows); return; }
/** * ************************************************************************* * * Add a full row * component with a label */ protected void addLabeledWidget( JLabel label, JComponent comp, boolean fixHeight, boolean flushLeft) { rowNum_ = ds_.addLabeledWidget(cp_, label, comp, fixHeight, flushLeft, rowNum_, columns_); return; }
/** * ************************************************************************* * * Add a full row * component */ protected void addTallWidgetFullRow( JComponent comp, boolean fixHeight, boolean flushLeft, int height) { rowNum_ = ds_.addTallWidgetFullRow(cp_, comp, fixHeight, flushLeft, height, rowNum_, columns_); return; }