mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-10 10:30:13 +08:00
Closable tab
This commit is contained in:
parent
5ece8e95f9
commit
4b17c58de0
@ -16,6 +16,7 @@ import tornadofx.*
|
|||||||
class PrimaryView : View() {
|
class PrimaryView : View() {
|
||||||
|
|
||||||
private val controller = find<MiraiGraphicalUIController>()
|
private val controller = find<MiraiGraphicalUIController>()
|
||||||
|
private lateinit var mainTabPane : TabPane
|
||||||
|
|
||||||
override val root = borderpane {
|
override val root = borderpane {
|
||||||
|
|
||||||
@ -71,15 +72,22 @@ class PrimaryView : View() {
|
|||||||
|
|
||||||
center = jfxTabPane {
|
center = jfxTabPane {
|
||||||
|
|
||||||
tab("Login").content = find<LoginView>().root
|
logTab("Main", controller.mainLog)
|
||||||
|
|
||||||
tab("Plugins").content = find<PluginsView>().root
|
tab("Plugins").content = find<PluginsView>().root
|
||||||
|
|
||||||
tab("Settings").content = find<SettingsView>().root
|
tab("Settings").content = find<SettingsView>().root
|
||||||
|
|
||||||
logTab("Main", controller.mainLog)
|
tab("Login").content = find<LoginView>().root
|
||||||
|
|
||||||
|
mainTabPane = this
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun Tab.select() = apply {
|
||||||
|
if (!mainTabPane.tabs.contains(this)) mainTabPane.tabs.add(this)
|
||||||
|
mainTabPane.selectionModel.select(this)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun TabPane.logTab(
|
private fun TabPane.logTab(
|
||||||
@ -87,6 +95,13 @@ private fun TabPane.logTab(
|
|||||||
logs: ObservableList<String>,
|
logs: ObservableList<String>,
|
||||||
op: Tab.() -> Unit = {}
|
op: Tab.() -> Unit = {}
|
||||||
) = tab(text) {
|
) = tab(text) {
|
||||||
|
|
||||||
|
vbox {
|
||||||
|
buttonbar {
|
||||||
|
button("导出日志").action { }
|
||||||
|
button("关闭").action { close() }
|
||||||
|
}
|
||||||
|
|
||||||
listview(logs) {
|
listview(logs) {
|
||||||
|
|
||||||
fitToParentSize()
|
fitToParentSize()
|
||||||
@ -97,5 +112,6 @@ private fun TabPane.logTab(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
also(op)
|
also(op)
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user