Package zombie.chat
Class ChatSettings
java.lang.Object
zombie.chat.ChatSettings
public class ChatSettings
extends java.lang.Object
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ChatSettings.FontSize
-
Field Summary
Fields Modifier and Type Field Description static float
infinityRange
-
Constructor Summary
Constructors Constructor Description ChatSettings()
ChatSettings(java.nio.ByteBuffer byteBuffer)
-
Method Summary
Modifier and Type Method Description UIFont
getFont()
Color
getFontColor()
java.lang.String
getFontSize()
float
getRange()
float
getZombieAttractionRange()
boolean
isAllowBBcode()
boolean
isAllowChatIcons()
boolean
isAllowColors()
boolean
isAllowFonts()
boolean
isAllowImages()
boolean
isBold()
boolean
isEqualizeLineHeights()
boolean
isShowAuthor()
boolean
isShowChatTitle()
boolean
isShowTimestamp()
boolean
isUnique()
boolean
isUseOnlyActiveTab()
void
pack(ByteBufferWriter byteBufferWriter)
void
setAllowBBcode(boolean boolean1)
void
setAllowChatIcons(boolean boolean1)
void
setAllowColors(boolean boolean1)
void
setAllowFonts(boolean boolean1)
void
setAllowImages(boolean boolean1)
void
setBold(boolean boolean1)
void
setEqualizeLineHeights(boolean boolean1)
void
setFont(UIFont uIFont)
void
setFontColor(float float1, float float2, float float3, float float4)
void
setFontColor(Color color)
void
setFontSize(java.lang.String string)
void
setRange(float float1)
void
setShowAuthor(boolean boolean1)
void
setShowChatTitle(boolean boolean1)
void
setShowTimestamp(boolean boolean1)
void
setUnique(boolean boolean1)
void
setUseOnlyActiveTab(boolean boolean1)
void
setZombieAttractionRange(float float1)
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
infinityRange
public static final float infinityRange- See Also:
- Constant Field Values
-
-
Constructor Details
-
ChatSettings
public ChatSettings() -
ChatSettings
public ChatSettings(java.nio.ByteBuffer byteBuffer)
-
-
Method Details
-
isUnique
public boolean isUnique() -
setUnique
public void setUnique(boolean boolean1) -
getFontColor
-
setFontColor
-
setFontColor
public void setFontColor(float float1, float float2, float float3, float float4) -
getFont
-
setFont
-
getFontSize
public java.lang.String getFontSize() -
setFontSize
public void setFontSize(java.lang.String string) -
isBold
public boolean isBold() -
setBold
public void setBold(boolean boolean1) -
isShowAuthor
public boolean isShowAuthor() -
setShowAuthor
public void setShowAuthor(boolean boolean1) -
isShowTimestamp
public boolean isShowTimestamp() -
setShowTimestamp
public void setShowTimestamp(boolean boolean1) -
isShowChatTitle
public boolean isShowChatTitle() -
setShowChatTitle
public void setShowChatTitle(boolean boolean1) -
isAllowImages
public boolean isAllowImages() -
setAllowImages
public void setAllowImages(boolean boolean1) -
isAllowChatIcons
public boolean isAllowChatIcons() -
setAllowChatIcons
public void setAllowChatIcons(boolean boolean1) -
isAllowColors
public boolean isAllowColors() -
setAllowColors
public void setAllowColors(boolean boolean1) -
isAllowFonts
public boolean isAllowFonts() -
setAllowFonts
public void setAllowFonts(boolean boolean1) -
isAllowBBcode
public boolean isAllowBBcode() -
setAllowBBcode
public void setAllowBBcode(boolean boolean1) -
isEqualizeLineHeights
public boolean isEqualizeLineHeights() -
setEqualizeLineHeights
public void setEqualizeLineHeights(boolean boolean1) -
getRange
public float getRange() -
setRange
public void setRange(float float1) -
getZombieAttractionRange
public float getZombieAttractionRange() -
setZombieAttractionRange
public void setZombieAttractionRange(float float1) -
isUseOnlyActiveTab
public boolean isUseOnlyActiveTab() -
setUseOnlyActiveTab
public void setUseOnlyActiveTab(boolean boolean1) -
pack
-