Added support for hiding widgets

This commit is contained in:
honeyhoney
2017-11-20 21:05:52 +00:00
parent c035d060ff
commit b08c39854b
2 changed files with 5 additions and 0 deletions

View File

@@ -66,6 +66,8 @@ public interface Widget
boolean isHidden();
void setHidden(boolean hidden);
Point getCanvasLocation();
int getWidth();

View File

@@ -97,6 +97,9 @@ public interface RSWidget extends Widget
@Import("isHidden")
boolean isRSHidden();
@Import("isHidden")
void setHidden(boolean hidden);
@Import("index")
int getIndex();