2015-05-13 23:42:35 +00:00
|
|
|
<!--
|
2017-04-05 21:35:12 +00:00
|
|
|
Open MCT, Copyright (c) 2014-2017, United States Government
|
2015-05-13 23:42:35 +00:00
|
|
|
as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
Administration. All rights reserved.
|
|
|
|
|
2016-07-12 23:21:58 +00:00
|
|
|
Open MCT is licensed under the Apache License, Version 2.0 (the
|
2015-05-13 23:42:35 +00:00
|
|
|
"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.
|
|
|
|
|
2016-07-12 23:21:58 +00:00
|
|
|
Open MCT includes source code licensed under additional open source
|
2015-05-13 23:42:35 +00:00
|
|
|
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 19:53:05 +00:00
|
|
|
|
2017-08-18 23:28:41 +00:00
|
|
|
<div class="abs l-layout"
|
|
|
|
ng-controller="LayoutController as controller"
|
2017-12-07 21:04:46 +00:00
|
|
|
ng-click="controller.bypassSelection($event)">
|
2017-08-18 23:28:41 +00:00
|
|
|
|
|
|
|
<!-- Background grid -->
|
2017-12-07 21:04:46 +00:00
|
|
|
<div class="l-grid-holder"
|
|
|
|
ng-show="!controller.drilledIn"
|
|
|
|
ng-click="controller.bypassSelection($event)">
|
2017-08-18 23:28:41 +00:00
|
|
|
<div class="l-grid l-grid-x"
|
|
|
|
ng-if="!controller.getGridSize()[0] < 3"
|
|
|
|
ng-style="{ 'background-size': controller.getGridSize() [0] + 'px 100%' }"></div>
|
|
|
|
<div class="l-grid l-grid-y"
|
|
|
|
ng-if="!controller.getGridSize()[1] < 3"
|
|
|
|
ng-style="{ 'background-size': '100% ' + controller.getGridSize() [1] + 'px' }"></div>
|
|
|
|
</div>
|
|
|
|
|
2017-12-07 21:04:46 +00:00
|
|
|
<div class="abs frame t-frame-outer child-frame panel s-selectable s-moveable s-hover-border {{childObject.getId() + '-' + $id}} t-object-type-{{ childObject.getModel().type }}"
|
|
|
|
ng-class="{ 'no-frame': !controller.hasFrame(childObject), 's-drilled-in': controller.isDrilledIn(childObject) }"
|
2014-12-04 21:22:39 +00:00
|
|
|
ng-repeat="childObject in composition"
|
2017-12-07 21:04:46 +00:00
|
|
|
ng-init="controller.selectIfNew(childObject.getId() + '-' + $id, childObject)"
|
|
|
|
mct-selectable="controller.getContext(childObject, true)"
|
|
|
|
ng-dblclick="controller.drill($event, childObject)"
|
2014-12-04 21:22:39 +00:00
|
|
|
ng-style="controller.getFrameStyle(childObject.getId())">
|
|
|
|
|
2016-10-12 20:47:56 +00:00
|
|
|
<mct-representation key="'frame'"
|
2017-08-18 23:28:41 +00:00
|
|
|
class="t-rep-frame holder contents abs"
|
2016-10-12 20:47:56 +00:00
|
|
|
mct-object="childObject">
|
|
|
|
</mct-representation>
|
2014-12-05 17:13:16 +00:00
|
|
|
<!-- Drag handles -->
|
2017-12-07 21:04:46 +00:00
|
|
|
<span class="abs t-edit-handle-holder" ng-if="controller.selected(childObject) && !controller.isDrilledIn(childObject)">
|
2016-09-01 17:55:07 +00:00
|
|
|
<span class="edit-handle edit-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
|
|
|
|
2016-09-01 17:55:07 +00:00
|
|
|
<span class="edit-corner edit-resize-nw"
|
2014-12-05 17:04:22 +00:00
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [1,1], [-1,-1])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
2016-09-01 17:55:07 +00:00
|
|
|
<span class="edit-corner edit-resize-ne"
|
2014-12-05 17:04:22 +00:00
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [0,1], [1,-1])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
2015-06-30 16:27:56 +00:00
|
|
|
</span>
|
2016-09-01 17:55:07 +00:00
|
|
|
<span class="edit-corner edit-resize-sw"
|
2014-12-05 17:04:22 +00:00
|
|
|
mct-drag-down="controller.startDrag(childObject.getId(), [1,0], [-1,1])"
|
|
|
|
mct-drag="controller.continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.endDrag()">
|
|
|
|
</span>
|
2016-09-01 17:55:07 +00:00
|
|
|
<span class="edit-corner edit-resize-se"
|
2014-12-05 17:04:22 +00:00
|
|
|
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
|
|
|
|
2017-04-05 21:35:12 +00:00
|
|
|
</div>
|