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.
|
|
|
|
-->
|
2015-02-25 19:08:52 +00:00
|
|
|
<div class="t-fixed-position l-fixed-position"
|
2015-01-16 02:53:59 +00:00
|
|
|
ng-controller="FixedController as controller"
|
|
|
|
mct-resize="controller.setBounds(bounds)">
|
2015-01-15 01:48:57 +00:00
|
|
|
|
2015-01-16 02:48:11 +00:00
|
|
|
<!-- Background grid -->
|
2015-02-25 23:53:02 +00:00
|
|
|
<div class="l-grid-holder" ng-click="controller.clearSelection()">
|
2015-02-26 18:31:59 +00:00
|
|
|
<div class="l-grid l-grid-x"
|
|
|
|
ng-style="{ 'background-size': controller.getGridSize() [0] + 'px 100%' }"></div>
|
|
|
|
<div class="l-grid l-grid-y"
|
|
|
|
ng-style="{ 'background-size': '100% ' + controller.getGridSize() [1] + 'px' }"></div>
|
2015-02-25 23:53:02 +00:00
|
|
|
</div>
|
2015-01-16 02:48:11 +00:00
|
|
|
|
2015-02-19 03:41:27 +00:00
|
|
|
<!-- Fixed position elements -->
|
2015-02-26 18:31:59 +00:00
|
|
|
<div ng-repeat="element in controller.getElements()"
|
|
|
|
class="l-fixed-position-item"
|
|
|
|
ng-class="{ 's-not-selected': controller.selected() && !controller.selected(element) }"
|
|
|
|
ng-style="element.style"
|
|
|
|
ng-click="controller.select(element)">
|
|
|
|
<mct-include key="element.template"
|
|
|
|
parameters="{ gridSize: controller.getGridSize() }"
|
|
|
|
ng-model="element">
|
|
|
|
</mct-include>
|
|
|
|
</div>
|
2015-02-24 18:06:34 +00:00
|
|
|
|
|
|
|
<!-- Selection highlight, handles -->
|
|
|
|
<span ng-if="controller.selected()">
|
2015-02-25 23:53:02 +00:00
|
|
|
<div class="l-fixed-position-item s-selected"
|
2015-02-24 19:29:52 +00:00
|
|
|
mct-drag-down="controller.moveHandle().startDrag(controller.selected())"
|
|
|
|
mct-drag="controller.moveHandle().continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.moveHandle().endDrag()"
|
2015-02-24 18:06:34 +00:00
|
|
|
ng-style="controller.selected().style">
|
|
|
|
</div>
|
|
|
|
<div ng-repeat="handle in controller.handles()"
|
2015-02-25 23:53:02 +00:00
|
|
|
class="l-fixed-position-item-handle"
|
2015-02-24 19:00:36 +00:00
|
|
|
ng-style="handle.style()"
|
2015-02-24 18:06:34 +00:00
|
|
|
mct-drag-down="handle.startDrag()"
|
2015-02-24 19:29:52 +00:00
|
|
|
mct-drag="handle.continueDrag(delta)"
|
2015-02-24 18:06:34 +00:00
|
|
|
mct-drag-up="handle.endDrag()">
|
|
|
|
</div>
|
|
|
|
</span>
|
|
|
|
|
2015-01-15 01:48:57 +00:00
|
|
|
</div>
|