public class PlatformHookUnixoid extends Object implements PlatformHook
Modifier and Type | Class and Description |
---|---|
protected static class |
PlatformHookUnixoid.LinuxReleaseInfo |
Modifier and Type | Field and Description |
---|---|
private String |
osDescription |
Constructor and Description |
---|
PlatformHookUnixoid() |
Modifier and Type | Method and Description |
---|---|
protected void |
askUpdateJava(String version) |
protected String |
buildOSDescription() |
boolean |
canFullscreen()
Determines if the platform allows full-screen.
|
String |
getDefaultStyle()
Returns the default LAF to be used on this platform to look almost as a native application.
|
String |
getJavaPackageDetails()
Get the Java package name including detailed version.
|
String |
getOSDescription()
Returns a detailed OS description (at least family + version).
|
void |
initSystemShortcuts()
The initSystemShortcuts hook will be called by the
Shortcut class after the modifier groups have been read
from the config, but before any shortcuts are read from
it or registered from within the application.
|
String |
makeTooltip(String name,
Shortcut sc)
This should work for all platforms.
|
void |
openUrl(String url)
The openURL hook will be used to open an URL in the
default web browser.
|
void |
preStartupHook()
The preStartupHook will be called extremly early.
|
boolean |
rename(File from,
File to)
Renames a file.
|
void |
startupHook()
The startupHook will be called early, but after the GUI
setup has started.
|
private String osDescription
public PlatformHookUnixoid()
public void preStartupHook()
PlatformHook
preStartupHook
in interface PlatformHook
public void startupHook()
PlatformHook
startupHook
in interface PlatformHook
public void openUrl(String url) throws IOException
PlatformHook
openUrl
in interface PlatformHook
url
- The URL to openIOException
- if any I/O error occurspublic void initSystemShortcuts()
PlatformHook
initSystemShortcuts
in interface PlatformHook
public String makeTooltip(String name, Shortcut sc)
makeTooltip
in interface PlatformHook
name
- Tooltip text to displaysc
- Shortcut associated (to display accelerator between parenthesis)public String getDefaultStyle()
PlatformHook
getDefaultStyle
in interface PlatformHook
public boolean canFullscreen()
PlatformHook
canFullscreen
in interface PlatformHook
true
if full screen is allowed, false
otherwisepublic boolean rename(File from, File to)
PlatformHook
rename
in interface PlatformHook
from
- Source fileto
- Target filetrue
if the file has been renamed, false
otherwisepublic String getJavaPackageDetails()
protected String buildOSDescription()
public String getOSDescription()
PlatformHook
getOSDescription
in interface PlatformHook
protected void askUpdateJava(String version)