Class LoginScreenPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.loginscreen.LoginScreenPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
,KeyListener
,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 boolean
isEnabledOnLoginScreen()
void
keyPressed(KeyEvent e)
void
keyReleased(KeyEvent e)
void
keyTyped(KeyEvent e)
void
onConfigChanged(ConfigChanged event)
void
onGameStateChanged(GameStateChanged event)
void
onProfileChanged(ProfileChanged profileChanged)
protected void
shutDown()
protected void
startUp()
-
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 Exception
-
shutDown
protected void shutDown() throws Exception
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged event)
-
onGameStateChanged
@Subscribe public void onGameStateChanged(GameStateChanged event)
-
onProfileChanged
@Subscribe public void onProfileChanged(ProfileChanged profileChanged)
-
isEnabledOnLoginScreen
public boolean isEnabledOnLoginScreen()
- Specified by:
isEnabledOnLoginScreen
in interfaceKeyListener
-
keyTyped
public void keyTyped(KeyEvent e)
- Specified by:
keyTyped
in interfaceKeyListener
-
keyPressed
public void keyPressed(KeyEvent e)
- Specified by:
keyPressed
in interfaceKeyListener
-
keyReleased
public void keyReleased(KeyEvent e)
- Specified by:
keyReleased
in interfaceKeyListener
-
-