Class LoginScreenPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.loginscreen.LoginScreenPlugin
-
- All Implemented Interfaces:
com.google.inject.Module,java.awt.event.KeyListener,java.util.EventListener,KeyListener
@PluginDescriptor(name="Login Screen", description="Provides various enhancements for login screen") public class LoginScreenPlugin extends Plugin implements KeyListener
-
-
Constructor Summary
Constructors Constructor Description LoginScreenPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisEnabledOnLoginScreen()voidkeyPressed(java.awt.event.KeyEvent e)voidkeyReleased(java.awt.event.KeyEvent e)voidkeyTyped(java.awt.event.KeyEvent e)voidonConfigChanged(ConfigChanged event)voidonGameStateChanged(net.runelite.api.events.GameStateChanged event)voidonProfileChanged(ProfileChanged profileChanged)protected voidshutDown()protected voidstartUp()-
Methods inherited from class net.runelite.client.plugins.Plugin
configure, equals, getInjector, getName, hashCode, resetConfiguration
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.runelite.client.input.KeyListener
focusLost
-
-
-
-
Method Detail
-
startUp
protected void startUp() throws java.lang.Exception
-
shutDown
protected void shutDown() throws java.lang.Exception
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged event)
-
onGameStateChanged
@Subscribe public void onGameStateChanged(net.runelite.api.events.GameStateChanged event)
-
onProfileChanged
@Subscribe public void onProfileChanged(ProfileChanged profileChanged)
-
isEnabledOnLoginScreen
public boolean isEnabledOnLoginScreen()
- Specified by:
isEnabledOnLoginScreenin interfaceKeyListener
-
keyTyped
public void keyTyped(java.awt.event.KeyEvent e)
- Specified by:
keyTypedin interfacejava.awt.event.KeyListener
-
keyPressed
public void keyPressed(java.awt.event.KeyEvent e)
- Specified by:
keyPressedin interfacejava.awt.event.KeyListener
-
keyReleased
public void keyReleased(java.awt.event.KeyEvent e)
- Specified by:
keyReleasedin interfacejava.awt.event.KeyListener
-
-