mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 18:27:51 -06:00
Added rough dialog for the PluginBrowser
CURA-3856
This commit is contained in:
parent
d1e1265215
commit
503aa00137
2 changed files with 63 additions and 2 deletions
36
plugins/PluginBrowser/PluginBrowser.qml
Normal file
36
plugins/PluginBrowser/PluginBrowser.qml
Normal file
|
@ -0,0 +1,36 @@
|
|||
import UM 1.1 as UM
|
||||
import QtQuick 2.2
|
||||
import QtQuick.Dialogs 1.1
|
||||
import QtQuick.Window 2.2
|
||||
import QtQuick.Controls 1.1
|
||||
|
||||
UM.Dialog
|
||||
{
|
||||
id: base
|
||||
|
||||
title: "YAY"
|
||||
width: 450
|
||||
height: 150
|
||||
ListView
|
||||
{
|
||||
model: manager.pluginsModel
|
||||
anchors.fill: parent
|
||||
delegate: Row
|
||||
{
|
||||
width: parent.width
|
||||
Button
|
||||
{
|
||||
text: model.name
|
||||
}
|
||||
Button
|
||||
{
|
||||
text: model.author
|
||||
}
|
||||
|
||||
Label
|
||||
{
|
||||
text: model.short_description
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue