Example usage for javax.swing Scrollable interface-usage

List of usage examples for javax.swing Scrollable interface-usage

Introduction

In this page you can find the example usage for javax.swing Scrollable interface-usage.

Usage

From source file ScrollableLabel.java

public class ScrollableLabel extends JLabel implements Scrollable {
    public ScrollableLabel(ImageIcon i) {
        super(i);
    }

    public Dimension getPreferredScrollableViewportSize() {

From source file Main.java

public class Main extends JLabel implements Scrollable {
    public Main(ImageIcon i) {
        super(i);
    }

    public Dimension getPreferredScrollableViewportSize() {

From source file ScrollDesktop.java

class ScrollDesktop extends JDesktopPane implements Scrollable {
    public Dimension getPreferredScrollableViewportSize() {
        return getPreferredSize();
    }

    public int getScrollableUnitIncrement(Rectangle r, int axis, int dir) {

From source file Main.java

class ScrollableLabel extends JLabel implements Scrollable {
    public ScrollableLabel(ImageIcon i) {
        super(i);
    }

    public Dimension getPreferredScrollableViewportSize() {

From source file Main.java

class ScrollablePanel extends JPanel implements Scrollable {
    public Dimension getPreferredSize() {
        return getPreferredScrollableViewportSize();
    }

    public Dimension getPreferredScrollableViewportSize() {

From source file com.github.alexfalappa.nbspringboot.projects.initializr.BootDependenciesPanel.java

import com.fasterxml.jackson.databind.JsonNode;

import static javax.swing.SwingConstants.HORIZONTAL;

/**
 * Specialized scrollable panel to manage a list of checkboxes groups each containing two columns of checkboxes.

From source file misc.ScrollablePicture.java

public class ScrollablePicture extends JLabel implements Scrollable {

    private int maxUnitIncrement = 1;
    private boolean missingPicture = false;

    public ScrollablePicture(ImageIcon i, int m) {

From source file components.ScrollablePicture.java

public class ScrollablePicture extends JLabel implements Scrollable, MouseMotionListener {

    private int maxUnitIncrement = 1;
    private boolean missingPicture = false;

    public ScrollablePicture(ImageIcon i, int m) {

From source file org.intermine.install.swing.source.SourcePropertiesPanel.java

/**
 * A panel for displaying the source specific property fields.
 */
public class SourcePropertiesPanel extends JPanel implements Scrollable {
    private static final long serialVersionUID = -8760544765304724319L;

From source file org.jimcat.gui.wheellist.WheelList.java

/**
 * A Swing component feigning a long list of visible items.
 * 
 * T ... Typ of represented items
 * 
 * $Id$