mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 11:42:33 +02:00
118 lines
6.5 KiB
HTML
118 lines
6.5 KiB
HTML
<!--
|
|
// entityList.html
|
|
//
|
|
// Created by Ryan Huffman on 19 Nov 2014
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
<link rel="stylesheet" type="text/css" href="css/edit-style.css">
|
|
<script type="text/javascript" src="qrc:///qtwebchannel/qwebchannel.js"></script>
|
|
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
|
|
<script type="text/javascript" src="js/eventBridgeLoader.js"></script>
|
|
<script type="text/javascript" src="js/spinButtons.js"></script>
|
|
<script type="text/javascript" src="js/listView.js"></script>
|
|
<script type="text/javascript" src="js/entityListContextMenu.js"></script>
|
|
<script type="text/javascript" src="js/entityList.js"></script>
|
|
</head>
|
|
<body onload='loaded();' id="entity-list-body">
|
|
<div id="entity-list-header">
|
|
<input type="button" class="glyph" id="refresh" value="F" />
|
|
<div>
|
|
<input type="button" id="locked" class="glyph" value="" />
|
|
<input type="button" id="visible" class="glyph" value="" />
|
|
</div>
|
|
<input type="button" id="pal" class="glyph" value="" />
|
|
<input type="button" class="red" id="delete" value="Delete" />
|
|
</div>
|
|
<div id="entity-list">
|
|
<div id="filter-area">
|
|
<div class="multiselect">
|
|
<div class="select-box" id="filter-type-select-box">
|
|
<select>
|
|
<option id="filter-type-text">All Types</option>
|
|
</select>
|
|
<div class="over-select"></div>
|
|
</div>
|
|
<div id="filter-type-checkboxes">
|
|
<!-- type options with checkbox, icon, and label are added at runtime in entityList -->
|
|
</div>
|
|
</div>
|
|
<div id="filter-search-and-icon">
|
|
<span class="icon-input"><input type="search" class="search" id="filter-search" placeholder="Search" /><span>Y</span></span>
|
|
</div>
|
|
<input type="button" id="filter-in-view" class="glyph" value="" />
|
|
<div id="filter-radius-and-unit" class="number">
|
|
<label for="radius">Search radius <span class="unit">m</span></label>
|
|
<input type="text" id="filter-radius" maxlength="9" value="100" />
|
|
</div>
|
|
</div>
|
|
<div id="entity-table-scroll">
|
|
<table id="entity-table">
|
|
<colgroup>
|
|
<col span="1" id="col-type" />
|
|
<col span="1" id="col-name" />
|
|
<col span="1" id="col-url" />
|
|
<col span="1" id="col-locked" />
|
|
<col span="1" id="col-visible" />
|
|
<col span="1" id="col-verticesCount" />
|
|
<col span="1" id="col-texturesCount" />
|
|
<col span="1" id="col-texturesSize" />
|
|
<col span="1" id="col-hasTransparent" />
|
|
<col span="1" id="col-isBaked" />
|
|
<col span="1" id="col-drawCalls" />
|
|
<col span="1" id="col-hasScript" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th id="entity-type">Type<span class="sort-order"></span><span id="info-toggle"><span class="glyph">D</span></span></th>
|
|
<th id="entity-name">Name<span class="sort-order"></span></th>
|
|
<th id="entity-url">File<span class="sort-order"></span></th>
|
|
<th id="entity-locked"><span class="glyph"></span><span class="sort-order"></span></th>
|
|
<th id="entity-visible"><span class="glyph"></span><span class="sort-order"></span></th>
|
|
<th id="entity-verticesCount">Verts<span class="sort-order"></span></th>
|
|
<th id="entity-texturesCount">Texts<span class="sort-order"></span></th>
|
|
<th id="entity-texturesSize">Text MB<span class="sort-order"></span></th>
|
|
<th id="entity-hasTransparent"><span class="glyph"></span><span class="sort-order"></span></th>
|
|
<th id="entity-isBaked">Baked<span class="sort-order"></span></th>
|
|
<th id="entity-drawCalls">Draws<span class="sort-order"></span></th>
|
|
<th colspan="1" id="entity-hasScript"><span class="glyph">k</span><span class="sort-order"></span></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="list" id="entity-table-body">
|
|
<tr>
|
|
<td class="type"></td>
|
|
<td class="name"></td>
|
|
<td class="url"><div class='outer'><div class='inner'></div></div></td>
|
|
<td class="locked glyph"></td>
|
|
<td class="visible glyph"></td>
|
|
<td class="verticesCount"></td>
|
|
<td class="texturesCount"></td>
|
|
<td class="texturesSize"></td>
|
|
<td class="hasTransparent glyph"></td>
|
|
<td class="isBaked glyph"></td>
|
|
<td class="drawCalls"></td>
|
|
<td class="hasScript glyph"></td>
|
|
<td class="id" style="display: none"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div id="no-entities">
|
|
There are no entities to display. Please check your filters or create an entity to begin.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="entity-list-footer">
|
|
<div>
|
|
<input type="button" id="export" value="Export Selection" />
|
|
<div id="footer-text">
|
|
<b><span id="selected-entities-count">0</span> of <span id="visible-entities-count">0</span></b> selected
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|