com.sun.webkit.graphics.RenderTheme 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.graphics;
import java.nio.ByteBuffer;
public abstract class RenderTheme extends Ref {
public static final int TEXT_FIELD = 0;
public static final int BUTTON = 1;
public static final int CHECK_BOX = 2;
public static final int RADIO_BUTTON = 3;
public static final int MENU_LIST = 4;
public static final int MENU_LIST_BUTTON = 5;
public static final int SLIDER = 6;
public static final int PROGRESS_BAR = 7;
public static final int METER = 8;
public static final int CHECKED = 1 << 0;
public static final int INDETERMINATE = 1 << 1;
public static final int ENABLED = 1 << 2;
public static final int FOCUSED = 1 << 3;
public static final int PRESSED = 1 << 4;
public static final int HOVERED = 1 << 5;
public static final int READ_ONLY = 1 << 6;
public static final int BACKGROUND = 0;
public static final int FOREGROUND = 1;
protected abstract Ref createWidget(long id, int widgetIndex, int state, int w, int h, int bgColor, ByteBuffer extParams);
public abstract void drawWidget(WCGraphicsContext g, Ref widget, int x, int y);
protected abstract int getRadioButtonSize();
protected abstract int getSelectionColor(int index);
}