Search in sources :

Example 1 with MekChassisView

use of megameklab.com.ui.view.MekChassisView in project megameklab by MegaMek.

the class StructureTab method setUpPanels.

private void setUpPanels() {
    masterPanel = new JPanel(new GridBagLayout());
    panBasicInfo = new BasicInfoView(getMech().getConstructionTechAdvancement());
    panChassis = new MekChassisView(panBasicInfo);
    panArmor = new MVFArmorView(panBasicInfo);
    panMovement = new MovementView(panBasicInfo);
    panHeat = new HeatSinkView(panBasicInfo);
    panArmorAllocation = new ArmorAllocationView(panBasicInfo, Entity.ETYPE_MECH);
    panPatchwork = new PatchworkArmorView(panBasicInfo);
    panSummary = new SummaryView(eSource);
    if (getMech().hasPatchworkArmor()) {
        panArmorAllocation.showPatchwork(true);
    } else {
        panPatchwork.setVisible(false);
    }
    GridBagConstraints gbc;
    panBasicInfo.setFromEntity(getMech());
    panChassis.setFromEntity(getMech());
    panArmor.setFromEntity(getMech());
    panMovement.setFromEntity(getMech());
    panHeat.setFromMech(getMech());
    panArmorAllocation.setFromEntity(getMech());
    panPatchwork.setFromEntity(getMech());
    JPanel leftPanel = new JPanel();
    JPanel centerPanel = new JPanel();
    JPanel rightPanel = new JPanel();
    leftPanel.setLayout(new BoxLayout(leftPanel, BoxLayout.Y_AXIS));
    centerPanel.setLayout(new BoxLayout(centerPanel, BoxLayout.Y_AXIS));
    rightPanel.setLayout(new BoxLayout(rightPanel, BoxLayout.Y_AXIS));
    leftPanel.add(panBasicInfo);
    leftPanel.add(Box.createVerticalStrut(11));
    leftPanel.add(panChassis);
    leftPanel.add(Box.createVerticalStrut(11));
    leftPanel.add(panHeat);
    leftPanel.add(Box.createGlue());
    centerPanel.add(panArmor);
    centerPanel.add(panMovement);
    centerPanel.add(panSummary);
    centerPanel.add(Box.createVerticalGlue());
    rightPanel.add(panArmorAllocation);
    rightPanel.add(panPatchwork);
    rightPanel.add(Box.createVerticalGlue());
    gbc = new GridBagConstraints();
    gbc.gridx = 0;
    gbc.gridy = 0;
    gbc.fill = java.awt.GridBagConstraints.NONE;
    gbc.weightx = 0.0;
    gbc.weighty = 1.0;
    gbc.anchor = GridBagConstraints.NORTHWEST;
    masterPanel.add(leftPanel, gbc);
    gbc.gridx = 1;
    masterPanel.add(centerPanel, gbc);
    gbc.gridx = 2;
    masterPanel.add(rightPanel, gbc);
    panBasicInfo.setBorder(BorderFactory.createTitledBorder("Basic Information"));
    panChassis.setBorder(BorderFactory.createTitledBorder("Chassis"));
    panMovement.setBorder(BorderFactory.createTitledBorder("Movement"));
    panHeat.setBorder(BorderFactory.createTitledBorder("Heat Sinks"));
    panArmor.setBorder(BorderFactory.createTitledBorder("Armor"));
    panSummary.setBorder(BorderFactory.createTitledBorder("Summary"));
    panArmorAllocation.setBorder(BorderFactory.createTitledBorder("Armor Allocation"));
    panPatchwork.setBorder(BorderFactory.createTitledBorder("Patchwork Armor"));
}
Also used : HeatSinkView(megameklab.com.ui.view.HeatSinkView) JPanel(javax.swing.JPanel) BasicInfoView(megameklab.com.ui.view.BasicInfoView) GridBagConstraints(java.awt.GridBagConstraints) GridBagLayout(java.awt.GridBagLayout) PatchworkArmorView(megameklab.com.ui.view.PatchworkArmorView) BoxLayout(javax.swing.BoxLayout) MVFArmorView(megameklab.com.ui.view.MVFArmorView) MekChassisView(megameklab.com.ui.view.MekChassisView) ArmorAllocationView(megameklab.com.ui.view.ArmorAllocationView) SummaryView(megameklab.com.ui.Mek.views.SummaryView) MovementView(megameklab.com.ui.view.MovementView)

Aggregations

GridBagConstraints (java.awt.GridBagConstraints)1 GridBagLayout (java.awt.GridBagLayout)1 BoxLayout (javax.swing.BoxLayout)1 JPanel (javax.swing.JPanel)1 SummaryView (megameklab.com.ui.Mek.views.SummaryView)1 ArmorAllocationView (megameklab.com.ui.view.ArmorAllocationView)1 BasicInfoView (megameklab.com.ui.view.BasicInfoView)1 HeatSinkView (megameklab.com.ui.view.HeatSinkView)1 MVFArmorView (megameklab.com.ui.view.MVFArmorView)1 MekChassisView (megameklab.com.ui.view.MekChassisView)1 MovementView (megameklab.com.ui.view.MovementView)1 PatchworkArmorView (megameklab.com.ui.view.PatchworkArmorView)1