mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
7a680873e3
Begin adding placeholder toolbar for fixed position view, WTD-879.
158 lines
5.7 KiB
JSON
158 lines
5.7 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" ],
|
|
"gestures": [ "drop" ]
|
|
},
|
|
{
|
|
"key": "fixed",
|
|
"name": "Fixed Position",
|
|
"glyph": "3",
|
|
"type": "telemetry.panel",
|
|
"templateUrl": "templates/fixed.html",
|
|
"uses": [ "composition" ],
|
|
"gestures": [ "drop" ],
|
|
"toolbar": {
|
|
"sections": [
|
|
{
|
|
"items": [
|
|
{
|
|
"method": "add",
|
|
"control": "button",
|
|
"text": "Add"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"items": [
|
|
{
|
|
"property": "z",
|
|
"control": "textfield"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"representations": [
|
|
{
|
|
"key": "frame",
|
|
"templateUrl": "templates/frame.html"
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "LayoutController",
|
|
"implementation": "LayoutController.js",
|
|
"depends": [ "$scope" ]
|
|
},
|
|
{
|
|
"key": "FixedController",
|
|
"implementation": "FixedController.js",
|
|
"depends": [ "$scope", "telemetrySubscriber", "telemetryFormatter" ]
|
|
}
|
|
],
|
|
"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"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
} |