diff --git a/Thermo.Active/wwwroot/assets/styles/style.css b/Thermo.Active/wwwroot/assets/styles/style.css
index 23356277..e2fd4d9d 100644
--- a/Thermo.Active/wwwroot/assets/styles/style.css
+++ b/Thermo.Active/wwwroot/assets/styles/style.css
@@ -87,6 +87,7 @@
justify-content: flex-start;
width: calc(100% - 28px);
height: calc(100% - 28px - 82px);
+ position: relative;
}
.setup .modal section.body section .auto {
overflow-y: auto;
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/components/axis-info.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/components/axis-info.ts
new file mode 100644
index 00000000..5e3e6d8c
--- /dev/null
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/components/axis-info.ts
@@ -0,0 +1,28 @@
+import Component from "vue-class-component";
+import Vue from "vue";
+import { Prop } from "vue-property-decorator";
+import PrintProcesso from "@/app_modules_thermo/processo/components/printProcesso";
+
+@Component({})
+export default class AxisInfo extends Vue {
+
+ @Prop()
+ id: number;
+
+ @Prop({ default: 'axes' })
+ name: string;
+
+ @Prop({ default: 'axes-quote' })
+ quoteLabel: string;
+
+ @Prop({ default: 'axes-speed' })
+ speedLabel: string;
+
+
+
+ get axis() {
+ return null;
+ }
+
+
+}
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/components/axis-info.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/components/axis-info.vue
new file mode 100644
index 00000000..3b235f51
--- /dev/null
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/components/axis-info.vue
@@ -0,0 +1,45 @@
+
+
+
+
+
+ |
+ {{name | localize(name)}} |
+
+
+
+
+ | {{quoteLabel | localize(quoteLabel)}} |
+ 0 mm |
+
+
+ | {{speedLabel | localize(speedLabel)}} |
+ 0 mm/s |
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.ts
index cf558dc8..618c473b 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.ts
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.ts
@@ -1,16 +1,18 @@
import Vue from 'vue';
import Component from 'vue-class-component';
import { Prop } from 'vue-property-decorator';
-import Slider from "@/app_modules_thermo/components/slider.vue";
+
import Scheda from "@/app_modules_thermo/components/scheda.vue";
import Controstamposvg from "./SVG_Components/svgcontrostampo.vue";
-import Tastierino from "@/app_modules_thermo/components/tastierino.vue";
+
+import axes from "@/app_modules_thermo/setup/components/axis-info.vue";
@Component({
name: "controstampo",
components: {
scheda: Scheda,
- svgcontrostampo: Controstamposvg
+ svgcontrostampo: Controstamposvg,
+ axes
}
})
export default class Controstampo extends Vue {
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue
index ce4ad75a..4972e226 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/controstampo.vue
@@ -98,6 +98,7 @@
+
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.ts
index 42b4db9a..8472d4b6 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.ts
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.ts
@@ -1,11 +1,12 @@
import Vue from "vue";
import Component from "vue-class-component";
import { Prop } from 'vue-property-decorator';
-import Slider from "@/app_modules_thermo/components/slider.vue";
-import QuoteVelocitaSVG from "./SVG_Components/quote-velocita.vue";
-import Tastierino from "@/app_modules_thermo/components/tastierino.vue";
-@Component({ name: "discesacornice", components: { quoteVelocitaSVG: QuoteVelocitaSVG } })
+import QuoteVelocitaSVG from "./SVG_Components/quote-velocita.vue";
+
+import axes from "@/app_modules_thermo/setup/components/axis-info.vue";
+
+@Component({ name: "discesacornice", components: { quoteVelocitaSVG: QuoteVelocitaSVG, axes } })
export default class DiscesaCornice extends Vue {
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue
index 534c4ae7..8957c6b9 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/discesa-cornice.vue
@@ -82,6 +82,7 @@
+
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.ts b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.ts
index 9b708084..b23012e0 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.ts
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.ts
@@ -1,11 +1,10 @@
import Vue from "vue";
import Component from "vue-class-component";
import { Prop } from 'vue-property-decorator';
-import Slider from "@/app_modules_thermo/components/slider.vue"
import StampoSVG from "./SVG_Components/stampo.vue";
-import Tastierino from "@/app_modules_thermo/components/tastierino.vue";
+import axes from "@/app_modules_thermo/setup/components/axis-info.vue";
-@Component({ name: "salita-stampo", components: { stampoSVG: StampoSVG } })
+@Component({ name: "salita-stampo", components: { stampoSVG: StampoSVG, axes } })
export default class DiscesaCornice extends Vue {
diff --git a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue
index 584cb54c..f1ab2841 100644
--- a/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue
+++ b/Thermo.Active/wwwroot/src/app_modules_thermo/setup/quote-velocita/components/salita-stampo.vue
@@ -103,6 +103,7 @@
+