Package com.kolakcc.loljclient.view.ui

Examples of com.kolakcc.loljclient.view.ui.VerticalJScrollPane


    this.add(team2Panel,BorderLayout.EAST);
   
    JPanel centerPanel = new JPanel(new BorderLayout());
   
    championsPanel = new ChampionsPanel(IconSizeComboBoxModel.MEDIUM,"Playable");
    centerPanel.add(new VerticalJScrollPane(championsPanel), BorderLayout.CENTER);
   
    JPanel customizePanel = new JPanel(new BorderLayout());
   
    JPanel runesAndMasteries = new JPanel(new GridLayout(2,1));
    runePageList = new JComboBox<RunePage>();
View Full Code Here


    this.sizeComboBox = new JComboBox<IconSize>();
    topPanel.add(this.sizeComboBox);
    this.add(topPanel, BorderLayout.NORTH);
   
    this.championsPanel = panel;
    this.add(new VerticalJScrollPane(this.championsPanel), BorderLayout.CENTER);

    this.setSize(500, 600);
  }
View Full Code Here

    this.add(topPanel, BorderLayout.NORTH);

    JTabbedPane tabbedPane = new JTabbedPane();

    this.skinsPanel = new JPanel(new WrapLayout());
    JScrollPane skinScroller = new VerticalJScrollPane(this.skinsPanel);
    skinScroller.getVerticalScrollBar().setUnitIncrement(16);
    tabbedPane.addTab(championDetailedViewMessages.getString("skins"), skinScroller);
   
   
    this.statsPanel = new JEditorPane();
    this.statsPanel.setContentType("text/html");
    this.statsPanel.setEditable(false);
   
    JScrollPane statsScroller = new VerticalJScrollPane(this.statsPanel);
    statsScroller.getVerticalScrollBar().setUnitIncrement(16);
    tabbedPane.addTab(championDetailedViewMessages.getString("Stats"), statsScroller);

    this.loreTabPanel = new JEditorPane();
    this.loreTabPanel.setContentType("text/html");

    this.loreTabPanel.setEditable(false);

    JScrollPane loreScroller = new VerticalJScrollPane(this.loreTabPanel);
    loreScroller.getVerticalScrollBar().setUnitIncrement(16);

    tabbedPane.addTab(championDetailedViewMessages.getString("lore"), loreScroller);

    JPanel videoPanel = new JPanel();
    this.selectionAudioButton = new LocalizedJButton(championDetailedViewMessages, "selection audio");
    videoPanel.add(this.selectionAudioButton);

    JScrollPane scrollerVideo = new VerticalJScrollPane(videoPanel);
    skinScroller.getVerticalScrollBar().setUnitIncrement(16);
    tabbedPane.addTab(championDetailedViewMessages.getString("audio_video"), scrollerVideo);

    JPanel tipsTabBox = new JPanel();
    tipsTabBox.setLayout(new BoxLayout(tipsTabBox, BoxLayout.Y_AXIS));
View Full Code Here

    topGamePanel.add(itemsPanel,BorderLayout.CENTER);
   
    gameInfo.add(topGamePanel,BorderLayout.NORTH);
   
    statsPanel = new JPanel(new GridLayout(0, 2));
    gameInfo.add(new VerticalJScrollPane(statsPanel),BorderLayout.CENTER);

    recentMatchesPanel.add(gameInfo, BorderLayout.CENTER);

    recentGamesTabPanel.add(recentMatchesPanel);
    tabPane.addTab(profileViewMessages.getString("recent games"), recentGamesTabPanel);

    leaguesTabPane = new JTabbedPane();
    tabPane.addTab(profileViewMessages.getString("leagues"), leaguesTabPane);
   
    JPanel runesPanel = new JPanel(new BorderLayout());
    runesTable = new JTable();
    runesPanel.add(new VerticalJScrollPane(runesTable),BorderLayout.WEST);
   
    runePagesTabPane = new JTabbedPane();
    runesPanel.add(runePagesTabPane,BorderLayout.CENTER);
    tabPane.add(profileViewMessages.getString("runes"),runesPanel);
   
View Full Code Here

    JTabbedPane tabbedPane = new JTabbedPane();
   
    outArea = new JTextArea();
    outArea.setEditable(false);
    outArea.setLineWrap(true);
    tabbedPane.addTab("System.out", new VerticalJScrollPane(outArea));
   
    errArea = new JTextArea();
    errArea.setEditable(false);
    errArea.setLineWrap(true);
    tabbedPane.addTab("System.err", new VerticalJScrollPane(errArea));
   
    objects = new JTextArea();
    objects.setEditable(false);
    objects.setLineWrap(true);
    tabbedPane.addTab("Objects", new VerticalJScrollPane(objects));

    this.add(tabbedPane, BorderLayout.CENTER);
    this.setVisible(true);
  }
View Full Code Here

TOP

Related Classes of com.kolakcc.loljclient.view.ui.VerticalJScrollPane

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.