Java Swing - Change textField width, seems easy, right?

Written by Lyoneel on in programming, kotlin, user-interfaces
 3 mins

Java Swing - Change textField width, seems easy, right?

“Well yes, but actually no”

I was playing with Intellij Plugin SDK using Kotlin UI DSL v2, technically this is not pure Java Swing. I created this tab to get visually when width is applied and when is just ignored.

Image showing unpredictable behavior with different instantiations of a texfield and setters

When you read “extension” means an extension over library classes like:

1fun Component.setPreferredWidth(width: Int){
2    this.preferredSize = Dimension(width, this.preferredSize.height)
3}

This extension function was created because as you can see in the example, if Dimension is not a new object, the size is not applied, also the function is dealing with the old height or width when you are just changing one of them.

I hope you don’t waste the time like I did. I’m far from being an expert on Java Swing but IMO this is not a correct behavior.

I leave the tab source code here:

 1
 2fun getTab(): JPanel {
 3    val testWidth = 150
 4    return panel {
 5        indent {
 6            row("textField from rowConstructor: ") {
 7                textField()
 8            }
 9
10            row("textField from rowConstructor with RowLayout.PARENT_GRID: ") {
11                textField()
12            }.layout(RowLayout.PARENT_GRID)
13
14            row("textField from JBTextField object ") {
15                val jbTextField = JBTextField()
16                cell(jbTextField)
17            }
18
19            row("textField from JBTextField object with cell.horizontalAlign.FILL") {
20                val jbTextField = JBTextField()
21                cell(jbTextField).horizontalAlign(HorizontalAlign.FILL)
22            }
23
24            row("textField from JBTextField set $testWidth to width using size.width") {
25                val jbTextField = JBTextField()
26                jbTextField.size.width = testWidth
27                cell(jbTextField)
28            }
29
30            row("textField from JBTextField set $testWidth to width using size.setWidth extension") {
31                val jbTextField = JBTextField()
32                jbTextField.setWidth(testWidth)
33                cell(jbTextField)
34            }
35
36            row("textField from JBTextField set $testWidth to width using preferredSize.width") {
37                val jbTextField = JBTextField()
38                jbTextField.preferredSize.width = testWidth
39                cell(jbTextField)
40            }
41
42            row("textField from JBTextField set $testWidth to width using size.setPreferredWidth extension") {
43                val jbTextField = JBTextField()
44                jbTextField.setPreferredWidth(testWidth)
45                cell(jbTextField)
46            }
47
48            row("textField from JBTextField set $testWidth to width using minimumSize.width") {
49                val jbTextField = JBTextField()
50                jbTextField.minimumSize.width = testWidth
51                cell(jbTextField)
52            }
53
54            row("textField from JBTextField set $testWidth to width using size.setMinimumWidth extension") {
55                val jbTextField = JBTextField()
56                jbTextField.setMinimumWidth(testWidth)
57                cell(jbTextField)
58            }
59        }
60    }
61}

Thanks for reading!

Namaste.