/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* A Mac L&F implementation of JList
*
* All this does is look for a ThemeBorder and invalidate it when the focus changes
*/
return new AquaListUI();
}
/**
* Creates the focus listener to repaint the focus ring
*/
return new AquaListUI.FocusHandler();
}
/**
* Creates a delegate that implements MouseInputListener.
*/
return new AquaListUI.MouseInputHandler();
}
protected void installKeyboardActions() {
super.installKeyboardActions();
}
private boolean fHomeAction = false;
}
/**
* For a Home action, scrolls to the top. Otherwise, scroll to the end.
*/
if (fHomeAction) {
} else {
}
}
}
/**
* This inner class is marked "public" due to a compiler bug. This class should be treated as a
* "protected" inner class. Instantiate it only within subclasses of BasicListUI.
*/
super.focusGained(e);
}
super.focusLost(e);
}
}
return new AquaPropertyChangeHandler();
}
} else {
super.propertyChange(e);
}
}
}
// TODO: Using default handler for now, need to handle cmd-key
// Replace the mouse event with one that returns the cmd-key state when asked
// for the control-key state, which super assumes is what everyone does to discontiguously extend selections
/*public void mousePressed(final MouseEvent e) {
super.mousePressed(new SelectionMouseEvent(e));
}
public void mouseDragged(final MouseEvent e) {
super.mouseDragged(new SelectionMouseEvent(e));
}*/
}
return list;
}
// this is used for blinking combobox popup selections when they are selected
final Component rendererComponent = renderer.getListCellRendererComponent(list, value, selectedIndex, selected, true);
if (rendererComponent == null) return;
final AquaComboBoxRenderer aquaRenderer = renderer instanceof AquaComboBoxRenderer ? (AquaComboBoxRenderer)renderer : null;
rendererPane.paintComponent(list.getGraphics().create(), rendererComponent, list, rowBounds.x, rowBounds.y, rowBounds.width, rowBounds.height, true);
}
/*
Insert note on JIDESoft naughtiness
*/
return border;
}
return border;
}
return border;
}
return border;
}
return border;
}
public void paintBorder(final Component c, final Graphics g, final int x, final int y, final int w, final int h) {
} else {
}
super.paintBorder(c, g, x, y, w, h);
}
}
}