KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > java > swing > plaf > gtk > GTKConstants


1 /*
2  * @(#)GTKConstants.java 1.13 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7 package com.sun.java.swing.plaf.gtk;
8
9 /**
10  * @version 1.13, 12/19/03
11  * @author Scott Violet
12  */

13 public interface GTKConstants {
14
15     /**
16      * Used to indicate a constant is not defined.
17      */

18     public static final int UNDEFINED = -100;
19
20
21     public static final int SHADOW_IN = 0;
22     public static final int SHADOW_OUT = 1;
23
24     // These values are not respected currently,
25
// but have been included for completeness
26
public static final int SHADOW_ETCHED_IN = 2;
27     public static final int SHADOW_ETCHED_OUT = 3;
28     public static final int SHADOW_NONE = 4;
29
30
31     public static final int EXPANDER_COLLAPSED = 0;
32     public static final int EXPANDER_EXPANDED = 1;
33
34
35     public static final int LEFT = 0;
36     public static final int RIGHT = 1;
37     public static final int TOP = 2;
38     public static final int BOTTOM = 3;
39
40
41     public static final int ARROW_UP = 100;
42     public static final int ARROW_DOWN = 101;
43     public static final int ARROW_LEFT = 102;
44     public static final int ARROW_RIGHT = 103;
45
46
47     public static final int LTR = 0;
48     public static final int RTL = 1;
49
50
51     public static final int HORIZONTAL = 0;
52     public static final int VERTICAL = 1;
53
54 }
55
Popular Tags