From 17be38abebf89e7b96ec276db157e968157cf795 Mon Sep 17 00:00:00 2001 From: augustin_s Date: Tue, 20 Jul 2021 15:17:24 +0200 Subject: [PATCH] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 757434353..5e0557d13 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,13 @@ _slic_ comes with an example GUI (written in [wxPython](https://wxpython.org/)) -In order to further the "disposable GUIs" concept, this GUI is very modular: Tabs can be enabled or disabled upon instantiation. Each tab interfaces a single feature of _slic_ (Static → `Acquisition.acquire()`, Scan → `Scanner.scan1D()`, Tweak → `Adjustable.set_target_value()`). The wx built-ins are extended by several widgets specific to experiment control (numeral input boxes are calculators, which perform simple math on enter press; filename boxes increment a counter at the end when pressing up; etc.), which can be re-used easily. +In order to further the "disposable GUIs" concept, this GUI is very modular: Tabs can be enabled or disabled upon instantiation. Each tab interfaces a single feature of _slic_: + +- Static → `Acquisition.acquire()` +- Scan → `Scanner.scan1D()` +- Tweak → `Adjustable.set_target_value()` + +Additionally, the wx built-ins are extended by several widgets specific to experiment control (numeral input boxes are calculators, which perform simple math on enter press; filename boxes increment a counter at the end when pressing up; etc.), which can be re-used easily. ## slic.utils