Search in sources :

Example 1 with CharacterLevelWindowController

use of delta.games.lotro.gui.stats.levelling.CharacterLevelWindowController in project lotro-companion by dmorcellet.

the class MainFrameController method doLevelling.

private void doLevelling() {
    String id = CharacterLevelWindowController.getIdentifier();
    WindowController controller = _windowsManager.getWindow(id);
    if (controller == null) {
        controller = new CharacterLevelWindowController();
        _windowsManager.registerWindow(controller);
        controller.getWindow().setLocationRelativeTo(getFrame());
    }
    controller.bringToFront();
}
Also used : CharacterLevelWindowController(delta.games.lotro.gui.stats.levelling.CharacterLevelWindowController) CharacterLevelWindowController(delta.games.lotro.gui.stats.levelling.CharacterLevelWindowController) ReputationSynopsisWindowController(delta.games.lotro.gui.stats.reputation.synopsis.ReputationSynopsisWindowController) WarbandsWindowController(delta.games.lotro.gui.stats.warbands.WarbandsWindowController) WindowController(delta.common.ui.swing.windows.WindowController) DefaultWindowController(delta.common.ui.swing.windows.DefaultWindowController) DeedsExplorerWindowController(delta.games.lotro.gui.deed.DeedsExplorerWindowController) MapWindowController(delta.games.lotro.maps.ui.MapWindowController) CraftingSynopsisWindowController(delta.games.lotro.gui.stats.crafting.synopsis.CraftingSynopsisWindowController)

Aggregations

DefaultWindowController (delta.common.ui.swing.windows.DefaultWindowController)1 WindowController (delta.common.ui.swing.windows.WindowController)1 DeedsExplorerWindowController (delta.games.lotro.gui.deed.DeedsExplorerWindowController)1 CraftingSynopsisWindowController (delta.games.lotro.gui.stats.crafting.synopsis.CraftingSynopsisWindowController)1 CharacterLevelWindowController (delta.games.lotro.gui.stats.levelling.CharacterLevelWindowController)1 ReputationSynopsisWindowController (delta.games.lotro.gui.stats.reputation.synopsis.ReputationSynopsisWindowController)1 WarbandsWindowController (delta.games.lotro.gui.stats.warbands.WarbandsWindowController)1 MapWindowController (delta.games.lotro.maps.ui.MapWindowController)1