Search in sources :

Example 1 with DropshipStructureTab

use of megameklab.com.ui.Dropship.tabs.DropshipStructureTab in project megameklab by MegaMek.

the class MainUI method reloadTabs.

@Override
public void reloadTabs() {
    masterPanel.removeAll();
    configPane.removeAll();
    masterPanel.setLayout(new BorderLayout());
    structureTab = new DropshipStructureTab(this);
    previewTab = new PreviewTab(this);
    statusbar = new StatusBar(this);
    equipmentTab = new EquipmentTab(this);
    buildTab = new DropshipBuildTab(this, equipmentTab);
    transportTab = new TransportTab(this);
    structureTab.addRefreshedListener(this);
    equipmentTab.addRefreshedListener(this);
    buildTab.addRefreshedListener(this);
    transportTab.addRefreshedListener(this);
    statusbar.addRefreshedListener(this);
    configPane.addTab("Structure/Armor", structureTab);
    configPane.addTab("Equipment", equipmentTab);
    configPane.addTab("Assign Criticals", buildTab);
    configPane.addTab("Transport Bays", transportTab);
    configPane.addTab("Preview", previewTab);
    masterPanel.add(configPane, BorderLayout.CENTER);
    masterPanel.add(statusbar, BorderLayout.SOUTH);
    refreshHeader();
    this.repaint();
}
Also used : BorderLayout(java.awt.BorderLayout) DropshipStructureTab(megameklab.com.ui.Dropship.tabs.DropshipStructureTab) EquipmentTab(megameklab.com.ui.Aero.tabs.EquipmentTab) TransportTab(megameklab.com.ui.Dropship.tabs.TransportTab) DropshipBuildTab(megameklab.com.ui.Dropship.tabs.DropshipBuildTab) PreviewTab(megameklab.com.ui.Aero.tabs.PreviewTab)

Aggregations

BorderLayout (java.awt.BorderLayout)1 EquipmentTab (megameklab.com.ui.Aero.tabs.EquipmentTab)1 PreviewTab (megameklab.com.ui.Aero.tabs.PreviewTab)1 DropshipBuildTab (megameklab.com.ui.Dropship.tabs.DropshipBuildTab)1 DropshipStructureTab (megameklab.com.ui.Dropship.tabs.DropshipStructureTab)1 TransportTab (megameklab.com.ui.Dropship.tabs.TransportTab)1