datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.0__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.0.dist-info/METADATA +121 -0
- datalab_platform-1.0.0.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.0.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
width="256"
|
|
5
|
+
height="256"
|
|
6
|
+
viewBox="0 0 256 256"
|
|
7
|
+
xml:space="preserve"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="uncheck_all.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
15
|
+
id="namedview8"
|
|
16
|
+
pagecolor="#ffffff"
|
|
17
|
+
bordercolor="#000000"
|
|
18
|
+
borderopacity="0.25"
|
|
19
|
+
inkscape:showpageshadow="2"
|
|
20
|
+
inkscape:pageopacity="0.0"
|
|
21
|
+
inkscape:pagecheckerboard="0"
|
|
22
|
+
inkscape:deskcolor="#d1d1d1"
|
|
23
|
+
inkscape:zoom="3.1757812"
|
|
24
|
+
inkscape:cx="127.84256"
|
|
25
|
+
inkscape:cy="127.68512"
|
|
26
|
+
inkscape:window-width="1920"
|
|
27
|
+
inkscape:window-height="1009"
|
|
28
|
+
inkscape:window-x="-8"
|
|
29
|
+
inkscape:window-y="-8"
|
|
30
|
+
inkscape:window-maximized="1"
|
|
31
|
+
inkscape:current-layer="svg8" />
|
|
32
|
+
|
|
33
|
+
<defs
|
|
34
|
+
id="defs1">
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
</defs>
|
|
45
|
+
<path
|
|
46
|
+
d="M 84.284733,115.44201 H 7.0265934 c -3.10224,0 -5.62,-2.51776 -5.62,-5.62 V 37.534763 c 0,-3.10224 2.51776,-5.62 5.62,-5.62 H 62.082923 c 3.10224,0 5.62,2.51776 5.62,5.62 0,3.10224 -2.51776,5.62 -5.62,5.62 H 12.646593 V 104.1992 h 66.01814 V 81.311753 c 0,-3.10224 2.51776,-5.62 5.62,-5.62 3.10224,0 5.62,2.51776 5.62,5.62 V 109.8192 c 0,3.10505 -2.51495,5.62281 -5.62,5.62281 z"
|
|
47
|
+
style="fill:#3e5958;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
48
|
+
stroke-linecap="round"
|
|
49
|
+
id="path3" /><path
|
|
50
|
+
d="M 7.0265929,31.914763 H 84.28474 c 3.10224,0 5.62,2.51776 5.62,5.620001 v 72.287246 c 0,3.10224 -2.51776,5.62 -5.62,5.62 H 29.228403 c -3.10224,0 -5.62,-2.51776 -5.62,-5.62 0,-3.10224 2.51776,-5.62 5.62,-5.62 H 78.66474 V 43.157574 H 12.646593 V 66.04502 c 0,3.10224 -2.51776,5.62 -5.6200001,5.62 -3.1022395,0 -5.6199995,-2.51776 -5.6199995,-5.62 V 37.537574 c 0,-3.105051 2.51495,-5.622811 5.6199995,-5.622811 z"
|
|
51
|
+
style="fill:#3e5958;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
52
|
+
stroke-linecap="round"
|
|
53
|
+
id="path3-0" /><path
|
|
54
|
+
d="M 7.0265934,141.3474 H 84.284743 c 3.10224,0 5.619995,2.51776 5.619995,5.62 v 72.28725 c 0,3.10224 -2.517755,5.62 -5.619995,5.62 h -55.05634 c -3.10224,0 -5.62,-2.51776 -5.62,-5.62 0,-3.10224 2.51776,-5.62 5.62,-5.62 h 49.43634 v -61.04444 h -66.01815 v 22.88744 c 0,3.10224 -2.51776,5.62 -5.6199996,5.62 -3.10224,0 -5.62,-2.51776 -5.62,-5.62 v -28.50744 c 0,-3.10505 2.51495,-5.62281 5.62,-5.62281 z"
|
|
55
|
+
style="fill:#3e5958;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
56
|
+
stroke-linecap="round"
|
|
57
|
+
id="path3-0-6" /><path
|
|
58
|
+
d="M 248.68659,61.352323 H 120.43538 c -3.10224,0 -5.62,-2.51776 -5.62,-5.62 0,-3.10224 2.51776,-5.62 5.62,-5.62 h 128.25121 c 3.10224,0 5.62,2.51776 5.62,5.62 0,3.10224 -2.51776,5.62 -5.62,5.62 z"
|
|
59
|
+
style="fill:#3e5958;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
60
|
+
stroke-linecap="round"
|
|
61
|
+
id="path4" /><path
|
|
62
|
+
d="m 214.91882,96.171033 h -94.48344 c -3.10224,0 -5.62,-2.51776 -5.62,-5.62 0,-3.10224 2.51776,-5.62 5.62,-5.62 h 94.48344 c 3.10224,0 5.62,2.51776 5.62,5.62 0,3.10224 -2.51495,5.62 -5.62,5.62 z"
|
|
63
|
+
style="fill:#3e5958;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
64
|
+
stroke-linecap="round"
|
|
65
|
+
id="path5" /><path
|
|
66
|
+
d="M 84.284733,224.87184 H 7.0265934 c -3.10224,0 -5.62,-2.51776 -5.62,-5.62 V 146.9674 c 0,-3.10224 2.51776,-5.62 5.62,-5.62 H 62.082923 c 3.10224,0 5.62,2.51776 5.62,5.62 0,3.10224 -2.51776,5.62 -5.62,5.62 h -49.43633 v 61.04725 h 66.01814 V 190.7472 c 0,-3.10224 2.51776,-5.62 5.62,-5.62 3.10224,0 5.62,2.51776 5.62,5.62 v 28.50745 c 0,3.10224 -2.51495,5.61719 -5.62,5.61719 z"
|
|
67
|
+
style="fill:#3e5958;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
68
|
+
stroke-linecap="round"
|
|
69
|
+
id="path6" /><path
|
|
70
|
+
d="M 248.68659,170.78215 H 120.43538 c -3.10224,0 -5.62,-2.51776 -5.62,-5.62 0,-3.10224 2.51776,-5.62 5.62,-5.62 h 128.25121 c 3.10224,0 5.62,2.51776 5.62,5.62 0,3.10224 -2.51776,5.62 -5.62,5.62 z"
|
|
71
|
+
style="fill:#3e5958;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
72
|
+
stroke-linecap="round"
|
|
73
|
+
id="path7" /><path
|
|
74
|
+
d="m 214.91882,205.60086 h -94.48344 c -3.10224,0 -5.62,-2.51776 -5.62,-5.62 0,-3.10224 2.51776,-5.62 5.62,-5.62 h 94.48344 c 3.10224,0 5.62,2.51776 5.62,5.62 0,3.10224 -2.51495,5.62 -5.62,5.62 z"
|
|
75
|
+
style="fill:#3e5958;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
76
|
+
stroke-linecap="round"
|
|
77
|
+
id="path8" />
|
|
78
|
+
</svg>
|
|
@@ -0,0 +1,50 @@
|
|
|
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="svg1251"
|
|
9
|
+
sodipodi:docname="curve_antialiasing.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs1255" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview1253"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="true"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="42.274884"
|
|
28
|
+
inkscape:cx="7.0136207"
|
|
29
|
+
inkscape:cy="6.824383"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg1251" />
|
|
36
|
+
<g
|
|
37
|
+
id="g1"
|
|
38
|
+
transform="matrix(1.084036,0,0,1.084036,-0.58825226,-0.58825225)">
|
|
39
|
+
<circle
|
|
40
|
+
cx="7"
|
|
41
|
+
cy="7"
|
|
42
|
+
id="circle1"
|
|
43
|
+
style="fill:#e0e0e0;fill-opacity:1;stroke:#686868;stroke-width:1;stroke-dasharray:none;stroke-opacity:1"
|
|
44
|
+
r="4.2630911" />
|
|
45
|
+
<path
|
|
46
|
+
style="fill:#cdcdcd;fill-opacity:1;stroke:#b0b0b0;stroke-width:1.02645;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
|
47
|
+
d="M 7,1.6518249 C 7,12.348175 7,12.348175 7,12.348175"
|
|
48
|
+
id="path3" />
|
|
49
|
+
</g>
|
|
50
|
+
</svg>
|
|
@@ -0,0 +1,98 @@
|
|
|
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="svg41981"
|
|
9
|
+
sodipodi:docname="popup.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="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs41985" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview41983"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="61.642857"
|
|
28
|
+
inkscape:cx="5.9455388"
|
|
29
|
+
inkscape:cy="6.9918888"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1017"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg41981" />
|
|
36
|
+
<g
|
|
37
|
+
id="g42718"
|
|
38
|
+
transform="matrix(0.78633287,0,0,0.78633287,2.7448009,0.41089832)">
|
|
39
|
+
<g
|
|
40
|
+
id="g42708">
|
|
41
|
+
<path
|
|
42
|
+
d="M 1.1538461,11.769231 V 4.3846154 H 12.846154 V 11.769231 C 12.846154,12.446154 12.292308,13 11.615385,13 H 2.3846153 C 1.7076923,13 1.1538461,12.446154 1.1538461,11.769231 Z"
|
|
43
|
+
id="path41967" fill="#f2f2f2" fill-opacity="1" />
|
|
44
|
+
<path
|
|
45
|
+
d="M 12.846154,3.1538461 V 5 H 1.1538461 V 3.1538461 c 0,-0.6769231 0.5538462,-1.2307692 1.2307692,-1.2307692 h 9.2307697 c 0.676923,0 1.230769,0.5538461 1.230769,1.2307692 z"
|
|
46
|
+
id="path41969" fill="#cccccc" fill-opacity="1" />
|
|
47
|
+
</g>
|
|
48
|
+
<rect
|
|
49
|
+
style="fill:#d40000;stroke:none;stroke-width:0.349565"
|
|
50
|
+
id="rect42156"
|
|
51
|
+
width="1.5517155"
|
|
52
|
+
height="1.6081415"
|
|
53
|
+
x="10.501587"
|
|
54
|
+
y="2.674593" />
|
|
55
|
+
<rect
|
|
56
|
+
style="fill:#808080;stroke:none;stroke-width:0.349565"
|
|
57
|
+
id="rect42156-5"
|
|
58
|
+
width="1.5517155"
|
|
59
|
+
height="1.6081415"
|
|
60
|
+
x="8.8088064"
|
|
61
|
+
y="2.674593" />
|
|
62
|
+
<rect
|
|
63
|
+
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:1.68031;stroke-opacity:1"
|
|
64
|
+
id="rect10749-5"
|
|
65
|
+
width="9.9170856"
|
|
66
|
+
height="7.0469565"
|
|
67
|
+
x="2.5508342"
|
|
68
|
+
y="5.4675021"
|
|
69
|
+
transform="matrix(1,0,-0.0665779,0.99778123,0,0)" />
|
|
70
|
+
<rect
|
|
71
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.379993"
|
|
72
|
+
id="rect28089"
|
|
73
|
+
width="0.47309414"
|
|
74
|
+
height="6.8056917"
|
|
75
|
+
x="6.6611328"
|
|
76
|
+
y="5.5612016" />
|
|
77
|
+
<rect
|
|
78
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.449687"
|
|
79
|
+
id="rect28089-7"
|
|
80
|
+
width="0.47309414"
|
|
81
|
+
height="9.5310678"
|
|
82
|
+
x="8.6254492"
|
|
83
|
+
y="-11.679437"
|
|
84
|
+
transform="rotate(90)" />
|
|
85
|
+
</g>
|
|
86
|
+
<g
|
|
87
|
+
id="g43227"
|
|
88
|
+
transform="translate(-5.7291885,-0.15508909)">
|
|
89
|
+
<path
|
|
90
|
+
style="fill:#008000"
|
|
91
|
+
d="M 10.442105,10.268421 C 9.5578947,11.18421 8.3578947,11.752632 7,11.752632 c -0.2842105,0 -0.6,-0.03158 -0.8842105,-0.09474 L 5.8947369,12.889474 C 6.2736842,12.952632 6.6526316,12.98421 7,12.98421 c 1.7052631,0 3.221053,-0.726315 4.326316,-1.863157 z"
|
|
92
|
+
id="path43223" />
|
|
93
|
+
<path
|
|
94
|
+
d="M 12.052632,9.2263158 11.547368,12.98421 8.4526316,9.8894736 Z"
|
|
95
|
+
id="path43087"
|
|
96
|
+
style="fill:#008000" />
|
|
97
|
+
</g>
|
|
98
|
+
</svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
width="256"
|
|
5
|
+
height="256"
|
|
6
|
+
viewBox="0 0 256 256"
|
|
7
|
+
xml:space="preserve"
|
|
8
|
+
id="svg2"
|
|
9
|
+
sodipodi:docname="refresh-auto.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
15
|
+
id="namedview2"
|
|
16
|
+
pagecolor="#ffffff"
|
|
17
|
+
bordercolor="#000000"
|
|
18
|
+
borderopacity="0.25"
|
|
19
|
+
inkscape:showpageshadow="2"
|
|
20
|
+
inkscape:pageopacity="0.0"
|
|
21
|
+
inkscape:pagecheckerboard="0"
|
|
22
|
+
inkscape:deskcolor="#d1d1d1"
|
|
23
|
+
inkscape:zoom="3.1757812"
|
|
24
|
+
inkscape:cx="127.68512"
|
|
25
|
+
inkscape:cy="127.68512"
|
|
26
|
+
inkscape:window-width="1920"
|
|
27
|
+
inkscape:window-height="1009"
|
|
28
|
+
inkscape:window-x="-8"
|
|
29
|
+
inkscape:window-y="-8"
|
|
30
|
+
inkscape:window-maximized="1"
|
|
31
|
+
inkscape:current-layer="svg2" />
|
|
32
|
+
|
|
33
|
+
<defs
|
|
34
|
+
id="defs1">
|
|
35
|
+
</defs>
|
|
36
|
+
<g
|
|
37
|
+
style="opacity:1;fill:none;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
38
|
+
transform="matrix(0,2.5021142,-2.5021142,0,240.45173,15.261452)"
|
|
39
|
+
id="g2">
|
|
40
|
+
<circle
|
|
41
|
+
cx="45"
|
|
42
|
+
cy="45"
|
|
43
|
+
r="45"
|
|
44
|
+
style="opacity:1;fill:#ffcc66;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
45
|
+
id="circle1" />
|
|
46
|
+
<path
|
|
47
|
+
d="m 55.111,58.881 c -0.666,-0.913 -1.912,-1.233 -2.903,-0.69 -2.197,1.206 -4.655,1.835 -7.208,1.835 -6.4,0 -11.863,-4.029 -14.025,-9.677 h 5.305 c 0.653,0 1.253,-0.358 1.564,-0.932 0.31,-0.574 0.281,-1.273 -0.076,-1.819 L 23.016,25.046 c -0.329,-0.502 -0.888,-0.805 -1.488,-0.805 -0.6,0 -1.159,0.303 -1.488,0.805 L 5.29,47.599 c -0.357,0.546 -0.386,1.245 -0.076,1.819 0.311,0.575 0.911,0.932 1.564,0.932 h 6.764 C 16.095,65.409 29.225,76.916 45,76.916 c 5.988,0 11.736,-1.636 16.768,-4.754 1.131,-0.701 1.41,-2.23 0.626,-3.305 z"
|
|
48
|
+
style="opacity:1;fill:#ed7161;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
49
|
+
stroke-linecap="round"
|
|
50
|
+
id="path1" />
|
|
51
|
+
<path
|
|
52
|
+
d="m 84.786,39.868 c -0.31,-0.574 -0.911,-0.932 -1.563,-0.932 H 76.331 C 73.489,24.229 60.525,13.084 45,13.084 c -5.41,0 -10.676,1.356 -15.37,3.94 -1.161,0.639 -1.511,2.151 -0.785,3.26 l 6.767,10.336 c 0.617,0.943 1.842,1.332 2.856,0.842 2.024,-0.978 4.249,-1.489 6.532,-1.489 6.127,0 11.402,3.691 13.738,8.963 h -5.017 c -0.653,0 -1.253,0.358 -1.563,0.932 -0.311,0.574 -0.282,1.273 0.076,1.819 l 14.75,22.553 c 0.328,0.502 0.888,0.805 1.488,0.805 0.6,0 1.16,-0.303 1.488,-0.805 L 84.71,41.687 c 0.358,-0.546 0.386,-1.245 0.076,-1.819 z"
|
|
53
|
+
style="opacity:1;fill:#88c057;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
54
|
+
stroke-linecap="round"
|
|
55
|
+
id="path2" />
|
|
56
|
+
</g>
|
|
57
|
+
</svg>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
width="256"
|
|
5
|
+
height="256"
|
|
6
|
+
viewBox="0 0 256 256"
|
|
7
|
+
xml:space="preserve"
|
|
8
|
+
id="svg2"
|
|
9
|
+
sodipodi:docname="refresh-manual.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
15
|
+
id="namedview2"
|
|
16
|
+
pagecolor="#ffffff"
|
|
17
|
+
bordercolor="#000000"
|
|
18
|
+
borderopacity="0.25"
|
|
19
|
+
inkscape:showpageshadow="2"
|
|
20
|
+
inkscape:pageopacity="0.0"
|
|
21
|
+
inkscape:pagecheckerboard="0"
|
|
22
|
+
inkscape:deskcolor="#d1d1d1"
|
|
23
|
+
inkscape:zoom="3.1757812"
|
|
24
|
+
inkscape:cx="127.68512"
|
|
25
|
+
inkscape:cy="127.68512"
|
|
26
|
+
inkscape:window-width="1920"
|
|
27
|
+
inkscape:window-height="1009"
|
|
28
|
+
inkscape:window-x="-8"
|
|
29
|
+
inkscape:window-y="-8"
|
|
30
|
+
inkscape:window-maximized="1"
|
|
31
|
+
inkscape:current-layer="svg2" />
|
|
32
|
+
|
|
33
|
+
<defs
|
|
34
|
+
id="defs1">
|
|
35
|
+
</defs>
|
|
36
|
+
|
|
37
|
+
<g
|
|
38
|
+
style="fill:none;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
39
|
+
transform="matrix(0,2.2298985,-2.2298985,0,228.34543,27.655016)"
|
|
40
|
+
id="g2-6">
|
|
41
|
+
<path
|
|
42
|
+
d="m 56.375,60.616 c -0.75,-1.027 -2.151,-1.388 -3.266,-0.776 -2.472,1.356 -5.237,2.065 -8.109,2.065 -7.2,0 -13.346,-4.532 -15.778,-10.887 h 5.968 c 0.734,0 1.41,-0.402 1.759,-1.049 0.349,-0.646 0.316,-1.432 -0.085,-2.046 L 20.269,22.551 c -0.37,-0.565 -0.999,-0.905 -1.674,-0.905 -0.675,0 -1.304,0.34 -1.674,0.905 L 0.326,47.924 c -0.402,0.614 -0.435,1.4 -0.085,2.046 C 0.59,50.616 1.266,51.019 2,51.019 H 9.609 C 12.482,67.96 27.253,80.905 45,80.905 c 6.736,0 13.203,-1.841 18.864,-5.348 1.272,-0.788 1.586,-2.509 0.704,-3.718 z"
|
|
43
|
+
style="opacity:1;fill:#eb4300;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
44
|
+
stroke-linecap="round"
|
|
45
|
+
id="path1-8" />
|
|
46
|
+
<path
|
|
47
|
+
d="M 89.759,39.227 C 89.41,38.581 88.735,38.179 88,38.179 H 80.247 C 77.051,21.632 62.465,9.095 45,9.095 c -6.086,0 -12.01,1.525 -17.291,4.432 -1.307,0.719 -1.7,2.42 -0.883,3.668 l 7.613,11.628 c 0.694,1.06 2.072,1.499 3.213,0.947 2.277,-1.1 4.78,-1.675 7.348,-1.675 6.893,0 12.827,4.153 15.455,10.083 H 54.81 c -0.734,0 -1.41,0.402 -1.759,1.048 -0.35,0.646 -0.317,1.432 0.085,2.046 l 16.595,25.373 c 0.369,0.564 0.999,0.905 1.674,0.905 0.675,0 1.305,-0.341 1.674,-0.905 L 89.674,41.272 c 0.402,-0.614 0.434,-1.399 0.085,-2.045 z"
|
|
48
|
+
style="opacity:1;fill:#f8bd00;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
49
|
+
stroke-linecap="round"
|
|
50
|
+
id="path2-2" />
|
|
51
|
+
</g></svg>
|
|
@@ -0,0 +1,96 @@
|
|
|
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="svg12"
|
|
9
|
+
sodipodi:docname="reset_curve_styles.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="42.274884"
|
|
28
|
+
inkscape:cx="3.1933855"
|
|
29
|
+
inkscape:cy="7.2738224"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1009"
|
|
32
|
+
inkscape:window-x="1912"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<g
|
|
37
|
+
style="fill:none;fill-rule:nonzero;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
38
|
+
transform="matrix(0,-0.12479558,0.12479558,0,1.6404707,12.629023)"
|
|
39
|
+
id="g2">
|
|
40
|
+
<circle
|
|
41
|
+
cx="45"
|
|
42
|
+
cy="45"
|
|
43
|
+
r="45"
|
|
44
|
+
style="opacity:1;fill:#417ce5;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
45
|
+
id="circle1" />
|
|
46
|
+
<path
|
|
47
|
+
d="M 71.5,34.314 V 20.388 l -4.597,4.597 C 63.202,21.077 58.517,18.284 53.277,16.88 45.741,14.861 37.87,15.897 31.115,19.798 24.359,23.699 19.527,29.997 17.507,37.532 c -2.019,7.536 -0.983,15.406 2.918,22.162 3.9,6.756 10.199,11.588 17.734,13.607 2.486,0.666 5.005,0.987 7.5,0.987 10.099,0 19.786,-5.264 25.127,-14.199 L 65.201,56.751 C 60.025,65.408 49.598,69.629 39.843,67.016 33.986,65.447 29.091,61.691 26.06,56.44 23.029,51.189 22.223,45.072 23.793,39.216 c 1.569,-5.857 5.325,-10.752 10.576,-13.783 5.25,-3.032 11.367,-3.837 17.224,-2.268 4.13,1.107 7.806,3.331 10.698,6.432 l -4.717,4.717 z"
|
|
48
|
+
style="opacity:1;fill:#ffffff;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
49
|
+
stroke-linecap="round"
|
|
50
|
+
id="path1" />
|
|
51
|
+
</g>
|
|
52
|
+
<g
|
|
53
|
+
id="g1"
|
|
54
|
+
transform="matrix(1.0032099,0,0,1,0.06880257,-0.14192834)">
|
|
55
|
+
<path
|
|
56
|
+
style="fill:none;fill-opacity:0.817241;stroke:#ff0000;stroke-width:0.64846;stroke-opacity:1"
|
|
57
|
+
d="m 1.5979176,11.991302 c 0,0.152631 2.4420512,-0.915769 2.4420512,-0.915769 L 5.5662508,9.0913664 7.3214751,4.970405 9.2293278,2.9862382 12.358206,2.0704691"
|
|
58
|
+
id="path32265" />
|
|
59
|
+
<circle
|
|
60
|
+
cx="9.2136707"
|
|
61
|
+
cy="3.0269027"
|
|
62
|
+
r="0.94016802"
|
|
63
|
+
id="circle20-2"
|
|
64
|
+
style="fill:#ff5555;stroke-width:0.31339" />
|
|
65
|
+
<circle
|
|
66
|
+
cx="7.2945685"
|
|
67
|
+
cy="4.9510207"
|
|
68
|
+
r="0.94016802"
|
|
69
|
+
id="circle22-3"
|
|
70
|
+
style="fill:#ff5555;stroke-width:0.31339" />
|
|
71
|
+
<circle
|
|
72
|
+
cx="5.6044068"
|
|
73
|
+
cy="9.1676798"
|
|
74
|
+
r="0.94016802"
|
|
75
|
+
id="circle24-6"
|
|
76
|
+
style="fill:#ff5555;stroke-width:0.31339" />
|
|
77
|
+
<circle
|
|
78
|
+
cx="3.9905601"
|
|
79
|
+
cy="11.039884"
|
|
80
|
+
r="0.94016802"
|
|
81
|
+
id="circle26-0"
|
|
82
|
+
style="fill:#ff5555;stroke-width:0.31339" />
|
|
83
|
+
<circle
|
|
84
|
+
cx="1.613572"
|
|
85
|
+
cy="12.010686"
|
|
86
|
+
r="0.94016802"
|
|
87
|
+
id="circle28-1"
|
|
88
|
+
style="fill:#ff5555;stroke-width:0.31339" />
|
|
89
|
+
<circle
|
|
90
|
+
cx="12.281892"
|
|
91
|
+
cy="2.1467826"
|
|
92
|
+
r="0.94016802"
|
|
93
|
+
id="circle28-1-2"
|
|
94
|
+
style="fill:#ff5555;stroke-width:0.31339" />
|
|
95
|
+
</g>
|
|
96
|
+
</svg>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
width="256"
|
|
5
|
+
height="256"
|
|
6
|
+
viewBox="0 0 256 256"
|
|
7
|
+
xml:space="preserve"
|
|
8
|
+
id="svg2"
|
|
9
|
+
sodipodi:docname="show_first.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
15
|
+
id="namedview2"
|
|
16
|
+
pagecolor="#ffffff"
|
|
17
|
+
bordercolor="#000000"
|
|
18
|
+
borderopacity="0.25"
|
|
19
|
+
inkscape:showpageshadow="2"
|
|
20
|
+
inkscape:pageopacity="0.0"
|
|
21
|
+
inkscape:pagecheckerboard="0"
|
|
22
|
+
inkscape:deskcolor="#d1d1d1"
|
|
23
|
+
inkscape:zoom="2.2456164"
|
|
24
|
+
inkscape:cx="76.593669"
|
|
25
|
+
inkscape:cy="130.25377"
|
|
26
|
+
inkscape:window-width="1920"
|
|
27
|
+
inkscape:window-height="991"
|
|
28
|
+
inkscape:window-x="-9"
|
|
29
|
+
inkscape:window-y="-9"
|
|
30
|
+
inkscape:window-maximized="1"
|
|
31
|
+
inkscape:current-layer="svg2" />
|
|
32
|
+
|
|
33
|
+
<defs
|
|
34
|
+
id="defs1">
|
|
35
|
+
</defs>
|
|
36
|
+
|
|
37
|
+
<g
|
|
38
|
+
id="g2-4"
|
|
39
|
+
transform="matrix(5.1532879,0,0,5.1532879,4.3210896,4.3210896)"><path
|
|
40
|
+
d="M 24,36 C 35.0457,36 44,24 44,24 44,24 35.0457,12 24,12 12.9543,12 4,24 4,24 c 0,0 8.9543,12 20,12 z"
|
|
41
|
+
fill="#2f88ff"
|
|
42
|
+
stroke="#000000"
|
|
43
|
+
stroke-width="4"
|
|
44
|
+
stroke-linejoin="round"
|
|
45
|
+
id="path1-1" /><path
|
|
46
|
+
d="m 24,29 c 2.7614,0 5,-2.2386 5,-5 0,-2.7614 -2.2386,-5 -5,-5 -2.7614,0 -5,2.2386 -5,5 0,2.7614 2.2386,5 5,5 z"
|
|
47
|
+
fill="#43ccf8"
|
|
48
|
+
stroke="#ffffff"
|
|
49
|
+
stroke-width="4"
|
|
50
|
+
stroke-linejoin="round"
|
|
51
|
+
id="path2-0" /></g><path
|
|
52
|
+
style="font-size:266.667px;line-height:1.05;font-family:'Franklin Gothic Demi Cond';-inkscape-font-specification:'Franklin Gothic Demi Cond';letter-spacing:0px;fill:#ffffff;stroke:#666666;stroke-width:7.744;stroke-linecap:square"
|
|
53
|
+
d="m 49.761626,38.351461 h 29.81774 V 188.61205 h 29.427124 v 29.03649 H 10.568867 V 188.61205 H 40.516816 V 83.664017 Q 27.235554,97.466117 10.568867,105.92966 V 71.164001 Q 34.397016,58.663986 49.761626,38.351461 Z"
|
|
54
|
+
id="text1"
|
|
55
|
+
aria-label="1" /></svg>
|
|
@@ -0,0 +1,46 @@
|
|
|
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="show_titles.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="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs10" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview8"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="61.642857"
|
|
28
|
+
inkscape:cx="5.9455388"
|
|
29
|
+
inkscape:cy="6.9918888"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1017"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg6" />
|
|
36
|
+
<path
|
|
37
|
+
fill="#558b2f"
|
|
38
|
+
d="m 4.6621751,10.896375 h 5.9744419 l 1.558549,1.55855 V 7 c 0,-0.5714683 -0.467565,-1.0390333 -1.039033,-1.0390333 H 4.6621751 C 4.0907068,5.9609667 3.6231418,6.4285317 3.6231418,7 v 2.8573415 c 0,0.5714685 0.467565,1.0390335 1.0390333,1.0390335 z"
|
|
39
|
+
id="path2"
|
|
40
|
+
style="stroke-width:0.909154" />
|
|
41
|
+
<path
|
|
42
|
+
fill="#8bc34a"
|
|
43
|
+
d="M 9.3378249,7 H 3.3633835 L 1.8048336,8.5585499 V 2.5841085 c 0,-0.5714683 0.4675649,-1.0390333 1.0390332,-1.0390333 h 6.4939581 c 0.5714683,0 1.0390331,0.467565 1.0390331,1.0390333 V 5.9609667 C 10.376858,6.532435 9.9092932,7 9.3378249,7 Z"
|
|
44
|
+
id="path4"
|
|
45
|
+
style="stroke-width:0.909154" />
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
width="256"
|
|
5
|
+
height="256"
|
|
6
|
+
viewBox="0 0 256 256"
|
|
7
|
+
xml:space="preserve"
|
|
8
|
+
id="svg2"
|
|
9
|
+
sodipodi:docname="visualization.svg"
|
|
10
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
15
|
+
id="namedview2"
|
|
16
|
+
pagecolor="#ffffff"
|
|
17
|
+
bordercolor="#000000"
|
|
18
|
+
borderopacity="0.25"
|
|
19
|
+
inkscape:showpageshadow="2"
|
|
20
|
+
inkscape:pageopacity="0.0"
|
|
21
|
+
inkscape:pagecheckerboard="0"
|
|
22
|
+
inkscape:deskcolor="#d1d1d1"
|
|
23
|
+
inkscape:zoom="2.2456164"
|
|
24
|
+
inkscape:cx="76.593669"
|
|
25
|
+
inkscape:cy="130.69908"
|
|
26
|
+
inkscape:window-width="1920"
|
|
27
|
+
inkscape:window-height="1009"
|
|
28
|
+
inkscape:window-x="-8"
|
|
29
|
+
inkscape:window-y="-8"
|
|
30
|
+
inkscape:window-maximized="1"
|
|
31
|
+
inkscape:current-layer="svg2" />
|
|
32
|
+
|
|
33
|
+
<defs
|
|
34
|
+
id="defs1">
|
|
35
|
+
</defs>
|
|
36
|
+
|
|
37
|
+
<g
|
|
38
|
+
id="g2-4"
|
|
39
|
+
transform="matrix(5.1532879,0,0,5.1532879,4.3210896,4.3210896)"><path
|
|
40
|
+
d="M 24,36 C 35.0457,36 44,24 44,24 44,24 35.0457,12 24,12 12.9543,12 4,24 4,24 c 0,0 8.9543,12 20,12 z"
|
|
41
|
+
fill="#2f88ff"
|
|
42
|
+
stroke="#000000"
|
|
43
|
+
stroke-width="4"
|
|
44
|
+
stroke-linejoin="round"
|
|
45
|
+
id="path1-1" /><path
|
|
46
|
+
d="m 24,29 c 2.7614,0 5,-2.2386 5,-5 0,-2.7614 -2.2386,-5 -5,-5 -2.7614,0 -5,2.2386 -5,5 0,2.7614 2.2386,5 5,5 z"
|
|
47
|
+
fill="#43ccf8"
|
|
48
|
+
stroke="#ffffff"
|
|
49
|
+
stroke-width="4"
|
|
50
|
+
stroke-linejoin="round"
|
|
51
|
+
id="path2-0" /></g></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|