Merge pull request #330 from Dreyri/onLoadWidget
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
/*
|
||||
* Copyright (c) 2018, Adam <Adam@sigterm.info>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||
* list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
* this list of conditions and the following disclaimer in the documentation
|
||||
* and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
package net.runelite.api.events;
|
||||
|
||||
import lombok.Data;
|
||||
import net.runelite.api.widgets.Widget;
|
||||
|
||||
@Data
|
||||
public class WidgetHiddenChanged
|
||||
{
|
||||
private Widget widget;
|
||||
private boolean hidden;
|
||||
}
|
||||
@@ -24,32 +24,32 @@
|
||||
*/
|
||||
package net.runelite.api.widgets;
|
||||
|
||||
class WidgetID
|
||||
public class WidgetID
|
||||
{
|
||||
static final int LOGOUT_PANEL_ID = 182;
|
||||
static final int BANK_GROUP_ID = 12;
|
||||
static final int BANK_INVENTORY_GROUP_ID = 15;
|
||||
static final int DEPOSIT_BOX_GROUP_ID = 192;
|
||||
static final int INVENTORY_GROUP_ID = 149;
|
||||
static final int EQUIPMENT_GROUP_ID = 387;
|
||||
static final int PESTRCONTROL_GROUP_ID = 408;
|
||||
static final int CLAN_CHAT_GROUP_ID = 7;
|
||||
static final int MINIMAP_GROUP_ID = 160;
|
||||
static final int LOGIN_CLICK_TO_PLAY_GROUP_ID = 378;
|
||||
static final int CLUE_SCROLL_GROUP_ID = 203;
|
||||
static final int FIXED_VIEWPORT_GROUP_ID = 548;
|
||||
static final int RESIZABLE_VIEWPORT_OLD_SCHOOL_BOX_GROUP_ID = 161;
|
||||
static final int RESIZABLE_VIEWPORT_BOTTOM_LINE_GROUP_ID = 164;
|
||||
static final int PRAYER_GROUP_ID = 541;
|
||||
static final int SHOP_GROUP_ID = 300;
|
||||
static final int SHOP_INVENTORY_GROUP_ID = 301;
|
||||
static final int COMBAT_GROUP_ID = 593;
|
||||
static final int DIALOG_NPC_GROUP_ID = 231;
|
||||
static final int SLAYER_REWARDS_GROUP_ID = 426;
|
||||
static final int PRIVATE_CHAT = 163;
|
||||
static final int CHATBOX_GROUP_ID = 162;
|
||||
static final int WORLD_MAP_MENU_GROUP_ID = 160;
|
||||
static final int VOLCANIC_MINE_GROUP_ID = 611;
|
||||
public static final int LOGOUT_PANEL_ID = 182;
|
||||
public static final int BANK_GROUP_ID = 12;
|
||||
public static final int BANK_INVENTORY_GROUP_ID = 15;
|
||||
public static final int DEPOSIT_BOX_GROUP_ID = 192;
|
||||
public static final int INVENTORY_GROUP_ID = 149;
|
||||
public static final int EQUIPMENT_GROUP_ID = 387;
|
||||
public static final int PESTRCONTROL_GROUP_ID = 408;
|
||||
public static final int CLAN_CHAT_GROUP_ID = 7;
|
||||
public static final int MINIMAP_GROUP_ID = 160;
|
||||
public static final int LOGIN_CLICK_TO_PLAY_GROUP_ID = 378;
|
||||
public static final int CLUE_SCROLL_GROUP_ID = 203;
|
||||
public static final int FIXED_VIEWPORT_GROUP_ID = 548;
|
||||
public static final int RESIZABLE_VIEWPORT_OLD_SCHOOL_BOX_GROUP_ID = 161;
|
||||
public static final int RESIZABLE_VIEWPORT_BOTTOM_LINE_GROUP_ID = 164;
|
||||
public static final int PRAYER_GROUP_ID = 541;
|
||||
public static final int SHOP_GROUP_ID = 300;
|
||||
public static final int SHOP_INVENTORY_GROUP_ID = 301;
|
||||
public static final int COMBAT_GROUP_ID = 593;
|
||||
public static final int DIALOG_NPC_GROUP_ID = 231;
|
||||
public static final int SLAYER_REWARDS_GROUP_ID = 426;
|
||||
public static final int PRIVATE_CHAT = 163;
|
||||
public static final int CHATBOX_GROUP_ID = 162;
|
||||
public static final int WORLD_MAP_MENU_GROUP_ID = 160;
|
||||
public static final int VOLCANIC_MINE_GROUP_ID = 611;
|
||||
|
||||
static class WorldMap
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user