public class GuiFileBrowser extends GuiElement
PlayerSelectFileEvent
event will be triggered.Modifier and Type | Field and Description |
---|---|
static java.lang.String |
USER_DIR
Represents the users working directory (usually this is the game directory)
|
static java.lang.String |
USER_HOME
Represents the user home directory (on Windows, this would be usually
C:\Users\Username\ ) |
Constructor and Description |
---|
GuiFileBrowser(float x,
float y,
boolean relativeposition,
float width,
float height,
boolean relativesize)
Creates a new file browser element with the given size at the given screen position.
|
GuiFileBrowser(int entryCount,
float x,
float y,
boolean relativeposition,
float width,
float height,
boolean relativesize)
Creates a new file browser element with the given size at the given screen position.
|
Modifier and Type | Method and Description |
---|---|
void |
getCurrentDirectory(Player player,
Callback<java.lang.String> callback)
Gets the current directory.
|
java.lang.String |
getDefaultDirectory()
Gets the default directory.
|
int |
getEntryCount()
Gets the amount of entries that will be shown by the file browser (without having
to scroll).
|
java.lang.String[] |
getFileExtensionFilter()
Gets the file extension filter (if set), i.e. an array of allowed file extension
types.
|
int |
getPreviewImageDimension() |
float |
getPreviewImagePositionX() |
float |
getPreviewImagePositionY() |
boolean |
isClickable() |
boolean |
isPreviewImageEnabled()
Gets whether or not a file preview is enabled for this file browser.
|
boolean |
isRelativePreviewImagePosition() |
void |
onFileSelect(PlayerSelectFileEvent event) |
void |
refresh()
Refreshes this element, i.e. synchronizes it between the client and the
server.
|
void |
setClickable(boolean set) |
void |
setColor(float r,
float g,
float b,
float a)
Sets the background color for the file browser element.
|
void |
setColor(int color)
Sets the background color for the file browser element.
|
void |
setDirectory(java.lang.String path)
Switches the view of the file browser to the specified directory (client side).
|
void |
setEntryCount(int count)
Sets the amount of entries that will be shown by the file browser (without
having to scroll).
|
void |
setFileExtensionFilter(java.lang.String... extension)
Sets a filter to show only files with the provided extension.
|
void |
setPreviewImageDimension(int dimension) |
void |
setPreviewImageEnabled(boolean set)
Enables a file preview, e.g. a small preview will be shown when selecting a file.
|
void |
setPreviewImagePosition(float x,
float y,
boolean relative)
Sets the position of the preview image (if enabled).
|
addChild, destroy, equals, getAlpha, getBorderColor, getBorderThickness, getChildren, getColor, getHeight, getHoverColor, getID, getParent, getParentID, getPivot, getPositionX, getPositionY, getWidth, hashCode, isAlwaysInBackground, isAlwaysOnTop, isRelativeBorderThickness, isRelativePosition, isRelativeSize, isVisible, onClick, removeAllChildren, removeChild, removeFromParent, setAlpha, setAlwaysInBackground, setAlwaysOnTop, setBorderColor, setBorderColor, setBorderThickness, setPivot, setPosition, setSize, setVisible
public static final java.lang.String USER_DIR
public static final java.lang.String USER_HOME
C:\Users\Username\
)public GuiFileBrowser(float x, float y, boolean relativeposition, float width, float height, boolean relativesize)
x
- the x screen position (horizontally).y
- the y screen position (vertically).relativeposition
- false to use absolute coordinates (i.e. pixel
coordinates), or true to use relative coordinates (range between 0.0 and 1.0)height
- the height of this file browser element.width
- the width of this file browser element.relativesize
- false to use an absolute width (width in pixels), or
true to use a relative width/height (range between 0.0 and 1.0)public GuiFileBrowser(int entryCount, float x, float y, boolean relativeposition, float width, float height, boolean relativesize)
entryCount
- the amount of visible entries, i.e. the amount of entries that
will be shown without having to scroll. Default value is 10. This has a direct
impact on the entry size (entry size = height / entryCount). Note that the total
size also contains a small gap between every entry (1 px) as well as some extra space
for the head bar (around 80 px).x
- the x screen position (horizontally).y
- the y screen position (vertically).relativeposition
- false to use absolute coordinates (i.e. pixel
coordinates), or true to use relative coordinates (range between 0.0 and 1.0)height
- the height of this file browser element.width
- the width of this file browser element.relativesize
- false to use an absolute width (width in pixels), or
true to use a relative width/height (range between 0.0 and 1.0)public void setEntryCount(int count)
count
- the amount of visible entries (default: 10)public int getEntryCount()
public void setPreviewImageEnabled(boolean set)
set
- true to enable the file preview, false to disable it (default).setPreviewImagePosition(float, float, boolean)
public boolean isPreviewImageEnabled()
public void setPreviewImagePosition(float x, float y, boolean relative)
x
- the x (horizontal) position.y
- the y (vertical) position.relative
- set to false to use absolute coordinates (i.e. pixel
coordinates), or true to use relative coordinates (range between 0 and 1).public float getPreviewImagePositionX()
public float getPreviewImagePositionY()
public boolean isRelativePreviewImagePosition()
public void setPreviewImageDimension(int dimension)
public int getPreviewImageDimension()
public void setDirectory(java.lang.String path)
C:\Users\Username\
) System.getProperty("")
,
since that function would not work to get the client side directories (unless this
plugin is solely intended for singleplayer).path
- the directory (client side).public java.lang.String getDefaultDirectory()
public void getCurrentDirectory(Player player, Callback<java.lang.String> callback)
Callback
.player
- the player you want to get this information from (since the gui element
can be attached to several players simultaneously, it's necessary to specify the
actual player).callback
- the Callback
object. It will be called once the
current directory has been retrieved from the player. It will be passed as argument.public void setFileExtensionFilter(java.lang.String... extension)
null
to remove any filters,
so all files will be shown (default).extension
- the file extensions you want to restrict the file browser to.
Provide null to remove all filters (so all files will be visible)public java.lang.String[] getFileExtensionFilter()
public void setColor(int color)
setColor
in class GuiElement
color
- an RGBA integer value which specifies the background color.public void setColor(float r, float g, float b, float a)
setColor
in class GuiElement
r
- the red color value (0-1)g
- the green color value (0-1)b
- the blue color value (0-1)a
- the alpha value (0-1), 0 makes the background invisible, 1 fully opaque.public void setClickable(boolean set)
public boolean isClickable()
isClickable
in class GuiElement
public void refresh()
GuiElement
refresh
in class GuiElement
public void onFileSelect(PlayerSelectFileEvent event)