Search in sources :

Example 1 with ItemEditionWindowController

use of delta.games.lotro.gui.items.ItemEditionWindowController in project lotro-companion by dmorcellet.

the class EquipmentPanelController method handleEditItem.

private void handleEditItem(EQUIMENT_SLOT slot) {
    Item item = getItemForSlot(slot);
    if (item != null) {
        ItemEditionWindowController ctrl = new ItemEditionWindowController(_parentWindow, item);
        ctrl.show(true);
        refreshToon();
    }
}
Also used : JMenuItem(javax.swing.JMenuItem) Item(delta.games.lotro.lore.items.Item) ItemEditionWindowController(delta.games.lotro.gui.items.ItemEditionWindowController)

Example 2 with ItemEditionWindowController

use of delta.games.lotro.gui.items.ItemEditionWindowController in project lotro-companion by dmorcellet.

the class StashWindowController method editItem.

private void editItem(Item item) {
    ItemEditionWindowController ctrl = new ItemEditionWindowController(this, item);
    ctrl.show(true);
    _toon.saveStash();
}
Also used : ItemEditionWindowController(delta.games.lotro.gui.items.ItemEditionWindowController)

Aggregations

ItemEditionWindowController (delta.games.lotro.gui.items.ItemEditionWindowController)2 Item (delta.games.lotro.lore.items.Item)1 JMenuItem (javax.swing.JMenuItem)1