mirror of
https://github.com/nasa/openmct.git
synced 2025-01-14 08:49:58 +00:00
50c08a15d6
In edit mode, the user can now use the object inspector to inspect the objects contained within the Library and Elements panes.
92 lines
4.4 KiB
HTML
92 lines
4.4 KiB
HTML
<!--
|
|
Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
as represented by the Administrator of the National Aeronautics and Space
|
|
Administration. All rights reserved.
|
|
|
|
Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
License for the specific language governing permissions and limitations
|
|
under the License.
|
|
|
|
Open MCT Web includes source code licensed under additional open source
|
|
licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
this source code distribution or the Licensing information page available
|
|
at runtime from the About dialog for additional information.
|
|
-->
|
|
<mct-representation key="'topbar-edit'"
|
|
mct-object="domainObject"
|
|
ng-model="representation"
|
|
ng-click="ngModel.inspectionObjects = [domainObject]">
|
|
</mct-representation>
|
|
<div class="holder edit-area abs">
|
|
<mct-split-pane class='contents abs'
|
|
anchor='right'>
|
|
<div class='split-pane-component secondary-split pane left'>
|
|
<mct-split-pane class='contents abs' anchor='right'>
|
|
<div class='split-pane-component pane left edit-main'>
|
|
<mct-toolbar name="mctToolbar"
|
|
structure="toolbar.structure"
|
|
ng-model="toolbar.state">
|
|
</mct-toolbar>
|
|
<div class='holder abs object-holder work-area'>
|
|
<mct-representation key="representation.selected.key"
|
|
toolbar="toolbar"
|
|
mct-object="representation.selected.key && domainObject"
|
|
ng-model="ngModel">
|
|
</mct-representation>
|
|
</div>
|
|
</div>
|
|
<mct-splitter></mct-splitter>
|
|
<div
|
|
class='split-pane-component pane right edit-objects menus-to-left'
|
|
ng-controller='EditPanesController as editPanes'
|
|
>
|
|
<mct-split-pane class='contents abs' anchor='bottom'>
|
|
<div
|
|
class="abs pane top accordion"
|
|
ng-controller="ToggleController as toggle"
|
|
>
|
|
<mct-container key="accordion" label="Library">
|
|
<mct-representation key="'tree'"
|
|
mct-object="editPanes.getRoot()"
|
|
ng-model="ngModel">
|
|
</mct-representation>
|
|
</mct-container>
|
|
</div>
|
|
<mct-splitter></mct-splitter>
|
|
<div
|
|
class="abs pane bottom accordion"
|
|
ng-controller="ToggleController as toggle"
|
|
>
|
|
<mct-container key="accordion" label="Elements">
|
|
<mct-representation key="'edit-elements'"
|
|
mct-object="domainObject"
|
|
ng-model="ngModel">
|
|
</mct-representation>
|
|
</mct-container>
|
|
</div>
|
|
</mct-split-pane>
|
|
</div>
|
|
</mct-split-pane>
|
|
</div>
|
|
|
|
<mct-splitter></mct-splitter>
|
|
|
|
<div class='split-pane-component object-inspector pane right'
|
|
ng-class='{inactive: !paneModel.rightPane}'>
|
|
<div class='holder inspector-holder abs'>
|
|
<mct-representation key="'object-inspector'"
|
|
mct-object="editPanes.getRoot()"
|
|
ng-model="ngModel">
|
|
</mct-representation>
|
|
</div>
|
|
</div>
|
|
</mct-split-pane>
|
|
</div>
|