Class BankTagsPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.banktags.BankTagsPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
,MouseWheelListener
@PluginDescriptor(name="Bank Tags", description="Enable tagging of bank items and searching of bank tags", tags={"searching","tagging"}) public class BankTagsPlugin extends Plugin implements MouseWheelListener
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONFIG_GROUP
static String
ICON_SEARCH
static String
TAG_SEARCH
static String
TAG_TABS_CONFIG
static String
VAR_TAG_SUFFIX
-
Constructor Summary
Constructors Constructor Description BankTagsPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MouseWheelEvent
mouseWheelMoved(MouseWheelEvent event)
void
onConfigChanged(ConfigChanged configChanged)
void
onDraggingWidgetChanged(DraggingWidgetChanged event)
void
onGameTick(GameTick event)
void
onGrandExchangeSearched(GrandExchangeSearched event)
void
onMenuEntryAdded(MenuEntryAdded event)
void
onMenuOptionClicked(MenuOptionClicked event)
void
onScriptCallbackEvent(ScriptCallbackEvent event)
void
onScriptPostFired(ScriptPostFired event)
void
onScriptPreFired(ScriptPreFired event)
void
onWidgetLoaded(WidgetLoaded event)
void
resetConfiguration()
void
shutDown()
void
startUp()
-
-
-
Field Detail
-
CONFIG_GROUP
public static final String CONFIG_GROUP
- See Also:
- Constant Field Values
-
TAG_SEARCH
public static final String TAG_SEARCH
- See Also:
- Constant Field Values
-
ICON_SEARCH
public static final String ICON_SEARCH
- See Also:
- Constant Field Values
-
TAG_TABS_CONFIG
public static final String TAG_TABS_CONFIG
- See Also:
- Constant Field Values
-
VAR_TAG_SUFFIX
public static final String VAR_TAG_SUFFIX
- See Also:
- Constant Field Values
-
-
Method Detail
-
resetConfiguration
public void resetConfiguration()
- Overrides:
resetConfiguration
in classPlugin
-
onGrandExchangeSearched
@Subscribe public void onGrandExchangeSearched(GrandExchangeSearched event)
-
onScriptCallbackEvent
@Subscribe public void onScriptCallbackEvent(ScriptCallbackEvent event)
-
onMenuEntryAdded
@Subscribe public void onMenuEntryAdded(MenuEntryAdded event)
-
onMenuOptionClicked
@Subscribe public void onMenuOptionClicked(MenuOptionClicked event)
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged configChanged)
-
onScriptPreFired
@Subscribe public void onScriptPreFired(ScriptPreFired event)
-
onScriptPostFired
@Subscribe public void onScriptPostFired(ScriptPostFired event)
-
onGameTick
@Subscribe public void onGameTick(GameTick event)
-
onDraggingWidgetChanged
@Subscribe public void onDraggingWidgetChanged(DraggingWidgetChanged event)
-
onWidgetLoaded
@Subscribe public void onWidgetLoaded(WidgetLoaded event)
-
mouseWheelMoved
public MouseWheelEvent mouseWheelMoved(MouseWheelEvent event)
- Specified by:
mouseWheelMoved
in interfaceMouseWheelListener
-
-