2015-05-13 23:42:35 +00:00
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
2014-12-04 20:32:35 +00:00
|
|
|
<mct-representation key="'topbar-edit'"
|
|
|
|
mct-object="domainObject"
|
|
|
|
ng-model="representation">
|
|
|
|
</mct-representation>
|
2015-05-01 17:10:35 +00:00
|
|
|
<div class="holder edit-area abs"
|
2015-03-13 18:39:31 +00:00
|
|
|
ng-controller="SplitPaneController as vSplitter">
|
2015-02-17 22:31:02 +00:00
|
|
|
<mct-toolbar name="mctToolbar"
|
|
|
|
structure="toolbar.structure"
|
|
|
|
ng-model="toolbar.state">
|
|
|
|
</mct-toolbar>
|
2015-03-13 18:39:31 +00:00
|
|
|
<div class='split-layout vertical contents abs work-area'>
|
2015-03-06 00:02:33 +00:00
|
|
|
<div
|
|
|
|
class='abs pane left edit-main'
|
2015-03-06 16:11:27 +00:00
|
|
|
ng-style="{ right: (vSplitter.state()+5) + 'px'}"
|
2015-03-06 00:02:33 +00:00
|
|
|
>
|
2014-11-23 23:41:20 +00:00
|
|
|
<div class='holder abs object-holder'>
|
2014-12-04 20:32:35 +00:00
|
|
|
<mct-representation key="representation.selected.key"
|
2015-02-17 22:31:02 +00:00
|
|
|
toolbar="toolbar"
|
2015-01-16 01:04:03 +00:00
|
|
|
mct-object="representation.selected.key && domainObject">
|
2014-11-23 23:41:20 +00:00
|
|
|
</mct-representation>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-03-06 00:02:33 +00:00
|
|
|
|
|
|
|
<!-- MAIN VERTICAL SPLITTER -->
|
|
|
|
<div
|
|
|
|
class="splitter"
|
2015-03-06 16:11:27 +00:00
|
|
|
ng-style="{ right: vSplitter.state() + 'px'}"
|
2015-03-06 00:02:33 +00:00
|
|
|
mct-drag-down="vSplitter.startMove()"
|
2015-03-06 16:11:27 +00:00
|
|
|
mct-drag="vSplitter.move(-delta[0], 100, 1000)"
|
2015-03-06 00:02:33 +00:00
|
|
|
></div>
|
|
|
|
|
2015-03-12 18:32:17 +00:00
|
|
|
|
2015-03-06 00:02:33 +00:00
|
|
|
<div
|
|
|
|
class='abs pane right edit-objects menus-to-left'
|
2015-03-12 18:32:17 +00:00
|
|
|
ng-controller='EditPanesController as editPanes'
|
2015-03-06 16:11:27 +00:00
|
|
|
ng-style="{ width: (vSplitter.state()-4) + 'px', right: '0px'}"
|
2015-03-06 00:02:33 +00:00
|
|
|
>
|
|
|
|
<div
|
|
|
|
class='holder abs split-layout horizontal'
|
|
|
|
ng-controller="SplitPaneController as hSplitter"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="abs pane top accordion"
|
2015-03-06 16:11:27 +00:00
|
|
|
ng-style="{ bottom: (hSplitter.state()+8) + 'px', top: '0px' }"
|
2015-03-06 00:02:33 +00:00
|
|
|
ng-controller="ToggleController as toggle"
|
|
|
|
>
|
|
|
|
<mct-container key="accordion" title="Library">
|
2015-03-12 18:32:17 +00:00
|
|
|
<mct-representation key="'tree'"
|
|
|
|
alias="foo1"
|
|
|
|
mct-object="editPanes.getRoot()">
|
2015-03-06 00:02:33 +00:00
|
|
|
</mct-representation>
|
|
|
|
</mct-container>
|
2014-12-31 01:02:48 +00:00
|
|
|
</div>
|
2015-03-06 00:02:33 +00:00
|
|
|
<!-- HORZ SPLITTER -->
|
|
|
|
<div
|
|
|
|
class="splitter"
|
|
|
|
ng-style="{ bottom: hSplitter.state() + 'px', top: 'auto' }"
|
|
|
|
mct-drag-down="hSplitter.startMove()"
|
|
|
|
mct-drag="hSplitter.move(-delta[1], 120, 1000)"
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="abs pane bottom accordion"
|
2015-03-06 16:11:27 +00:00
|
|
|
ng-style="{ bottom: '0px', height: (hSplitter.state()-4) + 'px'}"
|
2015-03-06 00:02:33 +00:00
|
|
|
ng-controller="ToggleController as toggle"
|
|
|
|
>
|
|
|
|
<mct-container key="accordion" title="Elements">
|
|
|
|
<mct-representation key="'edit-elements'" mct-object="domainObject">
|
|
|
|
</mct-representation>
|
|
|
|
</mct-container>
|
2014-12-31 01:02:48 +00:00
|
|
|
</div>
|
2014-11-23 23:41:20 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|