Skip to content

Commit 85091b9

Browse files
committed
Updated tour
1 parent 4e13147 commit 85091b9

File tree

2 files changed

+88
-90
lines changed

2 files changed

+88
-90
lines changed

cdl/core/gui/tour.py

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -668,6 +668,8 @@ def setup_tour(self, win: CDLMainWindow) -> None:
668668
win.main_toolbar,
669669
win.signalpanel_toolbar,
670670
win.imagepanel_toolbar,
671+
win.signalpanel.acthandler.view_toolbar,
672+
win.imagepanel.acthandler.view_toolbar,
671673
],
672674
)
673675
self.add_step(
@@ -710,9 +712,9 @@ def setup_tour(self, win: CDLMainWindow) -> None:
710712
self.add_step(
711713
_("Signal Panel") + " – " + _("File menu"),
712714
_(
713-
"The <b>File</b> menu contains actions to import and export signals "
714-
"individually (various formats) or to save or restore the whole "
715-
"workspace (HDF5 files)."
715+
"The <b>File</b> menu contains actions to create new signals, "
716+
"import and export signals individually (various formats) or "
717+
"to save or restore the whole workspace (HDF5 files)."
716718
),
717719
[win.menuBar()],
718720
lambda win: self.popup_menu(win, win.file_menu),
@@ -732,7 +734,7 @@ def setup_tour(self, win: CDLMainWindow) -> None:
732734
_("Signal Panel") + " – " + _("Operations menu"),
733735
_(
734736
"The <b>Operations</b> menu is focused on arithmetic operations, "
735-
"data type conversions, peak detection, ROI extraction, ..."
737+
"basic mathematical functions or data type conversions."
736738
),
737739
[win.menuBar()],
738740
lambda win: self.popup_menu(win, win.operation_menu),
@@ -789,9 +791,9 @@ def setup_tour(self, win: CDLMainWindow) -> None:
789791
self.add_step(
790792
_("Image Panel") + " – " + _("File menu"),
791793
_(
792-
"The <b>File</b> menu contains actions to import and export images "
793-
"individually (various formats) or to save or restore the whole "
794-
"workspace (HDF5 files)."
794+
"The <b>File</b> menu contains actions to create new images, "
795+
"import and export images individually (various formats) or "
796+
"to save or restore the whole workspace (HDF5 files)."
795797
),
796798
[win.menuBar()],
797799
lambda win: self.popup_menu(win, win.file_menu),
@@ -811,7 +813,7 @@ def setup_tour(self, win: CDLMainWindow) -> None:
811813
_("Image Panel") + " – " + _("Operations menu"),
812814
_(
813815
"The <b>Operations</b> menu is focused on arithmetic operations, "
814-
"data type conversions, pixel binning, resize, ROI extraction ..."
816+
"data type conversions, pixel binning resize, intensity profiles, ..."
815817
),
816818
[win.menuBar()],
817819
lambda win: self.popup_menu(win, win.operation_menu),
@@ -843,6 +845,8 @@ def setup_tour(self, win: CDLMainWindow) -> None:
843845
_(
844846
"DataLab is designed to be easily extended with new features, "
845847
"by using <b>Macros</b>, <b>Plugins</b> or <b>Remote Control</b>."
848+
"<br><br>The common point between these mechanisms is that "
849+
"they are all relying on Python scripts and the <i>DataLab API</i>."
846850
),
847851
)
848852
self.add_step(

0 commit comments

Comments
 (0)