Spaces:
Build error
Build error
package net.minecraft.client.gui.navigation; | |
import net.minecraftforge.api.distmarker.Dist; | |
import net.minecraftforge.api.distmarker.OnlyIn; | |
public interface FocusNavigationEvent { | |
ScreenDirection getVerticalDirectionForInitialFocus(); | |
public static record ArrowNavigation(ScreenDirection direction) implements FocusNavigationEvent { | |
public ScreenDirection getVerticalDirectionForInitialFocus() { | |
return this.direction.getAxis() == ScreenAxis.VERTICAL ? this.direction : ScreenDirection.DOWN; | |
} | |
} | |
public static class InitialFocus implements FocusNavigationEvent { | |
public ScreenDirection getVerticalDirectionForInitialFocus() { | |
return ScreenDirection.DOWN; | |
} | |
} | |
public static record TabNavigation(boolean forward) implements FocusNavigationEvent { | |
public ScreenDirection getVerticalDirectionForInitialFocus() { | |
return this.forward ? ScreenDirection.DOWN : ScreenDirection.UP; | |
} | |
} | |
} |