This repository was archived by the owner on Feb 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathMicroPythonSettingsPanel.kt
More file actions
132 lines (115 loc) · 4.87 KB
/
MicroPythonSettingsPanel.kt
File metadata and controls
132 lines (115 loc) · 4.87 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*
* Copyright 2000-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jetbrains.micropython.settings
import com.intellij.openapi.fileChooser.FileChooserDescriptor
import com.intellij.openapi.module.Module
import com.intellij.openapi.ui.ComboBox
import com.intellij.openapi.ui.TextFieldWithBrowseButton
import com.intellij.ui.IdeBorderFactory
import com.intellij.ui.SimpleListCellRenderer
import com.intellij.ui.components.CheckBox
import com.intellij.util.text.nullize
import com.intellij.util.ui.FormBuilder
import com.intellij.util.ui.SwingHelper
import com.intellij.util.ui.UIUtil
import com.jetbrains.micropython.devices.MicroPythonDeviceProvider
import java.awt.BorderLayout
import javax.swing.*
/**
* @author vlan
*/
class MicroPythonSettingsPanel(private val module: Module) : JPanel() {
private val deviceTypeCombo = ComboBox(MicroPythonDeviceProvider.providers.toTypedArray())
private val docsHyperlink = SwingHelper.createWebHyperlink("")
private val devicePath = TextFieldWithBrowseButton()
private val connectionDelayModel = SpinnerNumberModel(0.5F, 0.0F, 599.9F, 0.1F)
private val boardConnectionDelaySpinner = JSpinner(connectionDelayModel)
private val autoDetectDevicePath = CheckBox("Auto-detect device path").apply {
addActionListener {
update()
}
}
private val devicePathPanel: JPanel by lazy {
FormBuilder.createFormBuilder()
.addLabeledComponent("Device path:", JPanel(BorderLayout()).apply {
add(devicePath, BorderLayout.CENTER)
add(JButton("Detect").apply {
addActionListener {
devicePath.text = module.microPythonFacet?.detectDevicePathSynchronously(selectedProvider) ?: ""
}
}, BorderLayout.EAST)
})
.panel
}
init {
layout = BorderLayout()
border = IdeBorderFactory.createEmptyBorder(UIUtil.PANEL_SMALL_INSETS)
val contentPanel = FormBuilder.createFormBuilder()
.addLabeledComponent("Device type:", deviceTypeCombo)
.addComponent(autoDetectDevicePath)
.addComponent(devicePathPanel)
.addLabeledComponent("Board detection delay (in seconds):", boardConnectionDelaySpinner)
.addComponent(docsHyperlink)
.panel
add(contentPanel, BorderLayout.NORTH)
deviceTypeCombo.apply {
renderer = object : SimpleListCellRenderer<MicroPythonDeviceProvider>() {
override fun customize(
list: JList<out MicroPythonDeviceProvider>, value: MicroPythonDeviceProvider?,
index: Int, selected: Boolean, hasFocus: Boolean
) {
text = value?.presentableName ?: return
}
}
addActionListener {
docsHyperlink.apply {
setHyperlinkTarget(selectedProvider.documentationURL)
setHyperlinkText("Learn more about setting up ${selectedProvider.presentableName} devices")
repaint()
}
}
}
devicePath.apply {
val descriptor = FileChooserDescriptor(true, false, false, false, false, false)
addBrowseFolderListener("My Title", null, module.project, descriptor)
}
update()
}
fun isModified(configuration: MicroPythonFacetConfiguration, facet: MicroPythonFacet): Boolean =
deviceTypeCombo.selectedItem != configuration.deviceProvider
|| devicePath.text.nullize(true) != facet.devicePath
|| autoDetectDevicePath.isSelected != facet.autoDetectDevicePath
|| boardConnectionDelaySpinner.value != facet.boardConnectionDelay
fun getDisplayName(): String = "MicroPython"
fun apply(configuration: MicroPythonFacetConfiguration, facet: MicroPythonFacet) {
configuration.deviceProvider = selectedProvider
facet.devicePath = devicePath.text.nullize(true)
facet.autoDetectDevicePath = autoDetectDevicePath.isSelected
facet.boardConnectionDelay = boardConnectionDelaySpinner.value as Float
}
fun reset(configuration: MicroPythonFacetConfiguration, facet: MicroPythonFacet) {
deviceTypeCombo.selectedItem = configuration.deviceProvider
devicePath.text = facet.devicePath ?: ""
autoDetectDevicePath.isSelected = facet.autoDetectDevicePath
boardConnectionDelaySpinner.value = facet.boardConnectionDelay
update()
}
private fun update() {
UIUtil.setEnabled(devicePathPanel, !autoDetectDevicePath.isSelected, true)
}
private val selectedProvider: MicroPythonDeviceProvider
get() = deviceTypeCombo.selectedItem as MicroPythonDeviceProvider
}