com.sun.webkit.UIClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openjfx-78-backport Show documentation
Show all versions of openjfx-78-backport Show documentation
This is a backport of OpenJFX 8 to run on Java 7.
The newest version!
/*
* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
*/
package com.sun.webkit;
import com.sun.webkit.graphics.WCImage;
import com.sun.webkit.graphics.WCRectangle;
public interface UIClient {
public WebPage createPage(
boolean menu, boolean status, boolean toolbar, boolean resizable);
public void closePage();
public void showView();
public WCRectangle getViewBounds();
public void setViewBounds(WCRectangle bounds);
public void setStatusbarText(String text);
public void alert(String text);
public boolean confirm(String text);
public String prompt(String text, String defaultValue);
public String[] chooseFile(String initialFileName, boolean multiple);
public void print();
public void startDrag(
WCImage frame,
int imageOffsetX, int imageOffsetY,
int eventPosX, int eventPosY,
String[] mimeTypes,
Object[] values);
public void confirmStartDrag();
public boolean isDragConfirmed();
}