diff options
| author | shedaniel <daniel@shedaniel.me> | 2024-04-16 01:51:34 +0900 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2024-04-16 01:51:34 +0900 |
| commit | 9358912411e2566cd00def93930ae94da5da6df0 (patch) | |
| tree | cb6d9f0c28eac5728b27e6b5a4f87e0c0565337d /api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java | |
| parent | 9034bf05f32fda2164190eacc7c6814503fbf611 (diff) | |
| parent | 5f61d89501a4eadd99c805c973b1ef49a3a3aaee (diff) | |
| download | RoughlyEnoughItems-9358912411e2566cd00def93930ae94da5da6df0.tar.gz RoughlyEnoughItems-9358912411e2566cd00def93930ae94da5da6df0.tar.bz2 RoughlyEnoughItems-9358912411e2566cd00def93930ae94da5da6df0.zip | |
Merge remote-tracking branch 'origin/feature/13.1' into feature/14.1
# Conflicts:
# gradle.properties
# runtime/src/main/java/me/shedaniel/rei/impl/client/config/entries/RecipeScreenTypeEntry.java
# runtime/src/main/java/me/shedaniel/rei/impl/client/config/entries/ReloadPluginsEntry.java
# runtime/src/main/java/me/shedaniel/rei/impl/client/config/entries/SearchFilterSyntaxHighlightingEntry.java
Diffstat (limited to 'api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java')
| -rw-r--r-- | api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java b/api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java index 27e4280d1..1ef71f0e8 100644 --- a/api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java +++ b/api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java @@ -228,10 +228,16 @@ public final class ClientInternals { Widget concatWidgets(List<Widget> widgets); + WidgetWithBounds concatWidgetsWithBounds(Supplier<Rectangle> bounds, List<Widget> widgets); + WidgetWithBounds noOp(); WidgetWithBounds wrapOverflow(Rectangle bounds, WidgetWithBounds widget); + WidgetWithBounds wrapScissored(Rectangle bounds, Widget widget); + + WidgetWithBounds wrapScissored(WidgetWithBounds widget); + WidgetWithBounds wrapPadded(int padLeft, int padRight, int padTop, int padBottom, WidgetWithBounds widget); } |
