-
-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathPdeLookAndFeel.java
More file actions
36 lines (24 loc) · 724 Bytes
/
PdeLookAndFeel.java
File metadata and controls
36 lines (24 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package processing.app.laf;
import javax.swing.plaf.basic.BasicLookAndFeel;
/**
* Custom Look and Feel class. Not currently in use:
* for now, only individual component UIs are being overridden.
* https://github.com/AdoptOpenJDK/openjdk-jdk8u/blob/master/jdk/src/share/classes/javax/swing/plaf/basic/BasicLookAndFeel.java
*/
public class PdeLookAndFeel extends BasicLookAndFeel {
public String getDescription( ) {
return "The Processing Look and Feel";
}
public String getID( ) {
return "Processing";
}
public String getName( ) {
return "Processing";
}
public boolean isNativeLookAndFeel( ) {
return false;
}
public boolean isSupportedLookAndFeel( ) {
return true;
}
}