Lines Matching refs:progressBar

97       progressBar.repaint();  in stateChanged()
119 && progressBar.isShowing()) in propertyChange()
143 if (progressBar.isIndeterminate()) in ancestorAdded()
250 protected JProgressBar progressBar; field in BasicProgressBarUI
330 double percentDone = progressBar.getPercentComplete(); in getAmountFull()
331 if (progressBar.getOrientation() == JProgressBar.HORIZONTAL) in getAmountFull()
359 if (!progressBar.isIndeterminate()) in getBox()
365 SwingUtilities.calculateInnerArea(progressBar, vr); in getBox()
372 if (progressBar.getOrientation() == JProgressBar.HORIZONTAL) in getBox()
390 if (progressBar.getOrientation() == JProgressBar.HORIZONTAL) in getBox()
440 int orientation = progressBar.getOrientation(); in getMaximumSize()
469 int orientation = progressBar.getOrientation(); in getMinimumSize()
495 Font font = progressBar.getFont(); in getPreferredInnerHorizontal()
496 FontMetrics fm = progressBar.getFontMetrics(font); in getPreferredInnerHorizontal()
499 String str = progressBar.getString(); in getPreferredInnerHorizontal()
501 stringWidth = fm.stringWidth(progressBar.getString()); in getPreferredInnerHorizontal()
502 Insets i = progressBar.getInsets(); in getPreferredInnerHorizontal()
523 Font font = progressBar.getFont(); in getPreferredInnerVertical()
524 FontMetrics fm = progressBar.getFontMetrics(font); in getPreferredInnerVertical()
527 String str = progressBar.getString(); in getPreferredInnerVertical()
529 stringWidth = fm.stringWidth(progressBar.getString()); in getPreferredInnerVertical()
530 Insets i = progressBar.getInsets(); in getPreferredInnerVertical()
554 int orientation = progressBar.getOrientation(); in getPreferredSize()
606 if (progressBar.getOrientation() == JProgressBar.HORIZONTAL) in getStringPlacement()
614 SwingUtilities.layoutCompoundLabel(progressBar, fm, progressString, null, in getStringPlacement()
620 if (progressBar.getOrientation() == JProgressBar.HORIZONTAL) in getStringPlacement()
635 progressBar.repaint(); in incrementAnimationIndex()
647 if (! progressBar.isIndeterminate()) in paint()
665 int max = progressBar.getMaximum(); in paintDeterminate()
666 int min = progressBar.getMinimum(); in paintDeterminate()
667 int value = progressBar.getValue(); in paintDeterminate()
670 Rectangle or = progressBar.getBounds(); in paintDeterminate()
675 if (progressBar.getOrientation() == JProgressBar.HORIZONTAL) in paintDeterminate()
687 if (progressBar.isStringPainted() && !progressBar.getString().equals("")) in paintDeterminate()
718 if (progressBar.isStringPainted() && !progressBar.getString().equals("")) in paintIndeterminate()
739 String str = progressBar.getString(); in paintString()
741 Point placement = getStringPlacement(g, progressBar.getString(), in paintString()
747 FontMetrics fm = g.getFontMetrics(progressBar.getFont()); in paintString()
749 if (progressBar.getOrientation() == JProgressBar.VERTICAL) in paintString()
752 g.setFont(progressBar.getFont().deriveFont(rotate)); in paintString()
779 progressBar.repaint(); in setAnimationIndex()
835 LookAndFeel.installColorsAndFont(progressBar, "ProgressBar.background", in installDefaults()
838 LookAndFeel.installBorder(progressBar, "ProgressBar.border"); in installDefaults()
839 progressBar.setOpaque(true); in installDefaults()
868 progressBar.setFont(null); in uninstallDefaults()
869 progressBar.setForeground(null); in uninstallDefaults()
870 progressBar.setBackground(null); in uninstallDefaults()
886 progressBar.addChangeListener(changeListener); in installListeners()
887 progressBar.addPropertyChangeListener(propertyListener); in installListeners()
891 progressBar.addAncestorListener(ancestorListener); in installListeners()
894 progressBar.addComponentListener(componentListener); in installListeners()
903 progressBar.removeChangeListener(changeListener); in uninstallListeners()
904 progressBar.removePropertyChangeListener(propertyListener); in uninstallListeners()
912 progressBar.removeAncestorListener(ancestorListener); in uninstallListeners()
916 progressBar.removeComponentListener(componentListener); in uninstallListeners()
933 progressBar = (JProgressBar) c; in installUI()
941 if (progressBar.isIndeterminate()) in installUI()
959 progressBar = null; in uninstallUI()