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,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
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="annotations_edit.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#ffffff"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="1009"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.029661"
|
|
48
|
+
inkscape:cy="7.148305"
|
|
49
|
+
inkscape:window-x="-8"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:pagecheckerboard="0"
|
|
54
|
+
inkscape:showpageshadow="0"
|
|
55
|
+
inkscape:deskcolor="#505050" />
|
|
56
|
+
<g
|
|
57
|
+
id="g1"
|
|
58
|
+
transform="translate(0.1779661,0.47457627)">
|
|
59
|
+
<rect
|
|
60
|
+
style="fill:#ffeeaa;stroke:#aa8800;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
|
|
61
|
+
id="rect924"
|
|
62
|
+
width="5.309072"
|
|
63
|
+
height="4.7191753"
|
|
64
|
+
x="2.1643627"
|
|
65
|
+
y="6.5601668" />
|
|
66
|
+
<ellipse
|
|
67
|
+
style="fill:#aaffaa;stroke:#008000;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
|
|
68
|
+
id="path1036"
|
|
69
|
+
cx="4.2600341"
|
|
70
|
+
cy="4.6777449"
|
|
71
|
+
rx="3.7114346"
|
|
72
|
+
ry="2.7282732" />
|
|
73
|
+
<path
|
|
74
|
+
style="fill:#ff6600;stroke:#d45500;stroke-width:0.828665px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
75
|
+
d="M 0.24866609,10.589467 C 9.4412254,4.9854466 9.4412254,4.9854466 9.4412254,4.9854466"
|
|
76
|
+
id="path1169" />
|
|
77
|
+
</g>
|
|
78
|
+
<g
|
|
79
|
+
id="g3798"
|
|
80
|
+
transform="matrix(0.54267566,0,0,0.54267566,5.279358,3.203087)">
|
|
81
|
+
<circle
|
|
82
|
+
cx="7"
|
|
83
|
+
cy="7"
|
|
84
|
+
r="6"
|
|
85
|
+
fill="#4caf50"
|
|
86
|
+
id="circle2915" />
|
|
87
|
+
<g
|
|
88
|
+
fill="#ffffff"
|
|
89
|
+
id="g2921">
|
|
90
|
+
<path
|
|
91
|
+
d="M 6.1428571,4.1428571 H 7.8571429 V 9.8571429 H 6.1428571 Z"
|
|
92
|
+
id="path2917" />
|
|
93
|
+
<path
|
|
94
|
+
d="M 4.1428571,6.1428571 H 9.8571429 V 7.8571429 H 4.1428571 Z"
|
|
95
|
+
id="path2919" />
|
|
96
|
+
</g>
|
|
97
|
+
</g>
|
|
98
|
+
</svg>
|
|
@@ -0,0 +1,85 @@
|
|
|
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
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="annotations_export.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#ffffff"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="1009"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.029661"
|
|
48
|
+
inkscape:cy="7.148305"
|
|
49
|
+
inkscape:window-x="-8"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:pagecheckerboard="0"
|
|
54
|
+
inkscape:showpageshadow="0"
|
|
55
|
+
inkscape:deskcolor="#505050" />
|
|
56
|
+
<rect
|
|
57
|
+
style="fill:#ffeeaa;stroke:#aa8800;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
|
|
58
|
+
id="rect924"
|
|
59
|
+
width="5.309072"
|
|
60
|
+
height="4.7191753"
|
|
61
|
+
x="2.3423288"
|
|
62
|
+
y="7.0347433" />
|
|
63
|
+
<ellipse
|
|
64
|
+
style="fill:#aaffaa;stroke:#008000;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
|
|
65
|
+
id="path1036"
|
|
66
|
+
cx="4.4380002"
|
|
67
|
+
cy="5.1523213"
|
|
68
|
+
rx="3.7114346"
|
|
69
|
+
ry="2.7282732" />
|
|
70
|
+
<path
|
|
71
|
+
style="fill:#ff6600;stroke:#d45500;stroke-width:0.622826px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
72
|
+
d="M 0.37452565,11.149981 C 7.0611286,6.7978141 7.0611286,6.7978141 7.0611286,6.7978141"
|
|
73
|
+
id="path1169" />
|
|
74
|
+
<g
|
|
75
|
+
fill="#ff5722"
|
|
76
|
+
id="g8"
|
|
77
|
+
transform="matrix(0.93746091,0,0,0.93746091,1.633277,0.54518925)">
|
|
78
|
+
<path
|
|
79
|
+
d="M 12.355,7 9.145,9.7 V 4.3 Z"
|
|
80
|
+
id="path4" />
|
|
81
|
+
<path
|
|
82
|
+
d="m 3.745,6.1 h 6.9 v 1.8 h -6.9 z"
|
|
83
|
+
id="path6" />
|
|
84
|
+
</g>
|
|
85
|
+
</svg>
|
|
@@ -0,0 +1,85 @@
|
|
|
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
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="annotations_import.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#ffffff"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="1009"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.029661"
|
|
48
|
+
inkscape:cy="7.148305"
|
|
49
|
+
inkscape:window-x="-8"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:pagecheckerboard="0"
|
|
54
|
+
inkscape:showpageshadow="0"
|
|
55
|
+
inkscape:deskcolor="#505050" />
|
|
56
|
+
<rect
|
|
57
|
+
style="fill:#ffeeaa;stroke:#aa8800;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
|
|
58
|
+
id="rect924"
|
|
59
|
+
width="5.309072"
|
|
60
|
+
height="4.7191753"
|
|
61
|
+
x="2.3423288"
|
|
62
|
+
y="7.0347433" />
|
|
63
|
+
<ellipse
|
|
64
|
+
style="fill:#aaffaa;stroke:#008000;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
|
|
65
|
+
id="path1036"
|
|
66
|
+
cx="4.4380002"
|
|
67
|
+
cy="5.1523213"
|
|
68
|
+
rx="3.7114346"
|
|
69
|
+
ry="2.7282732" />
|
|
70
|
+
<path
|
|
71
|
+
style="fill:#ff6600;stroke:#d45500;stroke-width:0.622826px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
72
|
+
d="M 0.37452565,11.149981 C 7.0611286,6.7978141 7.0611286,6.7978141 7.0611286,6.7978141"
|
|
73
|
+
id="path1169" />
|
|
74
|
+
<g
|
|
75
|
+
fill="#e91e63"
|
|
76
|
+
id="g8"
|
|
77
|
+
transform="matrix(0.91274929,0,0,0.91274929,2.0081011,0.897212)">
|
|
78
|
+
<path
|
|
79
|
+
d="M 3.64,7 6.85,4.3 v 5.4 z"
|
|
80
|
+
id="path4" />
|
|
81
|
+
<path
|
|
82
|
+
d="m 5.35,6.1 h 6.9 v 1.8 h -6.9 z"
|
|
83
|
+
id="path6" />
|
|
84
|
+
</g>
|
|
85
|
+
</svg>
|
|
@@ -0,0 +1,100 @@
|
|
|
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
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="annotations_paste.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#ffffff"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="1009"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.029661"
|
|
48
|
+
inkscape:cy="7.148305"
|
|
49
|
+
inkscape:window-x="-8"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:pagecheckerboard="0"
|
|
54
|
+
inkscape:showpageshadow="0"
|
|
55
|
+
inkscape:deskcolor="#505050" />
|
|
56
|
+
<g
|
|
57
|
+
id="g1"
|
|
58
|
+
transform="translate(0.1779661,0.47457627)">
|
|
59
|
+
<rect
|
|
60
|
+
style="fill:#ffeeaa;stroke:#aa8800;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
|
|
61
|
+
id="rect924"
|
|
62
|
+
width="5.309072"
|
|
63
|
+
height="4.7191753"
|
|
64
|
+
x="2.1643627"
|
|
65
|
+
y="6.5601668" />
|
|
66
|
+
<ellipse
|
|
67
|
+
style="fill:#aaffaa;stroke:#008000;stroke-width:0.497199;stroke-miterlimit:4;stroke-dasharray:none"
|
|
68
|
+
id="path1036"
|
|
69
|
+
cx="4.2600341"
|
|
70
|
+
cy="4.6777449"
|
|
71
|
+
rx="3.7114346"
|
|
72
|
+
ry="2.7282732" />
|
|
73
|
+
<path
|
|
74
|
+
style="fill:#ff6600;stroke:#d45500;stroke-width:0.828665px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
75
|
+
d="M 0.24866609,10.589467 C 9.4412254,4.9854466 9.4412254,4.9854466 9.4412254,4.9854466"
|
|
76
|
+
id="path1169" />
|
|
77
|
+
</g>
|
|
78
|
+
<g
|
|
79
|
+
id="g1016"
|
|
80
|
+
transform="matrix(0.81634845,0,0,0.81634845,3.0535229,1.9875601)">
|
|
81
|
+
<rect
|
|
82
|
+
style="fill:#aaccff;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
83
|
+
id="rect991"
|
|
84
|
+
width="6.7790279"
|
|
85
|
+
height="6.9265242"
|
|
86
|
+
x="4.6328125"
|
|
87
|
+
y="3.4551136" />
|
|
88
|
+
<rect
|
|
89
|
+
style="fill:#aaccff;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
90
|
+
id="rect991-2"
|
|
91
|
+
width="4.4232593"
|
|
92
|
+
height="4.1164284"
|
|
93
|
+
x="7.766736"
|
|
94
|
+
y="6.5655842" />
|
|
95
|
+
<path
|
|
96
|
+
d="M 11.125783,9.6749069 H 8.8175127 V 8.976419 h 2.3082703 z m -7.9e-4,-1.290258 H 8.8174888 V 7.6861608 H 11.124993 Z M 11.422987,4.9411872 H 6.9970833 V 11.367325 H 12.875567 V 6.3924861 Z m 0.521272,5.4948288 H 7.9284152 V 5.8724959 h 2.7960868 v 1.0554847 h 1.219757 z M 6.1687195,9.625 H 4.6328125 V 3.4551137 h 1.4047351 l 0.58013,0.5820774 H 8.555959 L 9.1438464,3.4551137 h 1.3329326 v 0.7410727 h 0.942936 V 2.5276869 h -1.326404 c -0.2116981,0 -0.4147851,-0.083776 -0.5649271,-0.2330081 L 9.021597,1.7904027 H 6.111258 L 5.6044951,2.2946325 C 5.4543609,2.4438888 5.2512902,2.527663 5.0395764,2.527663 H 3.7131486 v 8.040268 h 2.4555709 z"
|
|
97
|
+
id="path2-1"
|
|
98
|
+
style="fill:#0066ff;stroke-width:0.798077" />
|
|
99
|
+
</g>
|
|
100
|
+
</svg>
|
|
@@ -0,0 +1,109 @@
|
|
|
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="copy_titles.svg"
|
|
10
|
+
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
|
|
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="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
22
|
+
inkscape:pageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="59.428571"
|
|
27
|
+
inkscape:cx="6.9495193"
|
|
28
|
+
inkscape:cy="5.6201923"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1017"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg6"
|
|
35
|
+
inkscape:showpageshadow="2"
|
|
36
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
37
|
+
<text
|
|
38
|
+
xml:space="preserve"
|
|
39
|
+
style="font-style:normal;font-weight:normal;font-size:2.66667px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
|
40
|
+
x="0.39126781"
|
|
41
|
+
y="2.8437502"
|
|
42
|
+
id="text1595"><tspan
|
|
43
|
+
sodipodi:role="line"
|
|
44
|
+
x="0.39126781"
|
|
45
|
+
y="2.8437502"
|
|
46
|
+
id="tspan1700">i000: title</tspan></text>
|
|
47
|
+
<text
|
|
48
|
+
xml:space="preserve"
|
|
49
|
+
style="font-style:normal;font-weight:normal;font-size:2.66667px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
|
50
|
+
x="0.39126781"
|
|
51
|
+
y="6.2652416"
|
|
52
|
+
id="text1595-8"><tspan
|
|
53
|
+
sodipodi:role="line"
|
|
54
|
+
x="0.39126781"
|
|
55
|
+
y="6.2652416"
|
|
56
|
+
id="tspan1700-7">i001: title</tspan></text>
|
|
57
|
+
<text
|
|
58
|
+
xml:space="preserve"
|
|
59
|
+
style="font-style:normal;font-weight:normal;font-size:2.66667px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
|
60
|
+
x="0.39126781"
|
|
61
|
+
y="9.6867332"
|
|
62
|
+
id="text1595-7"><tspan
|
|
63
|
+
sodipodi:role="line"
|
|
64
|
+
x="0.39126781"
|
|
65
|
+
y="9.6867332"
|
|
66
|
+
id="tspan1700-6">i002: title</tspan></text>
|
|
67
|
+
<text
|
|
68
|
+
xml:space="preserve"
|
|
69
|
+
style="font-style:normal;font-weight:normal;font-size:2.66667px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
|
70
|
+
x="0.39126781"
|
|
71
|
+
y="13.108225"
|
|
72
|
+
id="text1595-86"><tspan
|
|
73
|
+
sodipodi:role="line"
|
|
74
|
+
x="0.39126781"
|
|
75
|
+
y="13.108225"
|
|
76
|
+
id="tspan1700-3">i003: title</tspan></text>
|
|
77
|
+
<rect
|
|
78
|
+
style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
79
|
+
id="rect955"
|
|
80
|
+
width="3.6778848"
|
|
81
|
+
height="6.3810096"
|
|
82
|
+
x="4.0258412"
|
|
83
|
+
y="2.4609373" />
|
|
84
|
+
<rect
|
|
85
|
+
style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
86
|
+
id="rect955-6"
|
|
87
|
+
width="3.6778843"
|
|
88
|
+
height="4.3371396"
|
|
89
|
+
x="5.3046875"
|
|
90
|
+
y="4.5048075" />
|
|
91
|
+
<rect
|
|
92
|
+
style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
93
|
+
id="rect955-68"
|
|
94
|
+
width="3.6778848"
|
|
95
|
+
height="6.3810096"
|
|
96
|
+
x="7.7433882"
|
|
97
|
+
y="4.9393029" />
|
|
98
|
+
<rect
|
|
99
|
+
style="fill:#ffccaa;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
100
|
+
id="rect955-6-6"
|
|
101
|
+
width="3.6778843"
|
|
102
|
+
height="4.3371396"
|
|
103
|
+
x="9.022234"
|
|
104
|
+
y="6.9831729" />
|
|
105
|
+
<path
|
|
106
|
+
d="M 11.460937,4.5048077 H 9.6021631 V 3.8852163 L 7.7433894,2.0264423 H 3.40625 v 7.4350961 h 3.717548 v 2.4783646 h 6.195913 V 6.3635817 Z m 0,0.8762376 0.982539,0.9825364 H 11.460937 Z M 7.7433894,2.9026799 8.7259291,3.8852163 H 7.7433894 Z M 4.0258413,2.6460336 H 7.123798 V 4.5048077 H 8.982572 V 8.841947 H 4.0258413 Z M 12.700119,11.320312 H 7.7433894 V 9.4615384 H 9.6021631 V 5.124399 h 1.2391829 v 1.858774 h 1.858773 z"
|
|
107
|
+
id="path2-0"
|
|
108
|
+
style="stroke-width:0.826122;fill:#ff6600" />
|
|
109
|
+
</svg>
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
width="800px"
|
|
6
|
+
height="800px"
|
|
7
|
+
viewBox="0 0 1024 1024"
|
|
8
|
+
class="icon"
|
|
9
|
+
version="1.1"
|
|
10
|
+
id="svg24"
|
|
11
|
+
sodipodi:docname="trash-can-svgrepo-com.svg"
|
|
12
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
17
|
+
<defs
|
|
18
|
+
id="defs28" />
|
|
19
|
+
<sodipodi:namedview
|
|
20
|
+
id="namedview26"
|
|
21
|
+
pagecolor="#ffffff"
|
|
22
|
+
bordercolor="#000000"
|
|
23
|
+
borderopacity="0.25"
|
|
24
|
+
inkscape:showpageshadow="2"
|
|
25
|
+
inkscape:pageopacity="0.0"
|
|
26
|
+
inkscape:pagecheckerboard="0"
|
|
27
|
+
inkscape:deskcolor="#d1d1d1"
|
|
28
|
+
showgrid="false"
|
|
29
|
+
inkscape:zoom="0.76279144"
|
|
30
|
+
inkscape:cx="140.92974"
|
|
31
|
+
inkscape:cy="398.5362"
|
|
32
|
+
inkscape:window-width="1920"
|
|
33
|
+
inkscape:window-height="1017"
|
|
34
|
+
inkscape:window-x="-8"
|
|
35
|
+
inkscape:window-y="-8"
|
|
36
|
+
inkscape:window-maximized="1"
|
|
37
|
+
inkscape:current-layer="svg24" />
|
|
38
|
+
<g
|
|
39
|
+
id="g322"
|
|
40
|
+
transform="matrix(0.97045692,0,0,1,15.611285,20.774925)">
|
|
41
|
+
<path
|
|
42
|
+
d="m 773.13884,396.47855 h 57.57689 c 6.90196,0 12.62333,5.63055 12.62333,12.62333 v 26.97214 c 0,6.90196 -5.63055,12.62332 -12.62333,12.62332 h -57.57689 z"
|
|
43
|
+
fill="#a4a9ad"
|
|
44
|
+
id="path2"
|
|
45
|
+
style="stroke-width:0.908153" />
|
|
46
|
+
<path
|
|
47
|
+
d="m 773.13884,396.47855 h 26.88133 v 52.21879 h -26.88133 z"
|
|
48
|
+
id="path4" fill="#4d4d4d" fill-opacity="1" />
|
|
49
|
+
<path
|
|
50
|
+
d="m 249.86116,396.47855 h -57.57689 c -6.90196,0 -12.62333,5.63055 -12.62333,12.62333 v 26.97214 c 0,6.90196 5.63055,12.62332 12.62333,12.62332 h 57.57689 z"
|
|
51
|
+
fill="#a4a9ad"
|
|
52
|
+
id="path6"
|
|
53
|
+
style="stroke-width:0.908153" />
|
|
54
|
+
<path
|
|
55
|
+
d="m 222.97983,396.47855 h 26.88133 v 52.21879 h -26.88133 z"
|
|
56
|
+
id="path8" fill="#4d4d4d" fill-opacity="1" />
|
|
57
|
+
<path
|
|
58
|
+
d="M 686.6,214.2 H 615.9 V 158 c 0,-11.7 -9.9,-21.7 -21.7,-21.7 H 428.7 C 417,136.3 407,146.2 407,158 v 56.2 H 336.3 V 158 c 0,-50.9 41.4,-92.4 92.4,-92.4 h 165.5 c 50.9,0 92.4,41.4 92.4,92.4 z"
|
|
59
|
+
fill="#a4a9ad"
|
|
60
|
+
id="path10" />
|
|
61
|
+
<path
|
|
62
|
+
d="M 686.4,151.8 H 615 c 0.6,2 0.9,4 0.9,6.2 v 56.2 h 70.7 V 158 c 0,-2.1 -0.1,-4.1 -0.2,-6.2 z M 336.3,158 v 56.2 H 407 V 158 c 0,-2.1 0.3,-4.2 0.9,-6.2 h -71.4 c -0.1,2.1 -0.2,4.1 -0.2,6.2 z"
|
|
63
|
+
id="path12" fill="#4d4d4d" fill-opacity="1" />
|
|
64
|
+
<path
|
|
65
|
+
d="M 776.4,208.8 C 776.4,190 761,174.6 742.2,174.6 H 280.8 c -18.8,0 -34.2,15.4 -34.2,34.2 v 48.9 c 0,18.8 15.4,34.2 34.2,34.2 h 461.4 c 18.8,0 34.2,-15.4 34.2,-34.2 z"
|
|
66
|
+
fill="#d1d3d3"
|
|
67
|
+
id="path14" />
|
|
68
|
+
<path
|
|
69
|
+
d="M 775.7,202.1 H 247.2 c -0.4,2.2 -0.7,4.4 -0.7,6.7 v 48.9 c 0,18.8 15.4,34.2 34.2,34.2 h 461.4 c 18.8,0 34.2,-15.4 34.2,-34.2 v -48.9 c 0.1,-2.3 -0.1,-4.5 -0.6,-6.7 z"
|
|
70
|
+
id="path16" fill="#4d4d4d" fill-opacity="1" />
|
|
71
|
+
<path
|
|
72
|
+
d="m 239.05414,318.64985 v 550.88553 c 0,26.06399 21.34159,47.31477 47.31476,47.31477 h 450.17138 c 26.06399,0 47.31476,-21.3416 47.31476,-47.31477 V 318.64985 Z"
|
|
73
|
+
fill="#d1d3d3"
|
|
74
|
+
id="path18"
|
|
75
|
+
style="stroke-width:0.908153" />
|
|
76
|
+
<path
|
|
77
|
+
d="m 239.05414,843.19895 v 26.33643 c 0,26.06399 21.34159,47.31477 47.31476,47.31477 h 450.17138 c 26.06399,0 47.31476,-21.3416 47.31476,-47.31477 v -26.33643 z m 0,-524.5491 H 783.94586 V 386.0348 H 239.05414 Z"
|
|
78
|
+
id="path20" fill="#4d4d4d" fill-opacity="1" />
|
|
79
|
+
<path
|
|
80
|
+
d="m 852.3,263.7 c 0,-18.8 -15.4,-34.2 -34.2,-34.2 H 204.9 c -18.8,0 -34.2,15.4 -34.2,34.2 v 35.2 c 0,18.8 15.4,34.2 34.2,34.2 h 613.2 c 18.8,0 34.2,-15.4 34.2,-34.2 z M 511.5,818.1 c -19.5,0 -35.4,-15.8 -35.4,-35.4 V 451 c 0,-19.5 15.8,-35.4 35.4,-35.4 19.6,0 35.4,15.8 35.4,35.4 v 331.8 c -0.1,19.5 -15.9,35.3 -35.4,35.3 z m -163.5,0 c -19.5,0 -35.4,-15.8 -35.4,-35.4 V 451 c 0,-19.5 15.8,-35.4 35.4,-35.4 19.5,0 35.4,15.8 35.4,35.4 v 331.8 c 0,19.5 -15.9,35.3 -35.4,35.3 z m 326.9,0 c -19.5,0 -35.4,-15.8 -35.4,-35.4 V 451 c 0,-19.5 15.8,-35.4 35.4,-35.4 19.5,0 35.4,15.8 35.4,35.4 v 331.8 c 0,19.5 -15.8,35.3 -35.4,35.3 z"
|
|
81
|
+
fill="#a4a9ad"
|
|
82
|
+
id="path22" />
|
|
83
|
+
</g>
|
|
84
|
+
</svg>
|