datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.1__py3-none-any.whl
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.
- datalab/__init__.py +35 -2
- datalab/adapters_metadata/__init__.py +31 -0
- datalab/adapters_metadata/base_adapter.py +316 -0
- datalab/adapters_metadata/common.py +422 -0
- datalab/adapters_metadata/geometry_adapter.py +98 -0
- datalab/adapters_metadata/table_adapter.py +84 -0
- datalab/adapters_plotpy/__init__.py +54 -0
- datalab/adapters_plotpy/annotations.py +124 -0
- datalab/adapters_plotpy/base.py +110 -0
- datalab/adapters_plotpy/converters.py +86 -0
- datalab/adapters_plotpy/factories.py +80 -0
- datalab/adapters_plotpy/objects/__init__.py +0 -0
- datalab/adapters_plotpy/objects/base.py +197 -0
- datalab/adapters_plotpy/objects/image.py +157 -0
- datalab/adapters_plotpy/objects/scalar.py +565 -0
- datalab/adapters_plotpy/objects/signal.py +264 -0
- datalab/adapters_plotpy/roi/__init__.py +0 -0
- datalab/adapters_plotpy/roi/base.py +146 -0
- datalab/adapters_plotpy/roi/factory.py +93 -0
- datalab/adapters_plotpy/roi/image.py +207 -0
- datalab/adapters_plotpy/roi/signal.py +72 -0
- datalab/app.py +98 -0
- datalab/config.py +817 -0
- datalab/control/__init__.py +0 -0
- datalab/control/baseproxy.py +776 -0
- datalab/control/proxy.py +343 -0
- datalab/control/remote.py +1005 -0
- datalab/data/doc/DataLab_en.pdf +0 -0
- datalab/data/doc/DataLab_fr.pdf +0 -0
- datalab/data/icons/analysis/delete_results.svg +109 -0
- datalab/data/icons/analysis/fw1e2.svg +156 -0
- datalab/data/icons/analysis/fwhm.svg +156 -0
- datalab/data/icons/analysis/histogram.svg +49 -0
- datalab/data/icons/analysis/peak_detect.svg +160 -0
- datalab/data/icons/analysis/plot_results.svg +151 -0
- datalab/data/icons/analysis/show_results.svg +83 -0
- datalab/data/icons/analysis/stats.svg +49 -0
- datalab/data/icons/analysis.svg +120 -0
- datalab/data/icons/apply.svg +3 -0
- datalab/data/icons/check_all.svg +15 -0
- datalab/data/icons/collapse.svg +44 -0
- datalab/data/icons/collapse_selection.svg +63 -0
- datalab/data/icons/console.svg +101 -0
- datalab/data/icons/create/1d-normal.svg +8 -0
- datalab/data/icons/create/1d-poisson.svg +9 -0
- datalab/data/icons/create/1d-uniform.svg +8 -0
- datalab/data/icons/create/1d-zero.svg +57 -0
- datalab/data/icons/create/2d-gaussian.svg +56 -0
- datalab/data/icons/create/2d-normal.svg +38 -0
- datalab/data/icons/create/2d-poisson.svg +38 -0
- datalab/data/icons/create/2d-ramp.svg +90 -0
- datalab/data/icons/create/2d-sinc.svg +62 -0
- datalab/data/icons/create/2d-uniform.svg +38 -0
- datalab/data/icons/create/2d-zero.svg +13 -0
- datalab/data/icons/create/checkerboard.svg +39 -0
- datalab/data/icons/create/cosine.svg +12 -0
- datalab/data/icons/create/exponential.svg +55 -0
- datalab/data/icons/create/gaussian.svg +12 -0
- datalab/data/icons/create/grating.svg +29 -0
- datalab/data/icons/create/linear_chirp.svg +7 -0
- datalab/data/icons/create/logistic.svg +7 -0
- datalab/data/icons/create/lorentzian.svg +12 -0
- datalab/data/icons/create/planck.svg +12 -0
- datalab/data/icons/create/polynomial.svg +7 -0
- datalab/data/icons/create/pulse.svg +12 -0
- datalab/data/icons/create/ring.svg +18 -0
- datalab/data/icons/create/sawtooth.svg +7 -0
- datalab/data/icons/create/siemens.svg +35 -0
- datalab/data/icons/create/sinc.svg +12 -0
- datalab/data/icons/create/sine.svg +7 -0
- datalab/data/icons/create/square.svg +7 -0
- datalab/data/icons/create/square_pulse.svg +7 -0
- datalab/data/icons/create/step.svg +7 -0
- datalab/data/icons/create/step_pulse.svg +12 -0
- datalab/data/icons/create/triangle.svg +7 -0
- datalab/data/icons/create/voigt.svg +12 -0
- datalab/data/icons/edit/annotations.svg +72 -0
- datalab/data/icons/edit/annotations_copy.svg +114 -0
- datalab/data/icons/edit/annotations_delete.svg +83 -0
- datalab/data/icons/edit/annotations_edit.svg +98 -0
- datalab/data/icons/edit/annotations_export.svg +85 -0
- datalab/data/icons/edit/annotations_import.svg +85 -0
- datalab/data/icons/edit/annotations_paste.svg +100 -0
- datalab/data/icons/edit/copy_titles.svg +109 -0
- datalab/data/icons/edit/delete.svg +84 -0
- datalab/data/icons/edit/delete_all.svg +214 -0
- datalab/data/icons/edit/duplicate.svg +64 -0
- datalab/data/icons/edit/goto_source.svg +60 -0
- datalab/data/icons/edit/metadata.svg +60 -0
- datalab/data/icons/edit/metadata_add.svg +80 -0
- datalab/data/icons/edit/metadata_copy.svg +96 -0
- datalab/data/icons/edit/metadata_delete.svg +62 -0
- datalab/data/icons/edit/metadata_export.svg +68 -0
- datalab/data/icons/edit/metadata_import.svg +68 -0
- datalab/data/icons/edit/metadata_paste.svg +79 -0
- datalab/data/icons/edit/move_down.svg +55 -0
- datalab/data/icons/edit/move_up.svg +54 -0
- datalab/data/icons/edit/new_group.svg +76 -0
- datalab/data/icons/edit/recompute.svg +60 -0
- datalab/data/icons/edit/rename.svg +49 -0
- datalab/data/icons/edit.svg +16 -0
- datalab/data/icons/expand.svg +44 -0
- datalab/data/icons/expand_selection.svg +63 -0
- datalab/data/icons/fit/cdf_fit.svg +56 -0
- datalab/data/icons/fit/exponential_fit.svg +55 -0
- datalab/data/icons/fit/gaussian_fit.svg +62 -0
- datalab/data/icons/fit/interactive_fit.svg +101 -0
- datalab/data/icons/fit/linear_fit.svg +57 -0
- datalab/data/icons/fit/lorentzian_fit.svg +209 -0
- datalab/data/icons/fit/multigaussian_fit.svg +85 -0
- datalab/data/icons/fit/multilorentzian_fit.svg +85 -0
- datalab/data/icons/fit/piecewiseexponential_fit.svg +209 -0
- datalab/data/icons/fit/planckian_fit.svg +62 -0
- datalab/data/icons/fit/polynomial_fit.svg +59 -0
- datalab/data/icons/fit/sigmoid_fit.svg +56 -0
- datalab/data/icons/fit/sinusoidal_fit.svg +72 -0
- datalab/data/icons/fit/twohalfgaussian_fit.svg +63 -0
- datalab/data/icons/fit/voigt_fit.svg +57 -0
- datalab/data/icons/group.svg +56 -0
- datalab/data/icons/h5/h5array.svg +59 -0
- datalab/data/icons/h5/h5attrs.svg +75 -0
- datalab/data/icons/h5/h5browser.svg +133 -0
- datalab/data/icons/h5/h5file.svg +69 -0
- datalab/data/icons/h5/h5group.svg +49 -0
- datalab/data/icons/h5/h5scalar.svg +1 -0
- datalab/data/icons/help_pdf.svg +46 -0
- datalab/data/icons/history.svg +7 -0
- datalab/data/icons/image.svg +135 -0
- datalab/data/icons/io/fileopen_directory.svg +60 -0
- datalab/data/icons/io/fileopen_h5.svg +84 -0
- datalab/data/icons/io/fileopen_ima.svg +187 -0
- datalab/data/icons/io/fileopen_py.svg +123 -0
- datalab/data/icons/io/fileopen_sig.svg +138 -0
- datalab/data/icons/io/filesave_h5.svg +97 -0
- datalab/data/icons/io/filesave_ima.svg +200 -0
- datalab/data/icons/io/filesave_py.svg +136 -0
- datalab/data/icons/io/filesave_sig.svg +151 -0
- datalab/data/icons/io/import_text.svg +144 -0
- datalab/data/icons/io/save_to_directory.svg +134 -0
- datalab/data/icons/io.svg +84 -0
- datalab/data/icons/libre-camera-flash-off.svg +1 -0
- datalab/data/icons/libre-camera-flash-on.svg +1 -0
- datalab/data/icons/libre-gui-about.svg +1 -0
- datalab/data/icons/libre-gui-action-delete.svg +1 -0
- datalab/data/icons/libre-gui-add.svg +1 -0
- datalab/data/icons/libre-gui-arrow-down.svg +1 -0
- datalab/data/icons/libre-gui-arrow-left.svg +1 -0
- datalab/data/icons/libre-gui-arrow-right.svg +1 -0
- datalab/data/icons/libre-gui-arrow-up.svg +1 -0
- datalab/data/icons/libre-gui-close.svg +40 -0
- datalab/data/icons/libre-gui-cogs.svg +1 -0
- datalab/data/icons/libre-gui-globe.svg +1 -0
- datalab/data/icons/libre-gui-help.svg +1 -0
- datalab/data/icons/libre-gui-link.svg +1 -0
- datalab/data/icons/libre-gui-menu.svg +1 -0
- datalab/data/icons/libre-gui-pencil.svg +1 -0
- datalab/data/icons/libre-gui-plugin.svg +1 -0
- datalab/data/icons/libre-gui-questions.svg +1 -0
- datalab/data/icons/libre-gui-settings.svg +1 -0
- datalab/data/icons/libre-gui-unlink.svg +1 -0
- datalab/data/icons/libre-tech-ram.svg +1 -0
- datalab/data/icons/libre-toolbox.svg +1 -0
- datalab/data/icons/logs.svg +1 -0
- datalab/data/icons/markers.svg +74 -0
- datalab/data/icons/menu.svg +13 -0
- datalab/data/icons/new_ima.svg +148 -0
- datalab/data/icons/new_sig.svg +123 -0
- datalab/data/icons/operations/abs.svg +116 -0
- datalab/data/icons/operations/arithmetic.svg +123 -0
- datalab/data/icons/operations/average.svg +124 -0
- datalab/data/icons/operations/complex_from_magnitude_phase.svg +116 -0
- datalab/data/icons/operations/complex_from_real_imag.svg +124 -0
- datalab/data/icons/operations/constant.svg +116 -0
- datalab/data/icons/operations/constant_add.svg +109 -0
- datalab/data/icons/operations/constant_divide.svg +109 -0
- datalab/data/icons/operations/constant_multiply.svg +109 -0
- datalab/data/icons/operations/constant_subtract.svg +109 -0
- datalab/data/icons/operations/convert_dtype.svg +117 -0
- datalab/data/icons/operations/convolution.svg +46 -0
- datalab/data/icons/operations/deconvolution.svg +57 -0
- datalab/data/icons/operations/derivative.svg +127 -0
- datalab/data/icons/operations/difference.svg +52 -0
- datalab/data/icons/operations/division.svg +139 -0
- datalab/data/icons/operations/exp.svg +116 -0
- datalab/data/icons/operations/flip_horizontally.svg +69 -0
- datalab/data/icons/operations/flip_vertically.svg +74 -0
- datalab/data/icons/operations/im.svg +124 -0
- datalab/data/icons/operations/integral.svg +50 -0
- datalab/data/icons/operations/inverse.svg +143 -0
- datalab/data/icons/operations/log10.svg +109 -0
- datalab/data/icons/operations/phase.svg +116 -0
- datalab/data/icons/operations/power.svg +118 -0
- datalab/data/icons/operations/product.svg +124 -0
- datalab/data/icons/operations/profile.svg +379 -0
- datalab/data/icons/operations/profile_average.svg +399 -0
- datalab/data/icons/operations/profile_radial.svg +261 -0
- datalab/data/icons/operations/profile_segment.svg +262 -0
- datalab/data/icons/operations/quadratic_difference.svg +84 -0
- datalab/data/icons/operations/re.svg +124 -0
- datalab/data/icons/operations/rotate_left.svg +72 -0
- datalab/data/icons/operations/rotate_right.svg +72 -0
- datalab/data/icons/operations/signals_to_image.svg +314 -0
- datalab/data/icons/operations/sqrt.svg +110 -0
- datalab/data/icons/operations/std.svg +124 -0
- datalab/data/icons/operations/sum.svg +102 -0
- datalab/data/icons/play_demo.svg +9 -0
- datalab/data/icons/processing/axis_transform.svg +62 -0
- datalab/data/icons/processing/bandpass.svg +79 -0
- datalab/data/icons/processing/bandstop.svg +71 -0
- datalab/data/icons/processing/binning.svg +126 -0
- datalab/data/icons/processing/clip.svg +119 -0
- datalab/data/icons/processing/detrending.svg +173 -0
- datalab/data/icons/processing/distribute_on_grid.svg +769 -0
- datalab/data/icons/processing/edge_detection.svg +46 -0
- datalab/data/icons/processing/erase.svg +1 -0
- datalab/data/icons/processing/exposure.svg +143 -0
- datalab/data/icons/processing/fourier.svg +104 -0
- datalab/data/icons/processing/highpass.svg +59 -0
- datalab/data/icons/processing/interpolation.svg +71 -0
- datalab/data/icons/processing/level_adjustment.svg +70 -0
- datalab/data/icons/processing/lowpass.svg +60 -0
- datalab/data/icons/processing/morphology.svg +49 -0
- datalab/data/icons/processing/noise_addition.svg +114 -0
- datalab/data/icons/processing/noise_reduction.svg +38 -0
- datalab/data/icons/processing/normalize.svg +84 -0
- datalab/data/icons/processing/offset_correction.svg +131 -0
- datalab/data/icons/processing/resampling1d.svg +101 -0
- datalab/data/icons/processing/resampling2d.svg +240 -0
- datalab/data/icons/processing/reset_positions.svg +185 -0
- datalab/data/icons/processing/resize.svg +9 -0
- datalab/data/icons/processing/reverse_signal_x.svg +171 -0
- datalab/data/icons/processing/stability.svg +11 -0
- datalab/data/icons/processing/swap_x_y.svg +65 -0
- datalab/data/icons/processing/thresholding.svg +63 -0
- datalab/data/icons/processing/windowing.svg +45 -0
- datalab/data/icons/properties.svg +26 -0
- datalab/data/icons/reset.svg +9 -0
- datalab/data/icons/restore.svg +40 -0
- datalab/data/icons/roi/roi.svg +76 -0
- datalab/data/icons/roi/roi_coordinate.svg +78 -0
- datalab/data/icons/roi/roi_copy.svg +112 -0
- datalab/data/icons/roi/roi_delete.svg +81 -0
- datalab/data/icons/roi/roi_export.svg +87 -0
- datalab/data/icons/roi/roi_graphical.svg +78 -0
- datalab/data/icons/roi/roi_grid.svg +67 -0
- datalab/data/icons/roi/roi_ima.svg +188 -0
- datalab/data/icons/roi/roi_import.svg +87 -0
- datalab/data/icons/roi/roi_new.svg +81 -0
- datalab/data/icons/roi/roi_new_circle.svg +95 -0
- datalab/data/icons/roi/roi_new_polygon.svg +110 -0
- datalab/data/icons/roi/roi_new_rectangle.svg +70 -0
- datalab/data/icons/roi/roi_paste.svg +98 -0
- datalab/data/icons/roi/roi_sig.svg +124 -0
- datalab/data/icons/shapes.svg +134 -0
- datalab/data/icons/signal.svg +103 -0
- datalab/data/icons/table.svg +85 -0
- datalab/data/icons/table_unavailable.svg +102 -0
- datalab/data/icons/to_signal.svg +124 -0
- datalab/data/icons/tour/next.svg +44 -0
- datalab/data/icons/tour/previous.svg +44 -0
- datalab/data/icons/tour/rewind.svg +51 -0
- datalab/data/icons/tour/stop.svg +47 -0
- datalab/data/icons/tour/tour.svg +16 -0
- datalab/data/icons/uncheck_all.svg +78 -0
- datalab/data/icons/view/curve_antialiasing.svg +50 -0
- datalab/data/icons/view/new_window.svg +98 -0
- datalab/data/icons/view/refresh-auto.svg +57 -0
- datalab/data/icons/view/refresh-manual.svg +51 -0
- datalab/data/icons/view/reset_curve_styles.svg +96 -0
- datalab/data/icons/view/show_first.svg +55 -0
- datalab/data/icons/view/show_titles.svg +46 -0
- datalab/data/icons/visualization.svg +51 -0
- datalab/data/logo/DataLab-Banner-150.png +0 -0
- datalab/data/logo/DataLab-Banner-200.png +0 -0
- datalab/data/logo/DataLab-Banner2-100.png +0 -0
- datalab/data/logo/DataLab-Splash.png +0 -0
- datalab/data/logo/DataLab-watermark.png +0 -0
- datalab/data/logo/DataLab.svg +83 -0
- datalab/data/tests/reordering_test.h5 +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot1.jpg +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot2.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_13.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_18.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_23.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_30.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_35.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_40.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_45.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_50.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_55.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_60.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_65.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_70.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_75.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_80.jpg +0 -0
- datalab/env.py +542 -0
- datalab/gui/__init__.py +89 -0
- datalab/gui/actionhandler.py +1701 -0
- datalab/gui/docks.py +473 -0
- datalab/gui/h5io.py +150 -0
- datalab/gui/macroeditor.py +310 -0
- datalab/gui/main.py +2081 -0
- datalab/gui/newobject.py +217 -0
- datalab/gui/objectview.py +766 -0
- datalab/gui/panel/__init__.py +48 -0
- datalab/gui/panel/base.py +3254 -0
- datalab/gui/panel/image.py +157 -0
- datalab/gui/panel/macro.py +607 -0
- datalab/gui/panel/signal.py +164 -0
- datalab/gui/plothandler.py +800 -0
- datalab/gui/processor/__init__.py +84 -0
- datalab/gui/processor/base.py +2456 -0
- datalab/gui/processor/catcher.py +75 -0
- datalab/gui/processor/image.py +1214 -0
- datalab/gui/processor/signal.py +755 -0
- datalab/gui/profiledialog.py +333 -0
- datalab/gui/roieditor.py +633 -0
- datalab/gui/roigrideditor.py +208 -0
- datalab/gui/settings.py +612 -0
- datalab/gui/tour.py +908 -0
- datalab/h5/__init__.py +12 -0
- datalab/h5/common.py +314 -0
- datalab/h5/generic.py +580 -0
- datalab/h5/native.py +39 -0
- datalab/h5/utils.py +95 -0
- datalab/objectmodel.py +640 -0
- datalab/plugins/_readme_.txt +9 -0
- datalab/plugins/datalab_imageformats.py +175 -0
- datalab/plugins/datalab_testdata.py +190 -0
- datalab/plugins.py +355 -0
- datalab/tests/__init__.py +199 -0
- datalab/tests/backbone/__init__.py +1 -0
- datalab/tests/backbone/config_unit_test.py +170 -0
- datalab/tests/backbone/config_versioning_unit_test.py +34 -0
- datalab/tests/backbone/dictlistserial_app_test.py +38 -0
- datalab/tests/backbone/errorcatcher_unit_test.py +69 -0
- datalab/tests/backbone/errormsgbox_unit_test.py +50 -0
- datalab/tests/backbone/execenv_unit.py +262 -0
- datalab/tests/backbone/loadtest_gdi.py +147 -0
- datalab/tests/backbone/long_callback.py +96 -0
- datalab/tests/backbone/main_app_test.py +137 -0
- datalab/tests/backbone/memory_leak.py +43 -0
- datalab/tests/backbone/procisolation1_unit.py +128 -0
- datalab/tests/backbone/procisolation2_unit.py +171 -0
- datalab/tests/backbone/procisolation_unit_test.py +22 -0
- datalab/tests/backbone/profiling_app.py +27 -0
- datalab/tests/backbone/strings_unit_test.py +65 -0
- datalab/tests/backbone/title_formatting_unit_test.py +82 -0
- datalab/tests/conftest.py +131 -0
- datalab/tests/features/__init__.py +1 -0
- datalab/tests/features/applauncher/__init__.py +1 -0
- datalab/tests/features/applauncher/launcher1_app_test.py +28 -0
- datalab/tests/features/applauncher/launcher2_app_test.py +30 -0
- datalab/tests/features/common/__init__.py +1 -0
- datalab/tests/features/common/add_metadata_app_test.py +134 -0
- datalab/tests/features/common/add_metadata_unit_test.py +267 -0
- datalab/tests/features/common/annotations_management_unit_test.py +152 -0
- datalab/tests/features/common/auto_analysis_recompute_unit_test.py +240 -0
- datalab/tests/features/common/createobject_unit_test.py +50 -0
- datalab/tests/features/common/geometry_results_app_test.py +135 -0
- datalab/tests/features/common/interactive_processing_test.py +1109 -0
- datalab/tests/features/common/io_app_test.py +75 -0
- datalab/tests/features/common/large_results_app_test.py +187 -0
- datalab/tests/features/common/metadata_all_patterns_test.py +103 -0
- datalab/tests/features/common/metadata_app_test.py +139 -0
- datalab/tests/features/common/metadata_io_unit_test.py +60 -0
- datalab/tests/features/common/misc_app_test.py +236 -0
- datalab/tests/features/common/multiple_geometry_results_unit_test.py +122 -0
- datalab/tests/features/common/multiple_table_results_unit_test.py +64 -0
- datalab/tests/features/common/operation_modes_app_test.py +392 -0
- datalab/tests/features/common/plot_results_app_test.py +278 -0
- datalab/tests/features/common/reorder_app_test.py +75 -0
- datalab/tests/features/common/result_deletion_unit_test.py +96 -0
- datalab/tests/features/common/result_merged_label_unit_test.py +154 -0
- datalab/tests/features/common/result_shape_settings_unit_test.py +223 -0
- datalab/tests/features/common/roi_plotitem_unit_test.py +64 -0
- datalab/tests/features/common/roieditor_unit_test.py +102 -0
- datalab/tests/features/common/save_to_dir_app_test.py +163 -0
- datalab/tests/features/common/save_to_dir_unit_test.py +474 -0
- datalab/tests/features/common/stat_app_test.py +40 -0
- datalab/tests/features/common/stats_tools_unit_test.py +77 -0
- datalab/tests/features/common/table_results_app_test.py +52 -0
- datalab/tests/features/common/textimport_unit_test.py +131 -0
- datalab/tests/features/common/uuid_preservation_test.py +281 -0
- datalab/tests/features/common/worker_unit_test.py +402 -0
- datalab/tests/features/control/__init__.py +1 -0
- datalab/tests/features/control/connect_dialog.py +28 -0
- datalab/tests/features/control/embedded1_unit_test.py +304 -0
- datalab/tests/features/control/embedded2_unit_test.py +52 -0
- datalab/tests/features/control/remoteclient_app_test.py +219 -0
- datalab/tests/features/control/remoteclient_unit.py +75 -0
- datalab/tests/features/control/simpleclient_unit_test.py +321 -0
- datalab/tests/features/hdf5/__init__.py +1 -0
- datalab/tests/features/hdf5/h5browser1_unit_test.py +31 -0
- datalab/tests/features/hdf5/h5browser2_unit.py +55 -0
- datalab/tests/features/hdf5/h5browser_app_test.py +77 -0
- datalab/tests/features/hdf5/h5import_app_test.py +25 -0
- datalab/tests/features/hdf5/h5importer_app_test.py +34 -0
- datalab/tests/features/image/__init__.py +1 -0
- datalab/tests/features/image/annotations_app_test.py +28 -0
- datalab/tests/features/image/annotations_unit_test.py +80 -0
- datalab/tests/features/image/average_app_test.py +46 -0
- datalab/tests/features/image/background_dialog_test.py +70 -0
- datalab/tests/features/image/blobs_app_test.py +50 -0
- datalab/tests/features/image/contour_app_test.py +42 -0
- datalab/tests/features/image/contour_fabryperot_app_test.py +51 -0
- datalab/tests/features/image/denoise_app_test.py +31 -0
- datalab/tests/features/image/distribute_on_grid_app_test.py +95 -0
- datalab/tests/features/image/edges_app_test.py +31 -0
- datalab/tests/features/image/erase_app_test.py +21 -0
- datalab/tests/features/image/fft2d_app_test.py +27 -0
- datalab/tests/features/image/flatfield_app_test.py +40 -0
- datalab/tests/features/image/geometry_transform_unit_test.py +396 -0
- datalab/tests/features/image/imagetools_app_test.py +51 -0
- datalab/tests/features/image/imagetools_unit_test.py +27 -0
- datalab/tests/features/image/load_app_test.py +73 -0
- datalab/tests/features/image/morph_app_test.py +32 -0
- datalab/tests/features/image/offsetcorrection_app_test.py +30 -0
- datalab/tests/features/image/peak2d_app_test.py +53 -0
- datalab/tests/features/image/profile_app_test.py +73 -0
- datalab/tests/features/image/profile_dialog_test.py +56 -0
- datalab/tests/features/image/roi_app_test.py +98 -0
- datalab/tests/features/image/roi_circ_app_test.py +62 -0
- datalab/tests/features/image/roi_manipulation_app_test.py +268 -0
- datalab/tests/features/image/roigrid_unit_test.py +60 -0
- datalab/tests/features/image/side_by_side_app_test.py +52 -0
- datalab/tests/features/macro/__init__.py +1 -0
- datalab/tests/features/macro/macro_app_test.py +28 -0
- datalab/tests/features/macro/macroeditor_unit_test.py +102 -0
- datalab/tests/features/signal/__init__.py +1 -0
- datalab/tests/features/signal/baseline_dialog_test.py +53 -0
- datalab/tests/features/signal/deltax_dialog_unit_test.py +34 -0
- datalab/tests/features/signal/fft1d_app_test.py +26 -0
- datalab/tests/features/signal/filter_app_test.py +44 -0
- datalab/tests/features/signal/fitdialog_unit_test.py +50 -0
- datalab/tests/features/signal/interpolation_app_test.py +110 -0
- datalab/tests/features/signal/loadbigsignal_app_test.py +80 -0
- datalab/tests/features/signal/multiple_rois_unit_test.py +132 -0
- datalab/tests/features/signal/pulse_features_app_test.py +118 -0
- datalab/tests/features/signal/pulse_features_roi_app_test.py +55 -0
- datalab/tests/features/signal/roi_app_test.py +78 -0
- datalab/tests/features/signal/roi_manipulation_app_test.py +261 -0
- datalab/tests/features/signal/select_xy_cursor_unit_test.py +46 -0
- datalab/tests/features/signal/signalpeakdetection_dialog_test.py +33 -0
- datalab/tests/features/signal/signals_to_image_app_test.py +98 -0
- datalab/tests/features/signal/xarray_compat_app_test.py +128 -0
- datalab/tests/features/tour_unit_test.py +22 -0
- datalab/tests/features/utilities/__init__.py +1 -0
- datalab/tests/features/utilities/installconf_unit_test.py +21 -0
- datalab/tests/features/utilities/logview_app_test.py +21 -0
- datalab/tests/features/utilities/logview_error.py +24 -0
- datalab/tests/features/utilities/logview_unit_test.py +21 -0
- datalab/tests/features/utilities/memstatus_app_test.py +42 -0
- datalab/tests/features/utilities/settings_unit_test.py +88 -0
- datalab/tests/scenarios/__init__.py +1 -0
- datalab/tests/scenarios/beautiful_app.py +121 -0
- datalab/tests/scenarios/common.py +463 -0
- datalab/tests/scenarios/demo.py +212 -0
- datalab/tests/scenarios/example_app_test.py +47 -0
- datalab/tests/scenarios/scenario_h5_app_test.py +75 -0
- datalab/tests/scenarios/scenario_ima1_app_test.py +34 -0
- datalab/tests/scenarios/scenario_ima2_app_test.py +34 -0
- datalab/tests/scenarios/scenario_mac_app_test.py +58 -0
- datalab/tests/scenarios/scenario_sig1_app_test.py +36 -0
- datalab/tests/scenarios/scenario_sig2_app_test.py +35 -0
- datalab/utils/__init__.py +1 -0
- datalab/utils/conf.py +304 -0
- datalab/utils/dephash.py +105 -0
- datalab/utils/qthelpers.py +633 -0
- datalab/utils/strings.py +34 -0
- datalab/utils/tests.py +0 -0
- datalab/widgets/__init__.py +1 -0
- datalab/widgets/connection.py +138 -0
- datalab/widgets/filedialog.py +91 -0
- datalab/widgets/fileviewer.py +84 -0
- datalab/widgets/fitdialog.py +788 -0
- datalab/widgets/h5browser.py +1048 -0
- datalab/widgets/imagebackground.py +111 -0
- datalab/widgets/instconfviewer.py +175 -0
- datalab/widgets/logviewer.py +80 -0
- datalab/widgets/signalbaseline.py +90 -0
- datalab/widgets/signalcursor.py +208 -0
- datalab/widgets/signaldeltax.py +151 -0
- datalab/widgets/signalpeak.py +199 -0
- datalab/widgets/status.py +249 -0
- datalab/widgets/textimport.py +786 -0
- datalab/widgets/warningerror.py +223 -0
- datalab/widgets/wizard.py +286 -0
- datalab_platform-1.0.1.dist-info/METADATA +121 -0
- datalab_platform-1.0.1.dist-info/RECORD +494 -0
- datalab_platform-0.0.1.dev0.dist-info/METADATA +0 -67
- datalab_platform-0.0.1.dev0.dist-info/RECORD +0 -7
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg6"
|
|
9
|
+
sodipodi:docname="fileopen_sig.svg"
|
|
10
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs10">
|
|
18
|
+
<linearGradient
|
|
19
|
+
id="BlueGreen"
|
|
20
|
+
gradientUnits="userSpaceOnUse"
|
|
21
|
+
y1="20"
|
|
22
|
+
x1="0"
|
|
23
|
+
y2="180"
|
|
24
|
+
x2="0"
|
|
25
|
+
xlink:href="#linearGradientStops"
|
|
26
|
+
gradientTransform="matrix(0.01432918,0,0,0.01432918,4.3523275,6.6499205)" />
|
|
27
|
+
<linearGradient
|
|
28
|
+
id="linearGradientStops">
|
|
29
|
+
<stop
|
|
30
|
+
offset="0"
|
|
31
|
+
style="stop-color:#0515fe"
|
|
32
|
+
id="stop2" />
|
|
33
|
+
<stop
|
|
34
|
+
offset="1"
|
|
35
|
+
style="stop-color:#2cab28"
|
|
36
|
+
id="stop4" />
|
|
37
|
+
</linearGradient>
|
|
38
|
+
</defs>
|
|
39
|
+
<sodipodi:namedview
|
|
40
|
+
id="namedview8"
|
|
41
|
+
pagecolor="#ffffff"
|
|
42
|
+
bordercolor="#666666"
|
|
43
|
+
borderopacity="1.0"
|
|
44
|
+
inkscape:pageshadow="2"
|
|
45
|
+
inkscape:pageopacity="0.0"
|
|
46
|
+
inkscape:pagecheckerboard="0"
|
|
47
|
+
showgrid="false"
|
|
48
|
+
inkscape:zoom="59.428571"
|
|
49
|
+
inkscape:cx="2.6838943"
|
|
50
|
+
inkscape:cy="7.0504808"
|
|
51
|
+
inkscape:window-width="1920"
|
|
52
|
+
inkscape:window-height="1017"
|
|
53
|
+
inkscape:window-x="-8"
|
|
54
|
+
inkscape:window-y="-8"
|
|
55
|
+
inkscape:window-maximized="1"
|
|
56
|
+
inkscape:current-layer="svg6"
|
|
57
|
+
inkscape:showpageshadow="2"
|
|
58
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
59
|
+
<g
|
|
60
|
+
id="g447"
|
|
61
|
+
transform="matrix(1.0801283,0,0,1.0678153,-0.58493595,-0.53618489)">
|
|
62
|
+
<path
|
|
63
|
+
fill="#ffa000"
|
|
64
|
+
d="M 10.672764,3.5860832 H 6.1208753 L 4.982903,2.4481109 H 2.1379723 c -0.6258847,0 -1.1379722,0.5120875 -1.1379722,1.1379723 v 6.8278338 c 0,0.625885 0.5120875,1.137972 1.1379722,1.137972 h 8.8192857 c 0.483638,0 0.853479,-0.369841 0.853479,-0.853479 V 4.7240554 c 0,-0.6258847 -0.512088,-1.1379722 -1.137973,-1.1379722 z"
|
|
65
|
+
id="path2" />
|
|
66
|
+
<path
|
|
67
|
+
fill="#ffca28"
|
|
68
|
+
d="M 11.867635,5.2930416 H 4.2147717 c -0.5405368,0 -1.024175,0.3982903 -1.1095229,0.9388271 L 2.1379723,11.551889 h 9.0184307 c 0.540536,0 1.024175,-0.39829 1.109523,-0.938827 L 12.977158,6.630159 C 13.119405,5.9473756 12.578868,5.2930416 11.867635,5.2930416 Z"
|
|
69
|
+
id="path4" />
|
|
70
|
+
</g>
|
|
71
|
+
<g
|
|
72
|
+
id="g1230"
|
|
73
|
+
transform="matrix(0.63878459,0,-0.10465997,0.63878459,3.9343181,4.0174647)">
|
|
74
|
+
<rect
|
|
75
|
+
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.57074;stroke-opacity:1"
|
|
76
|
+
id="rect10749-5"
|
|
77
|
+
width="7.8104901"
|
|
78
|
+
height="7.8187361"
|
|
79
|
+
x="3.3771245"
|
|
80
|
+
y="3.1234901"
|
|
81
|
+
transform="matrix(1,0,-0.04725952,0.99888264,0,0)" />
|
|
82
|
+
<rect
|
|
83
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.402"
|
|
84
|
+
id="rect28089"
|
|
85
|
+
width="0.47309414"
|
|
86
|
+
height="7.6168156"
|
|
87
|
+
x="6.7652464"
|
|
88
|
+
y="3.1933856" />
|
|
89
|
+
<rect
|
|
90
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.402"
|
|
91
|
+
id="rect28089-7"
|
|
92
|
+
width="0.47309414"
|
|
93
|
+
height="7.6168156"
|
|
94
|
+
x="6.6469727"
|
|
95
|
+
y="-10.810202"
|
|
96
|
+
transform="rotate(90)" />
|
|
97
|
+
<path
|
|
98
|
+
style="fill:none;fill-opacity:0.817241;stroke:#ff0000;stroke-width:0.402;stroke-opacity:1"
|
|
99
|
+
d="m 3.5245514,10.005941 c 0,0.09462 1.5139012,-0.5677129 1.5139012,-0.5677129 L 5.9846409,8.2081834 7.0727574,5.653475 8.2554928,4.4234302 10.195179,3.8557173"
|
|
100
|
+
id="path32265" />
|
|
101
|
+
<circle
|
|
102
|
+
cx="8.2457867"
|
|
103
|
+
cy="4.4486394"
|
|
104
|
+
r="0.58283854"
|
|
105
|
+
id="circle20-2"
|
|
106
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
107
|
+
<circle
|
|
108
|
+
cx="7.0560775"
|
|
109
|
+
cy="5.641458"
|
|
110
|
+
r="0.58283854"
|
|
111
|
+
id="circle22-3"
|
|
112
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
113
|
+
<circle
|
|
114
|
+
cx="6.0082951"
|
|
115
|
+
cy="8.2554922"
|
|
116
|
+
r="0.58283854"
|
|
117
|
+
id="circle24-6"
|
|
118
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
119
|
+
<circle
|
|
120
|
+
cx="5.0078225"
|
|
121
|
+
cy="9.4161282"
|
|
122
|
+
r="0.58283854"
|
|
123
|
+
id="circle26-0"
|
|
124
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
125
|
+
<circle
|
|
126
|
+
cx="3.534256"
|
|
127
|
+
cy="10.017958"
|
|
128
|
+
r="0.58283854"
|
|
129
|
+
id="circle28-1"
|
|
130
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
131
|
+
<circle
|
|
132
|
+
cx="10.147869"
|
|
133
|
+
cy="3.9030263"
|
|
134
|
+
r="0.58283854"
|
|
135
|
+
id="circle28-1-2"
|
|
136
|
+
style="fill:#ff5555;stroke-width:0.19428" />
|
|
137
|
+
</g>
|
|
138
|
+
</svg>
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg14"
|
|
9
|
+
sodipodi:docname="filesave_h5.svg"
|
|
10
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs18">
|
|
18
|
+
<linearGradient
|
|
19
|
+
id="BlueGreen"
|
|
20
|
+
gradientUnits="userSpaceOnUse"
|
|
21
|
+
y1="20"
|
|
22
|
+
x1="0"
|
|
23
|
+
y2="180"
|
|
24
|
+
x2="0"
|
|
25
|
+
xlink:href="#linearGradientStops"
|
|
26
|
+
gradientTransform="matrix(0.01229036,0,0,0.01229036,4.0293076,3.003469)" />
|
|
27
|
+
<linearGradient
|
|
28
|
+
id="linearGradientStops">
|
|
29
|
+
<stop
|
|
30
|
+
offset="0"
|
|
31
|
+
style="stop-color:#0515fe"
|
|
32
|
+
id="stop2" />
|
|
33
|
+
<stop
|
|
34
|
+
offset="1"
|
|
35
|
+
style="stop-color:#2cab28"
|
|
36
|
+
id="stop4" />
|
|
37
|
+
</linearGradient>
|
|
38
|
+
<linearGradient
|
|
39
|
+
id="BlueGreen-3"
|
|
40
|
+
gradientUnits="userSpaceOnUse"
|
|
41
|
+
y1="20"
|
|
42
|
+
x1="0"
|
|
43
|
+
y2="180"
|
|
44
|
+
x2="0"
|
|
45
|
+
xlink:href="#linearGradientStops"
|
|
46
|
+
gradientTransform="matrix(0.0153819,0,0,0.0153819,3.2765568,2.3648137)" />
|
|
47
|
+
</defs>
|
|
48
|
+
<sodipodi:namedview
|
|
49
|
+
id="namedview16"
|
|
50
|
+
pagecolor="#ffffff"
|
|
51
|
+
bordercolor="#666666"
|
|
52
|
+
borderopacity="1.0"
|
|
53
|
+
inkscape:pageshadow="2"
|
|
54
|
+
inkscape:pageopacity="0.0"
|
|
55
|
+
inkscape:pagecheckerboard="0"
|
|
56
|
+
showgrid="false"
|
|
57
|
+
inkscape:zoom="59.428571"
|
|
58
|
+
inkscape:cx="2.7007212"
|
|
59
|
+
inkscape:cy="7.0504808"
|
|
60
|
+
inkscape:window-width="1920"
|
|
61
|
+
inkscape:window-height="1017"
|
|
62
|
+
inkscape:window-x="-8"
|
|
63
|
+
inkscape:window-y="-8"
|
|
64
|
+
inkscape:window-maximized="1"
|
|
65
|
+
inkscape:current-layer="svg14"
|
|
66
|
+
inkscape:showpageshadow="2"
|
|
67
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
68
|
+
<g
|
|
69
|
+
id="g973"
|
|
70
|
+
transform="translate(-2.307e-4,-2.307e-4)">
|
|
71
|
+
<path
|
|
72
|
+
d="M 12.75,1.2692307 V 12.75 H 2.863782 L 1.2692307,11.155448 V 1.2692307 Z"
|
|
73
|
+
id="path2" fill="#808080" fill-opacity="1" />
|
|
74
|
+
<path
|
|
75
|
+
fill="#ffffff"
|
|
76
|
+
d="m 2.2259614,2.2259614 c 0,-0.1763573 0.1425529,-0.3189101 0.3189103,-0.3189101 h 8.9294863 c 0.176358,0 0.318911,0.1425528 0.318911,0.3189101 v 4.4647434 c 0,0.1763574 -0.142553,0.3189103 -0.318911,0.3189103 H 2.5448717 c -0.1763574,0 -0.3189103,-0.1425529 -0.3189103,-0.3189103 z"
|
|
77
|
+
id="path4"
|
|
78
|
+
style="stroke-width:0.956731" />
|
|
79
|
+
<path
|
|
80
|
+
d="M 11.793269,12.75 V 9.560897 c 0,-0.3520769 -0.285744,-0.6378204 -0.637821,-0.6378204 H 6.3717946 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
81
|
+
id="path8"
|
|
82
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
83
|
+
<path
|
|
84
|
+
fill="#b0bec5"
|
|
85
|
+
d="M 9.8798073,12.75 V 9.560897 c 0,-0.3520769 -0.2857436,-0.6378204 -0.6378206,-0.6378204 H 4.4583332 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
86
|
+
id="path10"
|
|
87
|
+
style="stroke-width:0.956731" />
|
|
88
|
+
<path
|
|
89
|
+
d="M 6.3717946,12.112179 H 5.0961536 V 9.560897 h 1.275641 z"
|
|
90
|
+
id="path12"
|
|
91
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
92
|
+
</g>
|
|
93
|
+
<path
|
|
94
|
+
style="fill:url(#BlueGreen-3);stroke-width:0.0153819"
|
|
95
|
+
d="M 5.8314864,2.4304153 A 0.36920219,0.36920219 0 0 0 5.4678781,2.8048078 V 4.1166546 H 4.0909272 V 2.8099751 A 0.36920219,0.36920219 0 0 0 3.716206,2.435583 0.36920219,0.36920219 0 0 0 3.3525985,2.8099751 v 3.3739804 a 0.36920219,0.36920219 0 1 0 0.7383287,0 V 4.8549853 h 2.1152797 v -1.664188 c 1.1214386,0.1059556 1.5573469,0.749 1.5521874,1.3335974 -0.00572,0.6447505 -0.5436979,1.348515 -1.9424423,1.3035859 A 0.36920219,0.36920219 0 1 0 5.792232,6.5659208 C 6.8192654,6.598908 7.5978112,6.2355528 8.0500054,5.7006892 v 0.5136111 a 0.36920219,0.36920219 0 1 0 0.7383296,0 v -1.340809 h 1.22986 a 0.36920219,0.36920219 0 1 0 0,-0.7383303 H 8.7883529 V 3.1739731 h 1.7271561 a 0.36920219,0.36920219 0 1 0 0,-0.7383303 H 5.8973978 a 0.36920219,0.36920219 0 0 0 -0.065922,-0.00522 z"
|
|
96
|
+
id="path10-2" />
|
|
97
|
+
</svg>
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg14"
|
|
9
|
+
sodipodi:docname="filesave_ima.svg"
|
|
10
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs18">
|
|
18
|
+
<linearGradient
|
|
19
|
+
id="BlueGreen"
|
|
20
|
+
gradientUnits="userSpaceOnUse"
|
|
21
|
+
y1="20"
|
|
22
|
+
x1="0"
|
|
23
|
+
y2="180"
|
|
24
|
+
x2="0"
|
|
25
|
+
xlink:href="#linearGradientStops"
|
|
26
|
+
gradientTransform="matrix(0.01229036,0,0,0.01229036,4.0293076,3.003469)" />
|
|
27
|
+
<linearGradient
|
|
28
|
+
id="linearGradientStops">
|
|
29
|
+
<stop
|
|
30
|
+
offset="0"
|
|
31
|
+
style="stop-color:#0515fe"
|
|
32
|
+
id="stop2" />
|
|
33
|
+
<stop
|
|
34
|
+
offset="1"
|
|
35
|
+
style="stop-color:#2cab28"
|
|
36
|
+
id="stop4" />
|
|
37
|
+
</linearGradient>
|
|
38
|
+
</defs>
|
|
39
|
+
<sodipodi:namedview
|
|
40
|
+
id="namedview16"
|
|
41
|
+
pagecolor="#ffffff"
|
|
42
|
+
bordercolor="#666666"
|
|
43
|
+
borderopacity="1.0"
|
|
44
|
+
inkscape:pageshadow="2"
|
|
45
|
+
inkscape:pageopacity="0.0"
|
|
46
|
+
inkscape:pagecheckerboard="0"
|
|
47
|
+
showgrid="false"
|
|
48
|
+
inkscape:zoom="59.428571"
|
|
49
|
+
inkscape:cx="2.7007212"
|
|
50
|
+
inkscape:cy="7.0504808"
|
|
51
|
+
inkscape:window-width="1920"
|
|
52
|
+
inkscape:window-height="1017"
|
|
53
|
+
inkscape:window-x="-8"
|
|
54
|
+
inkscape:window-y="-8"
|
|
55
|
+
inkscape:window-maximized="1"
|
|
56
|
+
inkscape:current-layer="svg14"
|
|
57
|
+
inkscape:showpageshadow="2"
|
|
58
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
59
|
+
<g
|
|
60
|
+
id="g973"
|
|
61
|
+
transform="translate(-2.307e-4,-2.307e-4)">
|
|
62
|
+
<path
|
|
63
|
+
d="M 12.75,1.2692307 V 12.75 H 2.863782 L 1.2692307,11.155448 V 1.2692307 Z"
|
|
64
|
+
id="path2" fill="#808080" fill-opacity="1" />
|
|
65
|
+
<path
|
|
66
|
+
fill="#ffffff"
|
|
67
|
+
d="m 2.2259614,2.2259614 c 0,-0.1763573 0.1425529,-0.3189101 0.3189103,-0.3189101 h 8.9294863 c 0.176358,0 0.318911,0.1425528 0.318911,0.3189101 v 4.4647434 c 0,0.1763574 -0.142553,0.3189103 -0.318911,0.3189103 H 2.5448717 c -0.1763574,0 -0.3189103,-0.1425529 -0.3189103,-0.3189103 z"
|
|
68
|
+
id="path4"
|
|
69
|
+
style="stroke-width:0.956731" />
|
|
70
|
+
<path
|
|
71
|
+
d="M 11.793269,12.75 V 9.560897 c 0,-0.3520769 -0.285744,-0.6378204 -0.637821,-0.6378204 H 6.3717946 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
72
|
+
id="path8"
|
|
73
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
74
|
+
<path
|
|
75
|
+
fill="#b0bec5"
|
|
76
|
+
d="M 9.8798073,12.75 V 9.560897 c 0,-0.3520769 -0.2857436,-0.6378204 -0.6378206,-0.6378204 H 4.4583332 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
77
|
+
id="path10"
|
|
78
|
+
style="stroke-width:0.956731" />
|
|
79
|
+
<path
|
|
80
|
+
d="M 6.3717946,12.112179 H 5.0961536 V 9.560897 h 1.275641 z"
|
|
81
|
+
id="path12"
|
|
82
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
83
|
+
</g>
|
|
84
|
+
<g
|
|
85
|
+
id="g22811"
|
|
86
|
+
transform="matrix(0.62768095,0,-0.02969522,0.62768095,2.9689011,0.32575786)">
|
|
87
|
+
<rect
|
|
88
|
+
style="fill:#0060ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
89
|
+
id="rect10749"
|
|
90
|
+
width="2"
|
|
91
|
+
height="2"
|
|
92
|
+
x="2.5999999"
|
|
93
|
+
y="2.5999999" />
|
|
94
|
+
<rect
|
|
95
|
+
style="fill:#ff7200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
96
|
+
id="rect10749-7"
|
|
97
|
+
width="2"
|
|
98
|
+
height="2"
|
|
99
|
+
x="2.5999999"
|
|
100
|
+
y="4.5999999" />
|
|
101
|
+
<rect
|
|
102
|
+
style="fill:#ff4300;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
103
|
+
id="rect10749-1"
|
|
104
|
+
width="2"
|
|
105
|
+
height="2"
|
|
106
|
+
x="4.5999999"
|
|
107
|
+
y="2.5999999" />
|
|
108
|
+
<rect
|
|
109
|
+
style="fill:#ffbb00;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
110
|
+
id="rect10749-7-5"
|
|
111
|
+
width="2"
|
|
112
|
+
height="2"
|
|
113
|
+
x="4.5999999"
|
|
114
|
+
y="4.5999999" />
|
|
115
|
+
<rect
|
|
116
|
+
style="fill:#00acff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
117
|
+
id="rect10749-8"
|
|
118
|
+
width="2"
|
|
119
|
+
height="2"
|
|
120
|
+
x="6.5999999"
|
|
121
|
+
y="2.5999999" />
|
|
122
|
+
<rect
|
|
123
|
+
style="fill:#ff3200;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
124
|
+
id="rect10749-7-0"
|
|
125
|
+
width="2"
|
|
126
|
+
height="2"
|
|
127
|
+
x="6.5999999"
|
|
128
|
+
y="4.5999999" />
|
|
129
|
+
<rect
|
|
130
|
+
style="fill:#0000fb;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
131
|
+
id="rect10749-1-4"
|
|
132
|
+
width="2"
|
|
133
|
+
height="2"
|
|
134
|
+
x="8.6000004"
|
|
135
|
+
y="2.5999999" />
|
|
136
|
+
<rect
|
|
137
|
+
style="fill:#28ffcf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
138
|
+
id="rect10749-7-5-5"
|
|
139
|
+
width="2"
|
|
140
|
+
height="2"
|
|
141
|
+
x="8.6000004"
|
|
142
|
+
y="4.5999999" />
|
|
143
|
+
<rect
|
|
144
|
+
style="fill:#1fffd8;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
145
|
+
id="rect10749-84"
|
|
146
|
+
width="2"
|
|
147
|
+
height="2"
|
|
148
|
+
x="2.5999999"
|
|
149
|
+
y="6.5999999" />
|
|
150
|
+
<rect
|
|
151
|
+
style="fill:#b80000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
152
|
+
id="rect10749-7-8"
|
|
153
|
+
width="2"
|
|
154
|
+
height="2"
|
|
155
|
+
x="2.5999999"
|
|
156
|
+
y="8.6000004" />
|
|
157
|
+
<rect
|
|
158
|
+
style="fill:#0000cf;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
159
|
+
id="rect10749-1-1"
|
|
160
|
+
width="2"
|
|
161
|
+
height="2"
|
|
162
|
+
x="4.5999999"
|
|
163
|
+
y="6.5999999" />
|
|
164
|
+
<rect
|
|
165
|
+
style="fill:#40ffb7;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
166
|
+
id="rect10749-7-5-4"
|
|
167
|
+
width="2"
|
|
168
|
+
height="2"
|
|
169
|
+
x="4.5999999"
|
|
170
|
+
y="8.6000004" />
|
|
171
|
+
<rect
|
|
172
|
+
style="fill:#c4ff33;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
173
|
+
id="rect10749-8-8"
|
|
174
|
+
width="2"
|
|
175
|
+
height="2"
|
|
176
|
+
x="6.5999999"
|
|
177
|
+
y="6.5999999" />
|
|
178
|
+
<rect
|
|
179
|
+
style="fill:#910000;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
180
|
+
id="rect10749-7-0-4"
|
|
181
|
+
width="2"
|
|
182
|
+
height="2"
|
|
183
|
+
x="6.5999999"
|
|
184
|
+
y="8.6000004" />
|
|
185
|
+
<rect
|
|
186
|
+
style="fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
187
|
+
id="rect10749-1-4-3"
|
|
188
|
+
width="2"
|
|
189
|
+
height="2"
|
|
190
|
+
x="8.6000004"
|
|
191
|
+
y="6.5999999" />
|
|
192
|
+
<rect
|
|
193
|
+
style="fill:#44ffb3;fill-opacity:1;stroke:none;stroke-width:0.402;stroke-opacity:1"
|
|
194
|
+
id="rect10749-7-5-5-3"
|
|
195
|
+
width="2"
|
|
196
|
+
height="2"
|
|
197
|
+
x="8.6000004"
|
|
198
|
+
y="8.6000004" />
|
|
199
|
+
</g>
|
|
200
|
+
</svg>
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
version="1.1"
|
|
8
|
+
id="svg14"
|
|
9
|
+
sodipodi:docname="filesave_py.svg"
|
|
10
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs18">
|
|
18
|
+
<linearGradient
|
|
19
|
+
id="BlueGreen"
|
|
20
|
+
gradientUnits="userSpaceOnUse"
|
|
21
|
+
y1="20"
|
|
22
|
+
x1="0"
|
|
23
|
+
y2="180"
|
|
24
|
+
x2="0"
|
|
25
|
+
xlink:href="#linearGradientStops"
|
|
26
|
+
gradientTransform="matrix(0.01229036,0,0,0.01229036,4.0293076,3.003469)" />
|
|
27
|
+
<linearGradient
|
|
28
|
+
id="linearGradientStops">
|
|
29
|
+
<stop
|
|
30
|
+
offset="0"
|
|
31
|
+
style="stop-color:#0515fe"
|
|
32
|
+
id="stop2" />
|
|
33
|
+
<stop
|
|
34
|
+
offset="1"
|
|
35
|
+
style="stop-color:#2cab28"
|
|
36
|
+
id="stop4" />
|
|
37
|
+
</linearGradient>
|
|
38
|
+
<linearGradient
|
|
39
|
+
x1="26.648937"
|
|
40
|
+
y1="20.603781"
|
|
41
|
+
x2="135.66525"
|
|
42
|
+
y2="114.39767"
|
|
43
|
+
id="linearGradient1478"
|
|
44
|
+
xlink:href="#linearGradient4689"
|
|
45
|
+
gradientUnits="userSpaceOnUse"
|
|
46
|
+
gradientTransform="matrix(0.562541,0,0,0.567972,-9.399749,-5.305317)" />
|
|
47
|
+
<linearGradient
|
|
48
|
+
id="linearGradient4689">
|
|
49
|
+
<stop
|
|
50
|
+
style="stop-color:#5a9fd4;stop-opacity:1"
|
|
51
|
+
offset="0"
|
|
52
|
+
id="stop4691" />
|
|
53
|
+
<stop
|
|
54
|
+
style="stop-color:#306998;stop-opacity:1"
|
|
55
|
+
offset="1"
|
|
56
|
+
id="stop4693" />
|
|
57
|
+
</linearGradient>
|
|
58
|
+
<linearGradient
|
|
59
|
+
x1="150.96111"
|
|
60
|
+
y1="192.35176"
|
|
61
|
+
x2="112.03144"
|
|
62
|
+
y2="137.27299"
|
|
63
|
+
id="linearGradient1475"
|
|
64
|
+
xlink:href="#linearGradient4671"
|
|
65
|
+
gradientUnits="userSpaceOnUse"
|
|
66
|
+
gradientTransform="matrix(0.562541,0,0,0.567972,-9.399749,-5.305317)" />
|
|
67
|
+
<linearGradient
|
|
68
|
+
id="linearGradient4671">
|
|
69
|
+
<stop
|
|
70
|
+
style="stop-color:#ffd43b;stop-opacity:1"
|
|
71
|
+
offset="0"
|
|
72
|
+
id="stop4673" />
|
|
73
|
+
<stop
|
|
74
|
+
style="stop-color:#ffe873;stop-opacity:1"
|
|
75
|
+
offset="1"
|
|
76
|
+
id="stop4675" />
|
|
77
|
+
</linearGradient>
|
|
78
|
+
</defs>
|
|
79
|
+
<sodipodi:namedview
|
|
80
|
+
id="namedview16"
|
|
81
|
+
pagecolor="#ffffff"
|
|
82
|
+
bordercolor="#666666"
|
|
83
|
+
borderopacity="1.0"
|
|
84
|
+
inkscape:pageshadow="2"
|
|
85
|
+
inkscape:pageopacity="0.0"
|
|
86
|
+
inkscape:pagecheckerboard="0"
|
|
87
|
+
showgrid="false"
|
|
88
|
+
inkscape:zoom="59.428571"
|
|
89
|
+
inkscape:cx="2.7007212"
|
|
90
|
+
inkscape:cy="7.0504808"
|
|
91
|
+
inkscape:window-width="1920"
|
|
92
|
+
inkscape:window-height="1017"
|
|
93
|
+
inkscape:window-x="-8"
|
|
94
|
+
inkscape:window-y="-8"
|
|
95
|
+
inkscape:window-maximized="1"
|
|
96
|
+
inkscape:current-layer="svg14"
|
|
97
|
+
inkscape:showpageshadow="2"
|
|
98
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
99
|
+
<g
|
|
100
|
+
id="g973"
|
|
101
|
+
transform="translate(-2.307e-4,-2.307e-4)">
|
|
102
|
+
<path
|
|
103
|
+
d="M 12.75,1.2692307 V 12.75 H 2.863782 L 1.2692307,11.155448 V 1.2692307 Z"
|
|
104
|
+
id="path2" fill="#808080" fill-opacity="1" />
|
|
105
|
+
<path
|
|
106
|
+
fill="#ffffff"
|
|
107
|
+
d="m 2.2259614,2.2259614 c 0,-0.1763573 0.1425529,-0.3189101 0.3189103,-0.3189101 h 8.9294863 c 0.176358,0 0.318911,0.1425528 0.318911,0.3189101 v 4.4647434 c 0,0.1763574 -0.142553,0.3189103 -0.318911,0.3189103 H 2.5448717 c -0.1763574,0 -0.3189103,-0.1425529 -0.3189103,-0.3189103 z"
|
|
108
|
+
id="path4"
|
|
109
|
+
style="stroke-width:0.956731" />
|
|
110
|
+
<path
|
|
111
|
+
d="M 11.793269,12.75 V 9.560897 c 0,-0.3520769 -0.285744,-0.6378204 -0.637821,-0.6378204 H 6.3717946 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
112
|
+
id="path8"
|
|
113
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
114
|
+
<path
|
|
115
|
+
fill="#b0bec5"
|
|
116
|
+
d="M 9.8798073,12.75 V 9.560897 c 0,-0.3520769 -0.2857436,-0.6378204 -0.6378206,-0.6378204 H 4.4583332 c -0.3520769,0 -0.6378205,0.2857435 -0.6378205,0.6378204 V 12.75 Z"
|
|
117
|
+
id="path10"
|
|
118
|
+
style="stroke-width:0.956731" />
|
|
119
|
+
<path
|
|
120
|
+
d="M 6.3717946,12.112179 H 5.0961536 V 9.560897 h 1.275641 z"
|
|
121
|
+
id="path12"
|
|
122
|
+
style="fill:#333333;stroke-width:0.956731" />
|
|
123
|
+
</g>
|
|
124
|
+
<g
|
|
125
|
+
id="g363"
|
|
126
|
+
transform="matrix(0.04304922,0,0,0.04304922,4.2821981,1.7739347)">
|
|
127
|
+
<path
|
|
128
|
+
id="path1948"
|
|
129
|
+
style="fill:url(#linearGradient1478);fill-opacity:1"
|
|
130
|
+
d="m 60.510156,6.3979729 c -4.583653,0.021298 -8.960939,0.4122177 -12.8125,1.09375 C 36.35144,9.4962267 34.291407,13.691825 34.291406,21.429223 v 10.21875 h 26.8125 v 3.40625 h -26.8125 -10.0625 c -7.792459,0 -14.6157592,4.683717 -16.7500002,13.59375 -2.46182,10.212966 -2.5710151,16.586023 0,27.25 1.9059283,7.937852 6.4575432,13.593748 14.2500002,13.59375 h 9.21875 v -12.25 c 0,-8.849902 7.657144,-16.656248 16.75,-16.65625 h 26.78125 c 7.454951,0 13.406253,-6.138164 13.40625,-13.625 v -25.53125 c 0,-7.266339 -6.12998,-12.7247775 -13.40625,-13.9375001 -4.605987,-0.7667253 -9.385097,-1.1150483 -13.96875,-1.09375 z m -14.5,8.2187501 c 2.769547,0 5.03125,2.298646 5.03125,5.125 -2e-6,2.816336 -2.261703,5.09375 -5.03125,5.09375 -2.779476,-1e-6 -5.03125,-2.277415 -5.03125,-5.09375 -1e-6,-2.826353 2.251774,-5.125 5.03125,-5.125 z" />
|
|
131
|
+
<path
|
|
132
|
+
id="path1950"
|
|
133
|
+
style="fill:url(#linearGradient1475);fill-opacity:1"
|
|
134
|
+
d="m 91.228906,35.054223 v 11.90625 c 0,9.230755 -7.825895,16.999999 -16.75,17 h -26.78125 c -7.335833,0 -13.406249,6.278483 -13.40625,13.625 v 25.531247 c 0,7.26634 6.318588,11.54032 13.40625,13.625 8.487331,2.49561 16.626237,2.94663 26.78125,0 6.750155,-1.95439 13.406253,-5.88761 13.40625,-13.625 V 92.897973 h -26.78125 v -3.40625 h 26.78125 13.406254 c 7.79246,0 10.69625,-5.435408 13.40624,-13.59375 2.79933,-8.398886 2.68022,-16.475776 0,-27.25 -1.92578,-7.757441 -5.60387,-13.59375 -13.40624,-13.59375 z m -15.0625,64.65625 c 2.779478,3e-6 5.03125,2.277417 5.03125,5.093747 -2e-6,2.82635 -2.251775,5.125 -5.03125,5.125 -2.76955,0 -5.03125,-2.29865 -5.03125,-5.125 2e-6,-2.81633 2.261697,-5.093747 5.03125,-5.093747 z" />
|
|
135
|
+
</g>
|
|
136
|
+
</svg>
|