auto-options-python 0.1.4__tar.gz → 0.1.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/PKG-INFO +1 -1
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/user/introduction.rst +3 -3
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/auto_options_python.egg-info/PKG-INFO +1 -1
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_version.py +3 -3
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/widget.py +5 -7
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/scratch/options.py +7 -2
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/.github/workflows/create_doc.yml +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/.github/workflows/test_and_deploy.yml +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/.gitignore +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/LICENSE +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/README.md +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/Makefile +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/make.bat +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/auto-options-python.rst +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/autooptions.array_util.rst +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/autooptions.napari_util.rst +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/autooptions.options.rst +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/autooptions.qtutil.rst +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/autooptions.widget.rst +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/conf.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/index.rst +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/modules.rst +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/user/installation.rst +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/user/user_documentation.rst +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/pyproject.toml +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/setup.cfg +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/auto_options_python.egg-info/SOURCES.txt +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/auto_options_python.egg-info/dependency_links.txt +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/auto_options_python.egg-info/requires.txt +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/auto_options_python.egg-info/top_level.txt +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/__init__.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/__init__.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/test_array_util.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/test_napari_util.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/test_options.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/test_qtutil.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/test_widget.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/array_util.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/napari_util.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/options.py +0 -0
- {auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/qtutil.py +0 -0
|
@@ -35,13 +35,13 @@ The code to create the options-dialog in Fig.1.1 is:
|
|
|
35
35
|
from autooptions.options import Options
|
|
36
36
|
from autooptions.widget import OptionsWidget
|
|
37
37
|
|
|
38
|
+
viewer = napari.Viewer()
|
|
38
39
|
options = Options("3D Toolbox", "Convolution")
|
|
39
40
|
options.addImage()
|
|
40
|
-
|
|
41
|
+
options.addImage(name="kernel")
|
|
41
42
|
options.addChoice("mode", choices=["same", "valid", "full"])
|
|
42
43
|
options.addChoice("method", choices=["auto", "direct", "fft"])
|
|
43
44
|
options.load()
|
|
44
|
-
widget = OptionsWidget(
|
|
45
|
+
widget = OptionsWidget(viewer, options, viewer)
|
|
45
46
|
widget.addApplyButton(None)
|
|
46
|
-
viewer = napari.Viewer()
|
|
47
47
|
viewer.window.add_dock_widget(widget, name=options.optionsName)
|
|
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
|
|
|
18
18
|
commit_id: str | None
|
|
19
19
|
__commit_id__: str | None
|
|
20
20
|
|
|
21
|
-
__version__ = version = '0.1.
|
|
22
|
-
__version_tuple__ = version_tuple = (0, 1,
|
|
21
|
+
__version__ = version = '0.1.5'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 1, 5)
|
|
23
23
|
|
|
24
|
-
__commit_id__ = commit_id = '
|
|
24
|
+
__commit_id__ = commit_id = 'g88d6dc181'
|
|
@@ -291,26 +291,24 @@ class OptionsWidget(QWidget):
|
|
|
291
291
|
|
|
292
292
|
|
|
293
293
|
def _createApplyButton(self, callback):
|
|
294
|
-
button = self._createButton("&Apply", callback)
|
|
295
|
-
button.clicked.connect(self._onApplyButtonClicked)
|
|
294
|
+
button = self._createButton("&Apply", callback, self._onApplyButtonClicked)
|
|
296
295
|
return button
|
|
297
296
|
|
|
298
297
|
|
|
299
298
|
def _createOKButton(self, callback):
|
|
300
|
-
button = self._createButton("&Ok", callback)
|
|
301
|
-
button.clicked.connect(self._onOKButtonClicked)
|
|
299
|
+
button = self._createButton("&Ok", callback, self._onOKButtonClicked)
|
|
302
300
|
return button
|
|
303
301
|
|
|
304
302
|
|
|
305
303
|
def _createCancelButton(self, callback):
|
|
306
|
-
button = self._createButton("&Cancel", callback)
|
|
307
|
-
button.clicked.connect(self._onCancelButtonClicked)
|
|
304
|
+
button = self._createButton("&Cancel", callback, self._onCancelButtonClicked)
|
|
308
305
|
return button
|
|
309
306
|
|
|
310
307
|
|
|
311
308
|
@classmethod
|
|
312
|
-
def _createButton(cls, name, callback):
|
|
309
|
+
def _createButton(cls, name, callback, innerCallback):
|
|
313
310
|
button = QPushButton(name)
|
|
311
|
+
button.clicked.connect(innerCallback)
|
|
314
312
|
if callback:
|
|
315
313
|
button.clicked.connect(callback)
|
|
316
314
|
return button
|
|
@@ -4,12 +4,17 @@ from autooptions.widget import OptionsWidget
|
|
|
4
4
|
|
|
5
5
|
class Client:
|
|
6
6
|
|
|
7
|
+
|
|
7
8
|
def __init__(self):
|
|
8
9
|
self.viewer = napari.Viewer()
|
|
9
10
|
self.options = None
|
|
10
11
|
self.widget = None
|
|
11
12
|
|
|
12
13
|
|
|
14
|
+
def onApplyButtonClicked(self):
|
|
15
|
+
print(self.options.items)
|
|
16
|
+
|
|
17
|
+
|
|
13
18
|
def onInputChanged(self, value):
|
|
14
19
|
if not value.isnumeric():
|
|
15
20
|
self.widget.widgets["size xy"].setText(str(self.options.value("size xy")))
|
|
@@ -24,8 +29,8 @@ class Client:
|
|
|
24
29
|
self.options.addChoice('footprint', value=None, choices=["none", "cube", "ball", "octahedron"])
|
|
25
30
|
self.options.addInt('radius', value=1, widget="input")
|
|
26
31
|
self.options.load()
|
|
27
|
-
self.widget = OptionsWidget(self.viewer, self.options, self)
|
|
28
|
-
self.widget.addApplyButton(
|
|
32
|
+
self.widget = OptionsWidget(self.viewer, self.options, self.widget)
|
|
33
|
+
self.widget.addApplyButton(self.onApplyButtonClicked)
|
|
29
34
|
#self.widget.addOKButton(None)
|
|
30
35
|
#self.widget.addCancelButton(None)
|
|
31
36
|
self.viewer.window.add_dock_widget(self.widget, name=self.options.optionsName)
|
|
File without changes
|
{auto_options_python-0.1.4 → auto_options_python-0.1.5}/.github/workflows/test_and_deploy.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/autooptions.array_util.rst
RENAMED
|
File without changes
|
{auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/autooptions.napari_util.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{auto_options_python-0.1.4 → auto_options_python-0.1.5}/docs/source/user/user_documentation.rst
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/auto_options_python.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/test_array_util.py
RENAMED
|
File without changes
|
{auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/test_napari_util.py
RENAMED
|
File without changes
|
{auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/test_options.py
RENAMED
|
File without changes
|
{auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/test_qtutil.py
RENAMED
|
File without changes
|
{auto_options_python-0.1.4 → auto_options_python-0.1.5}/src/autooptions/_tests/test_widget.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|