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 21:22:39 +00:00
|
|
|
<div style="width: 100%; height: 100%;"
|
|
|
|
ng-controller="LayoutController as controller">
|
2014-12-04 19:53:05 +00:00
|
|
|
|
2014-12-04 21:22:39 +00:00
|
|
|
<div class='frame child-frame panel abs'
|
|
|
|
ng-repeat="childObject in composition"
|
|
|
|
ng-style="controller.getFrameStyle(childObject.getId())">
|
|
|
|
|
|
|
|
<div class="frame child-frame holder contents abs">
|
|
|
|
<mct-representation key="'frame'"
|
|
|
|
mct-object="childObject">
|
|
|
|
</mct-representation>
|
|
|
|
</div>
|
|
|
|
|
2014-12-05 17:13:16 +00:00
|
|
|
<!-- Drag handles -->
|
|
|
|
<span ng-show="domainObject.hasCapability('editor')">
|
2014-12-05 17:04:22 +00:00
|
|
|
<span style="position: absolute; left: 12px; right: 12px; top: 12px; bottom: 12px; cursor: move;"
|
2014-12-05 16:51:41 +00:00
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [1,1], [0,0])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
2014-12-05 17:04:22 +00:00
|
|
|
|
|
|
|
<span style="position: absolute; left: 0px; width: 12px; top: 12px; bottom: 12px; cursor: w-resize;"
|
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [1,0], [-1,0])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
|
|
|
<span style="position: absolute; right: 0px; width: 12px; top: 12px; bottom: 12px; cursor: e-resize;"
|
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [0,0], [1,0])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<span style="position: absolute; left: 12px; right: 12px; top: 0px; height: 12px; cursor: n-resize;"
|
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [0,1], [0,-1])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
|
|
|
<span style="position: absolute; left: 12px; right: 12px; bottom: 0px; height: 12px; cursor: s-resize;"
|
2014-12-05 23:23:18 +00:00
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [0,0], [0,1])"
|
2014-12-05 17:04:22 +00:00
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<span style="position: absolute; left: 0px; width: 12px; top: 0px; height: 12px; cursor: nw-resize;"
|
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [1,1], [-1,-1])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
|
|
|
<span style="position: absolute; right: 0px; width: 12px; top: 0px; height: 12px; cursor: ne-resize;"
|
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [0,1], [1,-1])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
|
|
|
<span style="position: absolute; left: 0px; width: 12px; bottom: 0px; height: 12px; cursor: sw-resize;"
|
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [1,0], [-1,1])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
|
|
|
<span style="position: absolute; right: 0px; width: 12px; bottom: 0px; height: 12px; cursor: se-resize;"
|
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [0,0], [1,1])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
2014-12-05 16:51:41 +00:00
|
|
|
</span>
|
|
|
|
|
2014-12-04 21:22:39 +00:00
|
|
|
</div>
|
2014-12-04 19:53:05 +00:00
|
|
|
|
|
|
|
</div>
|