mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
4db2febbb3
Add a controller for Layouts to choose frame positions. WTD-535.
122 lines
4.4 KiB
JSON
122 lines
4.4 KiB
JSON
{
|
|
"name": "Layout components.",
|
|
"description": "Plug in adding Layout capabiltiies.",
|
|
"extensions": {
|
|
"views": [
|
|
{
|
|
"key": "layout",
|
|
"name": "Layout",
|
|
"glyph": "L",
|
|
"type": "layout",
|
|
"templateUrl": "templates/layout.html",
|
|
"uses": [ "composition" ]
|
|
}
|
|
],
|
|
"representations": [
|
|
{
|
|
"key": "frame",
|
|
"templateUrl": "templates/frame.html"
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "LayoutController",
|
|
"implementation": "LayoutController.js",
|
|
"depends": [ "$scope" ]
|
|
}
|
|
],
|
|
"types": [
|
|
{
|
|
"key": "layout",
|
|
"name": "Layout",
|
|
"glyph": "L",
|
|
"description": "A layout in which multiple telemetry panels may be displayed.",
|
|
"features": "creation",
|
|
"model": { "composition": [] },
|
|
"properties": [
|
|
{
|
|
"name": "Preferred Size",
|
|
"control": "select",
|
|
"options": [
|
|
{ "name": "Fit to Window", "value": "FIT" },
|
|
{ "name": "Fixed Size", "value": "FIXED" }
|
|
],
|
|
"key": "preferredSize"
|
|
},
|
|
{
|
|
"label": "Layout Grid",
|
|
"control": "composite",
|
|
"pattern": "^(\\d*[1-9]\\d*)?$",
|
|
"items": [
|
|
{
|
|
"name": "Horizontal grid (px)",
|
|
"control": "textfield"
|
|
},
|
|
{
|
|
"name": "Vertical grid (px)",
|
|
"control": "textfield"
|
|
}
|
|
],
|
|
"key": "layoutGrid",
|
|
"conversion": "number[]"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"key": "telemetry.panel",
|
|
"name": "Telemetry Panel",
|
|
"glyph": "t",
|
|
"description": "A panel for collecting telemetry elements.",
|
|
"delegates": [ "telemetry" ],
|
|
"features": "creation",
|
|
"model": { "composition": [] },
|
|
"properties": [
|
|
{
|
|
"name": "Preferred Size",
|
|
"control": "composite",
|
|
"items": [
|
|
{
|
|
"name": "Width (px)",
|
|
"control": "textfield"
|
|
},
|
|
{
|
|
"name": "Height (px)",
|
|
"control": "textfield"
|
|
}
|
|
],
|
|
"pattern": "^(\\d*[1-9]\\d*)?$",
|
|
"property": "preferredSize",
|
|
"conversion": "number[]"
|
|
},
|
|
{
|
|
"name": "Layout Grid",
|
|
"control": "composite",
|
|
"items": [
|
|
{
|
|
"name": "Horizontal grid (px)",
|
|
"control": "textfield"
|
|
},
|
|
{
|
|
"name": "Vertical grid (px)",
|
|
"control": "textfield"
|
|
}
|
|
],
|
|
"pattern": "^(\\d*[1-9]\\d*)?$",
|
|
"property": "layoutGrid",
|
|
"conversion": "number[]"
|
|
},
|
|
{
|
|
"name": "Default View",
|
|
"control": "select",
|
|
"options": [
|
|
{ "name": "Plot", "value": "plot" },
|
|
{ "name": "Scrolling", "value": "scrolling" }
|
|
],
|
|
"comment": "TODO: Infer values from type",
|
|
"key": "defaultView"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
} |