JPanel
79808182838485
public static Grid oneColumn() { return oneColumn(0); } public static Grid oneColumn(int vgap) { return new Grid(new KongaPanel(), new GridLayout(0, 1, 0, vgap)); }
85868788899091
} private final JPanel panel; public Grid() { this(new KongaPanel()); }
89909192939495
public Grid() { this(new KongaPanel()); } public Grid(int rows, int cols) { this(new KongaPanel(), new GridLayout(rows, cols)); }
93949596979899
public Grid(int rows, int cols) { this(new KongaPanel(), new GridLayout(rows, cols)); } public Grid(int rows, int cols, int hgap, int vgap) { this(new KongaPanel(), new GridLayout(rows, cols, hgap, vgap)); }
37383940414243
private final Map<String, Component> names; private String currentCard; public CardPanel() { this(new KongaPanel()); }
349350351352353354355356357358
private KongaPanelAlphaAnimator animator; public Displayer(String title, ButtonOrientation buttonOrientation, boolean showInitial) { super(); titlePanel = new TitlePanel(title, buttonOrientation, showInitial); contentPanel = new KongaPanel(new BorderLayout()); contentPanel.add(component, BorderLayout.CENTER); layoutUi(showInitial); isShowing = showInitial; }
4546474849505152
private Float alignmentY; private boolean useSmallSizedIconsForActions; protected BoxBuilder() { this.panel = new KongaPanel(); panel.setLayout(createLayout(panel)); }