Added app setting to enable/disable IHI slidescan

This commit is contained in:
Joel Collins 2020-09-09 12:54:44 +01:00
parent de7f4f6dfe
commit f0ce85fc3f
6 changed files with 209 additions and 120 deletions

View file

@ -17,6 +17,19 @@
Display
</tabIcon>
</li>
<li>
<tabIcon
id="settings-features-icon"
tab-i-d="features"
:show-title="false"
:show-tooltip="false"
:require-connection="false"
:current-tab="currentTab"
@set-tab="setTab"
>
Features
</tabIcon>
</li>
<li class="uk-nav-header">Microscope settings</li>
<li>
<tabIcon
@ -71,6 +84,16 @@
</div>
</tabContent>
<tabContent
tab-i-d="features"
:require-connection="false"
:current-tab="currentTab"
>
<div class="settings-pane uk-padding-small">
<featuresSettings />
</div>
</tabContent>
<tabContent
tab-i-d="camera"
:require-connection="true"
@ -116,6 +139,7 @@ import streamSettings from "./settingsComponents/streamSettings.vue";
import microscopeSettings from "./settingsComponents/microscopeSettings.vue";
import cameraSettings from "./settingsComponents/cameraSettings.vue";
import appSettings from "./settingsComponents/appSettings.vue";
import featuresSettings from "./settingsComponents/featuresSettings.vue";
import cameraStageMappingSettings from "./settingsComponents/cameraStageMappingSettings.vue";
// Import generic components
@ -132,6 +156,7 @@ export default {
microscopeSettings,
cameraStageMappingSettings,
appSettings,
featuresSettings,
tabIcon,
tabContent
},
@ -157,9 +182,6 @@ export default {
// Custom UIkit CSS modifications
@import "../../assets/less/theme.less";
.settings-pane {
}
.settings-nav {
overflow-y: auto;
overflow-x: hidden;