Search in sources :

Example 1 with GatewayView

use of main.gui.gateway.GatewayView in project Eidolons by IDemiurge.

the class GatewayWindow method init.

public void init() {
    panel = new G_Panel();
    G_Panel backgroundPanel = initBackgroundPanel();
    String pos = "pos 0 0, id backgroundPanel";
    // panel.add(backgroundPanel, pos);
    G_Panel buttonPanel = initButtonPanel();
    pos = "pos 0 0, id buttonPanel";
    panel.add(buttonPanel, pos);
    view = new GatewayView();
    pos = "pos 0 buttonPanel.y2, id gatewayView";
    panel.add(view, pos);
// G_Panel statsPanel; //
// G_Panel sessionInfoPanel;
// G_Panel objEditPanel; // task, goal, ...
// G_Panel boxPanel; // switch style,
}
Also used : G_Panel(main.swing.generic.components.G_Panel) GatewayView(main.gui.gateway.GatewayView)

Aggregations

GatewayView (main.gui.gateway.GatewayView)1 G_Panel (main.swing.generic.components.G_Panel)1