You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
692 B
43 lines
692 B
/*
|
|
* Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
package com.sun.java.swing.plaf.gtk;
|
|
|
|
import javax.swing.plaf.synth.Region;
|
|
|
|
/**
|
|
* A typesafe enumeration of the distinct rendering portions specific
|
|
* to GTK.
|
|
*
|
|
* @author Scott Violet
|
|
*/
|
|
class GTKRegion extends Region {
|
|
public static final Region HANDLE_BOX = new GTKRegion("HandleBox", null,
|
|
true);
|
|
|
|
protected GTKRegion(String name, String ui, boolean subregion) {
|
|
super(name, ui, subregion);
|
|
}
|
|
}
|