blob: d6cb52a60c2b2be444261bb986e029e9dceb62af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
/*
* Roughly Enough Items by Danielshe.
* Licensed under the MIT License.
*/
package me.shedaniel.rei.api;
import me.shedaniel.rei.gui.config.ItemCheatingMode;
import me.shedaniel.rei.gui.config.ItemListOrdering;
import me.shedaniel.rei.gui.config.RecipeScreenType;
import me.shedaniel.rei.gui.config.SearchFieldLocation;
import me.zeroeightsix.fiber.tree.ConfigNode;
import me.zeroeightsix.fiber.tree.ConfigValue;
import me.zeroeightsix.fiber.tree.Node;
public interface ConfigObject {
Node getGeneral();
ConfigNode getConfigNode();
ConfigValue<Boolean> getOverlayVisibleNode();
boolean isLighterButtonHover();
void setLighterButtonHover(boolean lighterButtonHover);
boolean isOverlayVisible();
void setOverlayVisible(boolean overlayVisible);
boolean isCheating();
void setCheating(boolean cheating);
ItemListOrdering getItemListOrdering();
boolean isItemListAscending();
boolean isUsingDarkTheme();
boolean isToastDisplayedOnCopyIdentifier();
boolean doesRenderEntryExtraOverlay();
boolean isEntryListWidgetScrolled();
boolean shouldAppendModNames();
RecipeScreenType getRecipeScreenType();
void setRecipeScreenType(RecipeScreenType recipeScreenType);
boolean isLoadingDefaultPlugin();
SearchFieldLocation getSearchFieldLocation();
boolean isLeftHandSidePanel();
boolean isCraftableFilterEnabled();
String getGamemodeCommand();
String getGiveCommand();
String getWeatherCommand();
int getMaxRecipePerPage();
boolean doesShowUtilsButtons();
boolean doesDisableRecipeBook();
boolean doesFixTabCloseContainer();
boolean areClickableRecipeArrowsEnabled();
ItemCheatingMode getItemCheatingMode();
boolean isUsingLightGrayRecipeBorder();
boolean doesVillagerScreenHavePermanentScrollBar();
boolean doesRegisterRecipesInAnotherThread();
}
|