blob: c4ad44fc56aad0ae4509a86b73430705739f0185 (
plain) (
blame)
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
|
--- java/src/charvax/swing/text/JTextComponent.java.orig 2016-06-20 12:40:44 UTC
+++ java/src/charvax/swing/text/JTextComponent.java
@@ -19,6 +19,7 @@
package charvax.swing.text;
+import charva.awt.Font;
import charvax.swing.JComponent;
/**
@@ -72,6 +73,10 @@ public abstract class JTextComponent
_editable = editable_;
}
+ public void setFont(Font font_) {
+ _bold = ((font_.getStyle() & Font.BOLD) != 0);
+ }
+
//====================================================================
// INSTANCE VARIABLES
@@ -84,4 +89,6 @@ public abstract class JTextComponent
protected StringBuffer _document;
protected boolean _editable = true;
+
+ protected boolean _bold = false;
}
|