annotate src/name/blackcap/clipman/CoerceDialog.kt @ 36:fcf82e3b7e31

Remove deadwood.
author David Barts <n5jrn@me.com>
date Thu, 30 Jan 2020 20:24:02 -0800
parents 376643a09b52
children 08eaae2aaf76
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
31
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
1 /*
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
2 * The dialog that controls font corecion.
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
3 */
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
4 package name.blackcap.clipman
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
5
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
6 import java.awt.Color
34
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
7 import java.awt.Container
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
8 import java.awt.Dimension
31
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
9 import java.awt.Font
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
10 import java.awt.GraphicsEnvironment
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
11 import java.awt.Toolkit
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
12 import java.awt.event.ActionEvent
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
13 import java.awt.event.ActionListener
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
14 import java.util.logging.Level
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
15 import java.util.logging.Logger
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
16 import javax.swing.*
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
17 import javax.swing.event.DocumentEvent
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
18 import javax.swing.event.DocumentListener
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
19
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
20 class CoerceDialog: JDialog(frame.v), ActionListener {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
21 private val FONTS =
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
22 GraphicsEnvironment.getLocalGraphicsEnvironment().availableFontFamilyNames.copyOf().apply {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
23 sort()
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
24 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
25 private val SIZES =
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
26 arrayOf(9.0f, 10.0f, 11.0f, 12.0f, 13.0f, 14.0f, 16.0f, 18.0f,
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
27 24.0f, 36.0f, 48.0f, 64.0f, 72.0f, 96.0f, 144.0f, 288.0f)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
28 private val DSIZEI = 6 /* SIZES[6] = 16 */
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
29
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
30 /* the proportional font family */
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
31 private val _pFamily = JComboBox<String>(FONTS).apply {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
32 selectedIndex = getFontIndex(Font.SERIF)
32
4d87bedb3f65 Looks better, Still wrestling with the damned labels.
David Barts <n5jrn@me.com>
parents: 31
diff changeset
33 alignmentX = JComboBox.LEFT_ALIGNMENT
31
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
34 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
35 val pFamily: String
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
36 get() {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
37 return _pFamily.selectedItem as String
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
38 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
39
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
40 /* the proportional font size */
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
41 private val _pSize = JComboBox<Float>(SIZES).also {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
42 it.selectedIndex = DSIZEI
32
4d87bedb3f65 Looks better, Still wrestling with the damned labels.
David Barts <n5jrn@me.com>
parents: 31
diff changeset
43 it.alignmentX = JComboBox.LEFT_ALIGNMENT
31
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
44 it.setEditable(true)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
45 it.actionCommand = "Size"
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
46 it.addActionListener(this)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
47 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
48 val pSize: Float
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
49 get() {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
50 return _pSize.selectedItem as Float
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
51 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
52
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
53 /* the monospaced font family */
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
54 private val _mFamily = JComboBox<String>(FONTS).apply {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
55 selectedIndex = getFontIndex(Font.MONOSPACED)
32
4d87bedb3f65 Looks better, Still wrestling with the damned labels.
David Barts <n5jrn@me.com>
parents: 31
diff changeset
56 alignmentX = JComboBox.LEFT_ALIGNMENT
31
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
57 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
58 val mFamily: String
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
59 get() {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
60 return _mFamily.selectedItem as String
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
61 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
62
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
63 /* the monospaced font size */
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
64 private val _mSize = JComboBox<Float>(SIZES).also {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
65 it.selectedIndex = DSIZEI
32
4d87bedb3f65 Looks better, Still wrestling with the damned labels.
David Barts <n5jrn@me.com>
parents: 31
diff changeset
66 it.alignmentX = JComboBox.LEFT_ALIGNMENT
31
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
67 it.setEditable(true)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
68 it.actionCommand = "Size"
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
69 it.addActionListener(this)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
70 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
71 val mSize: Float
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
72 get() {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
73 return _mSize.selectedItem as Float
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
74 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
75
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
76 /* standard spacing between elements (10 pixels ≅ 1/7") and half that */
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
77 private val BW = 5
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
78 private val BW2 = 10
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
79
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
80 /* buttons */
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
81 private val _coerce = JButton("Coerce").also {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
82 it.actionCommand = "Coerce"
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
83 it.addActionListener(this)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
84 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
85
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
86 private val _cancel = JButton("Cancel").also {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
87 it.actionCommand = "Cancel"
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
88 it.addActionListener(this)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
89 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
90
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
91 /* initializer */
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
92 init {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
93 title = "Coerce Fonts"
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
94 contentPane.apply {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
95 add(Box(BoxLayout.Y_AXIS).apply {
34
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
96 add(Box(BoxLayout.Y_AXIS).apply {
32
4d87bedb3f65 Looks better, Still wrestling with the damned labels.
David Barts <n5jrn@me.com>
parents: 31
diff changeset
97 border = BorderFactory.createEmptyBorder(BW2, BW2, BW, BW2)
34
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
98 alignmentX = Box.CENTER_ALIGNMENT
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
99 add(leftLabel("Coerce proportionally-spaced text to…"))
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
100 add(Box.createVerticalStrut(BW))
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
101 add(Box(BoxLayout.X_AXIS).apply {
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
102 alignmentX = Box.LEFT_ALIGNMENT
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
103 add(Box.createGlue())
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
104 add(Box(BoxLayout.Y_AXIS).apply {
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
105 add(leftLabel("Family:"))
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
106 add(_pFamily)
32
4d87bedb3f65 Looks better, Still wrestling with the damned labels.
David Barts <n5jrn@me.com>
parents: 31
diff changeset
107 })
34
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
108 add(Box.createGlue())
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
109 add(Box(BoxLayout.Y_AXIS).apply {
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
110 add(leftLabel("Size:"))
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
111 add(_pSize)
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
112 })
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
113 add(Box.createGlue())
31
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
114 })
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
115 })
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
116 add(JSeparator())
34
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
117 add(Box(BoxLayout.Y_AXIS).apply {
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
118 alignmentX = Box.CENTER_ALIGNMENT
33
277cbb78bc5a A few tweaks. Piece of shit still can't left-align its labels. Sigh.
David Barts <n5jrn@me.com>
parents: 32
diff changeset
119 border = BorderFactory.createEmptyBorder(BW, BW2, BW, BW2)
34
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
120 add(leftLabel("Coerce monospaced text to…"))
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
121 add(Box.createVerticalStrut(BW))
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
122 add(Box(BoxLayout.X_AXIS).apply {
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
123 alignmentX = Box.LEFT_ALIGNMENT
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
124 add(Box.createGlue())
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
125 add(Box(BoxLayout.Y_AXIS).apply {
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
126 add(leftLabel("Family:"))
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
127 add(_mFamily)
32
4d87bedb3f65 Looks better, Still wrestling with the damned labels.
David Barts <n5jrn@me.com>
parents: 31
diff changeset
128 })
34
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
129 add(Box.createGlue())
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
130 add(Box(BoxLayout.Y_AXIS).apply {
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
131 add(leftLabel("Size:"))
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
132 add(_mSize)
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
133 })
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
134 add(Box.createGlue())
31
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
135 })
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
136 })
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
137 add(JSeparator())
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
138 add(Box(BoxLayout.X_AXIS).apply {
34
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
139 alignmentX = Box.CENTER_ALIGNMENT
33
277cbb78bc5a A few tweaks. Piece of shit still can't left-align its labels. Sigh.
David Barts <n5jrn@me.com>
parents: 32
diff changeset
140 border = BorderFactory.createEmptyBorder(BW, BW2, BW, BW2)
31
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
141 add(Box.createGlue())
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
142 add(_cancel)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
143 add(Box.createGlue())
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
144 add(_coerce)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
145 add(Box.createGlue())
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
146 })
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
147 })
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
148 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
149 rootPane.setDefaultButton(_coerce)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
150 pack()
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
151 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
152
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
153 override fun actionPerformed(e: ActionEvent) {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
154 when (e.actionCommand) {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
155 "Size" -> {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
156 val source = e.source as? JComboBox<Float>
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
157 if (source != null && (source.selectedItem as Float) < 1.0f) {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
158 Toolkit.getDefaultToolkit().beep()
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
159 source.selectedIndex = DSIZEI
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
160 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
161 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
162 "Coerce" -> {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
163 setVisible(false)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
164 coerce()
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
165 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
166 "Cancel" -> setVisible(false)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
167 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
168 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
169
34
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
170 private fun leftLabel(text: String) = JLabel(text).apply {
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
171 alignmentX = JLabel.LEFT_ALIGNMENT
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
172 }
376643a09b52 Finally fixed the alignment. Wotta PITA...
David Barts <n5jrn@me.com>
parents: 33
diff changeset
173
31
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
174 private fun coerce() {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
175 val selected = queue.v.getSelected()
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
176 if (selected == null) {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
177 JOptionPane.showMessageDialog(frame.v,
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
178 "No item selected.",
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
179 "Error",
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
180 JOptionPane.ERROR_MESSAGE)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
181 } else {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
182 val (plain, html) = when (selected.contents) {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
183 is PasteboardItem.Plain ->
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
184 Pair(selected.contents.plain, null)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
185 is PasteboardItem.HTML ->
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
186 Pair(selected.contents.plain, selected.contents.html)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
187 is PasteboardItem.RTF ->
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
188 Pair(selected.contents.plain, selected.contents.html)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
189 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
190 if (html == null) {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
191 JOptionPane.showMessageDialog(frame.v,
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
192 "Only styled texts may be coerced.",
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
193 "Error",
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
194 JOptionPane.ERROR_MESSAGE)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
195 } else {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
196 PasteboardItem.write(
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
197 PasteboardItem.HTML(
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
198 plain,
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
199 coerceHTML(html, normalizeFont(pFamily), pSize,
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
200 normalizeFont(mFamily), mSize)))
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
201 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
202 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
203 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
204
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
205 private fun getFontIndex(font: String): Int {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
206 val found = FONTS.indexOf(font)
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
207 if (found < 0) {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
208 LOGGER.log(Level.WARNING, "font '${font}' not found")
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
209 return 0
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
210 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
211 return found
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
212 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
213
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
214 private fun normalizeFont(font: String): String {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
215 val lcFont = font.toLowerCase()
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
216 return when (lcFont) {
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
217 in setOf("monospace", "serif", "sans-serif") -> lcFont
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
218 "monospaced" -> "monospace"
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
219 "sansserif" -> "sans-serif"
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
220 else -> font
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
221 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
222 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
223 }
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
224
0c6c18a733b7 Compiles, new menu still a mess.
David Barts <n5jrn@me.com>
parents:
diff changeset
225 val coerceDialog = CoerceDialog()