1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-23 14:20:10 +00:00
msfs-popout-panel-manager/Addons/InGameToolbar/PackageSources/html_ui/InGamePanels/PopOutManagerPanel/PopOutManager.html

74 lines
3.5 KiB
HTML
Raw Normal View History

2022-07-23 19:23:32 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="/SCSS/common.css" />
<link rel="stylesheet" href="PopOutManager.css" />
<script type="text/javascript" src="/JS/coherent.js"></script>
<script type="text/javascript" src="/JS/common.js"></script>
<script type="text/javascript" src="/JS/buttons.js"></script>
<script type="text/javascript" src="/JS/Services/ToolBarPanels.js"></script>
<script type="text/javascript" src="/JS/Services/Notifications.js"></script>
<link rel="import" href="/templates/virtualScroll/virtualScroll.html" />
<link rel="import" href="/templates/NewPushButton/NewPushButton.html" />
<link rel="import" href="/templates/DropDown/DropDown.html" />
<link rel="import" href="/templates/tabMenu/tabMenu.html" />
<link rel="import" href="/templates/ingameUi/ingameUi.html" />
<link rel="import" href="/templates/ingameUiHeader/ingameUiHeader.html" />
<link rel="import" href="/templates/checkbox/checkbox.html" />
<link rel="import" href="/templates/uiInput/uiInput.html" />
<script type="text/javascript" src="PopOutManager.js"></script>
</head>
<body class="border-box">
<pop-out-manager>
<ingame-ui id="popOutManager" panel-id="PANEL_POP_OUT_MANAGER" title=""
class="ingameUiFrame panelInvisible condensedPanel" resize="both" min-width="160" min-height="90"
content-fit="true" auto-inside>
<div id="panelSelection" class="horizontalLayout" style="display:block">
<div id="profileInfo">Panel Locations and Settings - <span id="planeProfileName"></span></div>
<div id="panelSelection">
Panel Selection
<drop-down id="dropdownProfile" style="width:50vw"></drop-down>
<icon-button id="addProfile" data-url="/icons/open.svg"></icon-button>
<icon-button id="deleteProfile" data-url="/icons/reduce.svg"></icon-button>
</div>
</div>
<div id="panelConfiguration" class="horizontalLayout" style="display:none">
<div id="profileInfo">Panel Locations and Settings - <span id="planeProfileName"></span></div>
<virtual-scroll id="panelConfigTable" direction="y">
</virtual-scroll>
<div id="panelConfigButtons">
<new-push-button id="btnMinusTen" title="-10 px" class="panelConfigButton"></new-push-button>
<new-push-button id="btnMinusOne" title="-1 px" class="panelConfigButton"></new-push-button>
<new-push-button id="btnPlusOne" title="+1 px" class="panelConfigButton"></new-push-button>
<new-push-button id="btnPlusTen" title="+10 px" class="panelConfigButton" toolTip="test"></new-push-button>
<div>
<new-push-button id="btnLockPanels" title="Lock Panels" class="lockPanelsButton"></new-push-button>
</div>
</div>
</div>
</ingame-ui>
</pop-out-manager>
<div id="dialogBegin" class="stepDialog">
<new-push-button id="btnStartPopOut" parentStep="stepBegin" title="Start Pop Out" class="stepButton"></new-push-button>
<new-push-button id="btnCreateNewProfile" parentStep="stepBegin" title="Create New Profile" class="stepButton"></new-push-button>
<new-push-button id="btnAdjustProfile" parentStep="stepBegin" title="Adjust Profile" class="stepButton"></new-push-button>
</div>
</body>
</html>