You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

143 lines
2.8 KiB

ModuleListLabel < Label
font: verdana-11px-monochrome
background-color: alpha
text-offset: 2 0
focusable: true
color: #cccccc
$focus:
color: #ffffff
$on:
background-color: #006600
$!on:
background-color: #660000
$on focus:
background-color: #004400
$!on focus:
background-color: #440000
ModuleInfoLabel < Label
$!first:
margin-top: 5
margin-bottom: 2
ModuleValueLabel < UILabel
font: verdana-11px-antialised
color: #aaaaaa
text-offset: 3 0
image-source: /core_styles/styles/images/panel_flat.png
image-border: 1
height: 16
MainWindow
id: moduleManagerWindow
size: 480 450
!text: tr('Module Manager')
@onEscape: ModuleManager.hide()
TextList
id: moduleList
anchors.top: parent.top
anchors.left: parent.left
anchors.bottom: parent.bottom
width: 180
padding: 1
focusable: false
margin-bottom: 30
Button
id: refreshModulesButton
anchors.top: moduleList.bottom
anchors.left: moduleList.left
margin-top: 8
width: 80
!text: tr('Refresh')
@onClick: ModuleManager.refreshModules()
Button
id: reloadAllModulesButton
anchors.top: moduleList.bottom
anchors.right: moduleList.right
margin-top: 8
width: 80
!text: tr('Reload All')
@onClick: ModuleManager.reloadAllModules()
Panel
id: moduleInfo
anchors.left: moduleList.right
anchors.top: parent.top
anchors.right: parent.right
margin: 0 5 5 15
layout: verticalBox
height: 265
ModuleInfoLabel
!text: tr('Module name')
ModuleValueLabel
id: moduleName
ModuleInfoLabel
!text: tr('Description')
ModuleValueLabel
id: moduleDescription
height: 100
text-wrap: true
//ModuleInfoLabel
// !text: tr('Autoload')
//ModuleValueLabel
// id: moduleAutoload
//ModuleInfoLabel
// !text: tr('Autoload priority')
//ModuleValueLabel
// id: moduleLoadPriority
// text: 1000
ModuleInfoLabel
!text: tr('Author')
ModuleValueLabel
id: moduleAuthor
ModuleInfoLabel
!text: tr('Website')
ModuleValueLabel
id: moduleWebsite
ModuleInfoLabel
!text: tr('Version')
ModuleValueLabel
id: moduleVersion
Button
id: moduleReloadButton
anchors.top: moduleInfo.bottom
anchors.left: moduleInfo.left
margin-top: 8
!text: tr('Load')
enabled: false
@onClick: ModuleManager.reloadCurrentModule()
Button
id: moduleUnloadButton
anchors.top: moduleInfo.bottom
anchors.right: moduleInfo.right
margin-left: 10
margin-top: 8
!text: tr('Unload')
enabled: false
@onClick: ModuleManager.unloadCurrentModule()
Button
id: closeButton
anchors.bottom: parent.bottom
anchors.right: parent.right
!text: tr('Close')
width: 60
@onClick: ModuleManager.hide()