boris-behav-obs 8.16.6__py3-none-any.whl → 9.7.2__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.
- boris/__init__.py +1 -1
- boris/__main__.py +1 -1
- boris/about.py +24 -40
- boris/add_modifier.py +88 -80
- boris/add_modifier_ui.py +235 -131
- boris/advanced_event_filtering.py +23 -29
- boris/analysis_plugins/__init__.py +0 -0
- boris/analysis_plugins/_latency.py +59 -0
- boris/analysis_plugins/irr_cohen_kappa.py +109 -0
- boris/analysis_plugins/irr_cohen_kappa_with_modifiers.py +112 -0
- boris/analysis_plugins/irr_weighted_cohen_kappa.py +157 -0
- boris/analysis_plugins/irr_weighted_cohen_kappa_with_modifiers.py +162 -0
- boris/analysis_plugins/list_of_dataframe_columns.py +22 -0
- boris/analysis_plugins/number_of_occurences.py +22 -0
- boris/analysis_plugins/number_of_occurences_by_independent_variable.py +54 -0
- boris/analysis_plugins/time_budget.py +61 -0
- boris/behav_coding_map_creator.py +228 -229
- boris/behavior_binary_table.py +33 -50
- boris/behaviors_coding_map.py +17 -18
- boris/boris_cli.py +6 -25
- boris/cmd_arguments.py +12 -1
- boris/coding_pad.py +16 -34
- boris/config.py +108 -49
- boris/config_file.py +58 -67
- boris/connections.py +105 -58
- boris/converters.py +13 -37
- boris/converters_ui.py +187 -110
- boris/cooccurence.py +250 -0
- boris/core.py +2106 -1277
- boris/core_qrc.py +15892 -10829
- boris/core_ui.py +941 -806
- boris/db_functions.py +17 -42
- boris/dev.py +134 -0
- boris/dialog.py +461 -242
- boris/duration_widget.py +9 -14
- boris/edit_event.py +61 -31
- boris/edit_event_ui.py +208 -97
- boris/event_operations.py +405 -281
- boris/events_cursor.py +25 -17
- boris/events_snapshots.py +36 -82
- boris/exclusion_matrix.py +4 -9
- boris/export_events.py +180 -203
- boris/export_observation.py +60 -73
- boris/external_processes.py +123 -98
- boris/geometric_measurement.py +427 -218
- boris/gui_utilities.py +91 -14
- boris/image_overlay.py +4 -4
- boris/import_observations.py +190 -98
- boris/ipc_mpv.py +304 -0
- boris/irr.py +20 -57
- boris/latency.py +31 -24
- boris/measurement_widget.py +14 -18
- boris/media_file.py +17 -19
- boris/menu_options.py +16 -6
- boris/modifier_coding_map_creator.py +1013 -0
- boris/modifiers_coding_map.py +7 -9
- boris/mpv2.py +127 -36
- boris/observation.py +493 -210
- boris/observation_operations.py +1010 -391
- boris/observation_ui.py +573 -363
- boris/observations_list.py +51 -58
- boris/otx_parser.py +74 -68
- boris/param_panel.py +45 -59
- boris/param_panel_ui.py +254 -138
- boris/player_dock_widget.py +91 -56
- boris/plot_data_module.py +18 -53
- boris/plot_events.py +56 -153
- boris/plot_events_rt.py +16 -30
- boris/plot_spectrogram_rt.py +80 -56
- boris/plot_waveform_rt.py +23 -48
- boris/plugins.py +431 -0
- boris/portion/__init__.py +18 -8
- boris/portion/const.py +35 -18
- boris/portion/dict.py +5 -5
- boris/portion/func.py +2 -2
- boris/portion/interval.py +21 -41
- boris/portion/io.py +41 -32
- boris/preferences.py +304 -123
- boris/preferences_ui.py +684 -227
- boris/project.py +293 -270
- boris/project_functions.py +618 -537
- boris/project_import_export.py +204 -213
- boris/project_ui.py +673 -441
- boris/qrc_boris.py +6 -3
- boris/qrc_boris5.py +6 -3
- boris/select_modifiers.py +62 -90
- boris/select_observations.py +19 -197
- boris/select_subj_behav.py +67 -39
- boris/state_events.py +51 -33
- boris/subjects_pad.py +6 -8
- boris/synthetic_time_budget.py +25 -17
- boris/time_budget_functions.py +169 -169
- boris/time_budget_widget.py +71 -86
- boris/transitions.py +41 -41
- boris/utilities.py +562 -222
- boris/version.py +3 -3
- boris/video_equalizer.py +16 -14
- boris/video_equalizer_ui.py +199 -130
- boris/video_operations.py +78 -28
- boris/view_df.py +104 -0
- boris/view_df_ui.py +75 -0
- boris/write_event.py +240 -136
- boris_behav_obs-9.7.2.dist-info/METADATA +140 -0
- boris_behav_obs-9.7.2.dist-info/RECORD +109 -0
- {boris_behav_obs-8.16.6.dist-info → boris_behav_obs-9.7.2.dist-info}/WHEEL +1 -1
- boris_behav_obs-9.7.2.dist-info/entry_points.txt +2 -0
- boris/README.TXT +0 -22
- boris/add_modifier.ui +0 -323
- boris/converters.ui +0 -289
- boris/core.qrc +0 -37
- boris/core.ui +0 -1571
- boris/edit_event.ui +0 -233
- boris/icons/logo_eye.ico +0 -0
- boris/map_creator.py +0 -982
- boris/observation.ui +0 -814
- boris/param_panel.ui +0 -379
- boris/preferences.ui +0 -537
- boris/project.ui +0 -1074
- boris/vlc_local.py +0 -90
- boris_behav_obs-8.16.6.dist-info/LICENSE.TXT +0 -674
- boris_behav_obs-8.16.6.dist-info/METADATA +0 -134
- boris_behav_obs-8.16.6.dist-info/RECORD +0 -106
- boris_behav_obs-8.16.6.dist-info/entry_points.txt +0 -2
- {boris → boris_behav_obs-9.7.2.dist-info/licenses}/LICENSE.TXT +0 -0
- {boris_behav_obs-8.16.6.dist-info → boris_behav_obs-9.7.2.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
boris/__init__.py,sha256=iAtmVMy22TJpMmxVTMSK_6-wXnCbx1ogvWgfYEcbHzU,773
|
|
2
|
+
boris/__main__.py,sha256=ANjTbXgXDoz2nB1tCtOIllfIVotCa602iebACX7rXaE,764
|
|
3
|
+
boris/about.py,sha256=VPa8zeu0bMb1LRXDq8uUSG_7mSbkb2HTk1AtWbzWQwE,5366
|
|
4
|
+
boris/add_modifier.py,sha256=l9LSa_9FAV9CnBgm26tJqhMAdnFoBQafZLyt9pTKmac,26240
|
|
5
|
+
boris/add_modifier_ui.py,sha256=Y7TLO5uS6zW7zpjXmjA4V_VIp_bFDNtjOTbJ9Q6m-mQ,11601
|
|
6
|
+
boris/advanced_event_filtering.py,sha256=VlvU12mL6xYacZOvJAi5uLpHMcmAw5Pvuvmka-PN29c,15469
|
|
7
|
+
boris/behav_coding_map_creator.py,sha256=5XGY4AZOsGrOj0xHT-dIeiR5ejBhPShsnYNfIQFEYsU,38788
|
|
8
|
+
boris/behavior_binary_table.py,sha256=bpmRDpEjq0rw3YOCoN_He3kfUe8A_R6E48kQR7KnkH8,12453
|
|
9
|
+
boris/behaviors_coding_map.py,sha256=xIGJxp2eghrpiGDmYH73eJPERuyc4A_54uT-Got3zTs,7302
|
|
10
|
+
boris/boris_cli.py,sha256=Bc51DEMcD79ZZfM9pCzpaWU6iT6b8gNwR3n8fr42_4E,13193
|
|
11
|
+
boris/cmd_arguments.py,sha256=85zDEIW6UiXRb0TQWDxR664pQQtG5J-7Ipv91y3JixQ,2065
|
|
12
|
+
boris/coding_pad.py,sha256=BaDWYIzoRgl0LHymPDmcBMFfwG7Z0XROqqMwkkADtz0,10940
|
|
13
|
+
boris/config.py,sha256=xQXRzSbFLS9rYnJwx6jNrBIZ16XGFbfP2_43wKqPwyM,18057
|
|
14
|
+
boris/config_file.py,sha256=4jBGMaVzjoVKSeOBEHXVjbsyubN08ghQTsrm4s7Kqsw,13551
|
|
15
|
+
boris/connections.py,sha256=KsC17LnS4tRM6O3Nu3mD1H9kQ7uYhhad9229jXfGF94,19774
|
|
16
|
+
boris/converters.py,sha256=n6gDM9x2hS-ZOoHLruiifuXxnC7ERsUukiFokhHZPoQ,11678
|
|
17
|
+
boris/converters_ui.py,sha256=uu7LOBV_fKv2DBdOqsqPwjGsjgONr5ODBoscAA-EP48,9900
|
|
18
|
+
boris/cooccurence.py,sha256=tVERC-V8MWjWHlGEfDuu08iS94qjt4do-38jwI62QaY,10367
|
|
19
|
+
boris/core.py,sha256=TmKbiFFk3mh_cl4KNLJWwGpc3z4Sz_lh_T9Mqy7P68Q,232241
|
|
20
|
+
boris/core_qrc.py,sha256=Hz51Xw70ZIlDbYB281nfGtCm43_ItYhamMu2T5X8Tu8,639882
|
|
21
|
+
boris/core_ui.py,sha256=uDAI9mbadBe2mSsgugzNfRHxASc6Mu5kUf5tB9CZCjY,77445
|
|
22
|
+
boris/db_functions.py,sha256=TfCJ0Hq0pTFOKrZz3RzdvnR-NKCmrPHU2qL9BSXeeGQ,13379
|
|
23
|
+
boris/dev.py,sha256=9pUElbjl9g17rFUJXX5aVSu55_iIKIuDxNdrB0DI_d0,3671
|
|
24
|
+
boris/dialog.py,sha256=LqZ73R9cwiL4qzKyMxeS2G8PKnbVZ0xFvZHw-oSek0M,34039
|
|
25
|
+
boris/duration_widget.py,sha256=GjZgCAMGOcsNjoPiRImEVe6yMkH2vuNoh44ulpd5nlg,6924
|
|
26
|
+
boris/edit_event.py,sha256=llfICwuDq4ADKtPlq8dtIN-81jZ92JseUHhUSt5dh6s,7705
|
|
27
|
+
boris/edit_event_ui.py,sha256=qFgt00cejGB6UGC1mFkyZcsIAdvMeYMK0WYjZtJl1T0,9207
|
|
28
|
+
boris/event_operations.py,sha256=FlL_8FF-BR2OtUCrIplxktybThh7WN2MWkk3L3ZyHyA,40743
|
|
29
|
+
boris/events_cursor.py,sha256=VPY_ygD0fxE5lp25mcd2l00XQXurCR6hprffF4tKRbU,2078
|
|
30
|
+
boris/events_snapshots.py,sha256=PjWzQvUGQtIcEc_7FDsRphf7fAhhTccQgYc2eQSA65g,27621
|
|
31
|
+
boris/exclusion_matrix.py,sha256=K_o8pEMYRQ3curgRQYkn5hPRksLDitICuwjB7mpVRPA,5269
|
|
32
|
+
boris/export_events.py,sha256=BxDYxfhkS99d9L3-egrri3lHFp3X_4Tl3F8ZrnE1yVU,39745
|
|
33
|
+
boris/export_observation.py,sha256=B8ASj6H70xfcTSUHrbcJa6YOYjih2WD4DSiUtXj5eAk,50764
|
|
34
|
+
boris/external_processes.py,sha256=PogE2eEiQLVZ2useMamQMOAeDmMUX_TlIpqPKLMm6Ak,13607
|
|
35
|
+
boris/geometric_measurement.py,sha256=4pI-AYpBSFlJBqS-f8dnkgLtj_Z2E5kwwAdh6WwZ4kk,35049
|
|
36
|
+
boris/gui_utilities.py,sha256=Kv75XgFmicPUKvdRPj_yBYoDNc912cfl1IQrgw5T2kI,5458
|
|
37
|
+
boris/image_overlay.py,sha256=zZAL8MTt2i2s58CuX81Nym3rJ5pKiTeP4AO8WbIUonM,2527
|
|
38
|
+
boris/import_observations.py,sha256=zKrkpk1ADxTj2BECactPPOhU6wtrh3TjtOWue2HCT5w,9074
|
|
39
|
+
boris/ipc_mpv.py,sha256=12x1Nthp4nsYsS39fbZK9B0Jl4hCrlS2wszg680wduQ,9222
|
|
40
|
+
boris/irr.py,sha256=n6Y_Y9iEKOf9_7EE_lDRNei7tq2wkFKk_JVflm9UQdk,22335
|
|
41
|
+
boris/latency.py,sha256=48z9L_A582-wKCfD0M3h0uyYkeL2ezjlQAS_GzeoOe0,9739
|
|
42
|
+
boris/measurement_widget.py,sha256=lZV62KtK6TjdoNbKxj3uyNAuL5dfnQnn7mYwzMo-dOM,4480
|
|
43
|
+
boris/media_file.py,sha256=Wnw-PCyAz6CA00zhjrx0UTgXZ0wmHuNlnElV_TzJ_2M,4818
|
|
44
|
+
boris/menu_options.py,sha256=uznHFMtpGRWL6Eig10gJ5tOiypgOr9XVyxRiuCbgN9U,7146
|
|
45
|
+
boris/modifier_coding_map_creator.py,sha256=3Ihh75TCNI0KkQKHuosYibAhGbdgjdlRZGmna_KuAjo,33240
|
|
46
|
+
boris/modifiers_coding_map.py,sha256=oT56ZY_PXhEJsMoblEsyNMAPbDpv7ZMOCnvmt7Ibx_Y,4554
|
|
47
|
+
boris/mpv.py,sha256=EfzIHjPbgewG4w3smEtqEUPZoVwYmMQkL4Q8ZyW-a58,76410
|
|
48
|
+
boris/mpv2.py,sha256=IUI4t4r9GYX7G5OXTjd3RhMMOkDdfal_15buBgksLsk,92152
|
|
49
|
+
boris/observation.py,sha256=10UkVyY8TDySntIX_-H-IsuFdiF6tEcmC6JQUzD6wYg,57139
|
|
50
|
+
boris/observation_operations.py,sha256=mOx3dU8x6LQF4TBVhyyWBo4yyonpvPMyaLoHLdlmrrc,105716
|
|
51
|
+
boris/observation_ui.py,sha256=DAnU94QBNvkLuHT6AxTwqSk_D_n6VUhSl8PexZv_dUk,33309
|
|
52
|
+
boris/observations_list.py,sha256=NqwECGHtHYmKhSe-qCfqPmJ24SSfzlXvIXS2i3op_zE,10591
|
|
53
|
+
boris/otx_parser.py,sha256=70QvilzFHXbjAHR88YH0aEXJ3xxheLS5fZGgHFHGpNE,16367
|
|
54
|
+
boris/param_panel.py,sha256=C7MzWg-OVjjxKbXPFC0ykOLpxbwsqEmG0jWgzBUwOEA,8695
|
|
55
|
+
boris/param_panel_ui.py,sha256=4emQDFmuL4_R7bKxosLjdUb-VSPWkDm7suy38F5EKcA,13260
|
|
56
|
+
boris/player_dock_widget.py,sha256=rdP0w6Wac7R3UMqJeHl7GNvT1hElu_x_VgNkg4Ut-6s,5880
|
|
57
|
+
boris/plot_data_module.py,sha256=6QbLKfyGp4TYRyHnB9G45y5XrpeXLytcorltEAWfYak,16562
|
|
58
|
+
boris/plot_events.py,sha256=tKiUWH0TNSkK7xz5Vf0tAD3KiuAalv6UZEVtOnoFpWY,24059
|
|
59
|
+
boris/plot_events_rt.py,sha256=xJmjwqhQxCN4FDBYRQ0O2eHm356Rbexzr3m1qTefMDU,8326
|
|
60
|
+
boris/plot_spectrogram_rt.py,sha256=wDhnkqwjd2UfCxrfOejOUxoNOqfMNo6vo1JSvYgM-2A,10925
|
|
61
|
+
boris/plot_waveform_rt.py,sha256=RNXhcBzRKnoGoVjRAHsVvOaj0BJbbI2cpCMjMUiGqX0,7534
|
|
62
|
+
boris/plugins.py,sha256=sn2r8kMxkzaO8kNhem-cTlTBrym9MlFPyRT9Av9rHGg,15603
|
|
63
|
+
boris/preferences.py,sha256=fjyoBKWsKoRq7YKqE_BzzSSPENPwd7ZqL_HY2bqd1jA,21846
|
|
64
|
+
boris/preferences_ui.py,sha256=zkmbQbkb0WqhPyMtnU-DU9Y2enSph_r-LnwsmEOgzkk,35090
|
|
65
|
+
boris/project.py,sha256=nyXfCDY_rLP3jC1QGv-280jUKgbABqESjOm7I19rJ1U,86432
|
|
66
|
+
boris/project_functions.py,sha256=Z4e8mLeFUBOdZHYTQhTqzj-s0ppiUgOFkpjsQtkefVA,83026
|
|
67
|
+
boris/project_import_export.py,sha256=oBG1CSXfKISsb3TLNT-8BH8kZPAzxIYSNemlLVH1Lh8,38560
|
|
68
|
+
boris/project_ui.py,sha256=yB-ewhHt8S8DTTRIk-dNK2tPMNU24lNji9fDW_Xazu8,38805
|
|
69
|
+
boris/qrc_boris.py,sha256=aH-qUirYY1CGxmTK1SFCPvuZfazIHX4DdUKF1gxZeYM,675008
|
|
70
|
+
boris/qrc_boris5.py,sha256=prnOw7VGXWXRuVCYp_yIrmWhrlG1F9rx-3BQvkPenjY,161608
|
|
71
|
+
boris/select_modifiers.py,sha256=42uG9F75pfPoPJ-blp-vFgmpBpVJtL42FlIxpNpq9z4,13319
|
|
72
|
+
boris/select_observations.py,sha256=k7c3FNVQW74YGH9oFmtHXRVCRnpKGhjCVk3cQtyLML8,8027
|
|
73
|
+
boris/select_subj_behav.py,sha256=ulXbsRY-AIyQRSwXhVlvkNRS_eqWaCvkDKTTyOLqvoE,11742
|
|
74
|
+
boris/state_events.py,sha256=iUrC5ypwIKOnmoq0moDQwtH9-DrgiJ81zL2pMxESucU,7790
|
|
75
|
+
boris/subjects_pad.py,sha256=lSRRGfLfD10_YpGua8RGVdKhoXlsXawGhNibPkRhuzM,3541
|
|
76
|
+
boris/synthetic_time_budget.py,sha256=3Eb9onMLmgqCLd50CuxV9L8RV2ESzfaMWvPK_bXUMMk,10489
|
|
77
|
+
boris/time_budget_functions.py,sha256=SbGyTF2xySEqBdRJZeWFTirruvK3r6pwM6e4Gz17W1s,52186
|
|
78
|
+
boris/time_budget_widget.py,sha256=z-tyITBtIz-KH1H2OdMB5a8x9QQLK7Wu96-zkC6NVDA,43213
|
|
79
|
+
boris/transitions.py,sha256=okyDCO-Vn4p_Fixd8cGiSIaUhUxG5ePIOqGSuP52g_c,12246
|
|
80
|
+
boris/utilities.py,sha256=BJXl8IZHQC93ZcaN9cQrWmrg3Rr3F8_Q71Tz6Im3A0s,58104
|
|
81
|
+
boris/version.py,sha256=nxNEQuFMlM61a6BDWkA3uvxezVOOghrY584zWJMO4IU,787
|
|
82
|
+
boris/video_equalizer.py,sha256=cm2JXe1eAPkqDzxYB2OMKyuveMBdq4a9-gD1bBorbn4,5823
|
|
83
|
+
boris/video_equalizer_ui.py,sha256=1CG3s79eM4JAbaCx3i1ILZXLceb41_gGXlOLNfpBgnw,10142
|
|
84
|
+
boris/video_operations.py,sha256=BbH9NXfNL597edX2nX0s6dJcQIvv--_DXx2kjhLAkfo,10799
|
|
85
|
+
boris/view_df.py,sha256=fhcNMFFVbQ4ZTpPwN_4Bg66DDIoV25zaPryZUsOxsKg,3338
|
|
86
|
+
boris/view_df_ui.py,sha256=CaMeRH_vQ00CTDDFQn73ZZaS-r8BSTWpL-dMCFqzJ_Q,2775
|
|
87
|
+
boris/write_event.py,sha256=xC-dUjgPS4-tvrQfvyL7O_xi-tyQI7leSiSV8_x8hgg,23817
|
|
88
|
+
boris/analysis_plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
+
boris/analysis_plugins/_latency.py,sha256=9kCdFDtb5Zdao1xFpioi_exm_IxyGm6RlY3Opn6GUFo,2030
|
|
90
|
+
boris/analysis_plugins/irr_cohen_kappa.py,sha256=OqmivIE6i1hTcFVMp0EtY0Sr7C1Jm9t0D4IKbDfTJ7U,4268
|
|
91
|
+
boris/analysis_plugins/irr_cohen_kappa_with_modifiers.py,sha256=DtzFLRToR9GdkmWYDcCmpSvxHGpguVp-_n8F-t7ND7c,4461
|
|
92
|
+
boris/analysis_plugins/irr_weighted_cohen_kappa.py,sha256=xpDjcDkwPtTM3SI9UC2RIhma1nqFU_qcGSMq7QpMMHc,6435
|
|
93
|
+
boris/analysis_plugins/irr_weighted_cohen_kappa_with_modifiers.py,sha256=DXrvac4p3_jzakHi_hTW8ZG9rniGo4YCyUH_jJ7fz8c,6744
|
|
94
|
+
boris/analysis_plugins/list_of_dataframe_columns.py,sha256=VEiVhxADtyaIKN4JrfFV02TuTAfWhQ60bf1mHVQp27I,437
|
|
95
|
+
boris/analysis_plugins/number_of_occurences.py,sha256=IDyDrdezqvSKT3BlD8QWpSYk8X9nnBBLI80OUnFJ3bY,509
|
|
96
|
+
boris/analysis_plugins/number_of_occurences_by_independent_variable.py,sha256=_7HTKXsyxNfyO69tP8zkQEHzT0C7qHdL1sqBjnUfRQY,1459
|
|
97
|
+
boris/analysis_plugins/time_budget.py,sha256=bzOS0FUJ7P2kQ9d-TxXq2_OCpo-MngGDFeU5aKsniDQ,2188
|
|
98
|
+
boris/portion/__init__.py,sha256=KmMu4q-iIFO5nrVRIP340mEzxzOlZQqaRupiDmS70es,642
|
|
99
|
+
boris/portion/const.py,sha256=JSYZUktIPCekB6qSom1FPfASn-X7w0G5-aNNHKhIZnw,1715
|
|
100
|
+
boris/portion/dict.py,sha256=uNM-LEY52CZ2VNMMW_C9QukoyTvPlQf8vcbGa1lQBHI,11281
|
|
101
|
+
boris/portion/func.py,sha256=mSQr20YS1ug7R1fRqBg8LifjtXDRvJ6Kjc3WOeL9P34,2172
|
|
102
|
+
boris/portion/interval.py,sha256=sOlj3MAGGaB-JxCkigS-n3qw0fY7TANAsXv1pavr8J4,19931
|
|
103
|
+
boris/portion/io.py,sha256=kpq44pw3xnIyAlPwaR5qRHKRdZ72f8HS9YVIWs5k2pk,6367
|
|
104
|
+
boris_behav_obs-9.7.2.dist-info/licenses/LICENSE.TXT,sha256=WJ7YI-moTFb-uVrFjnzzhGJrnL9P2iqQe8NuED3hutI,35141
|
|
105
|
+
boris_behav_obs-9.7.2.dist-info/METADATA,sha256=P6RFby3ZA3MRjLFNQyoVzUl9asye-9vIbGOw08fMEUc,5385
|
|
106
|
+
boris_behav_obs-9.7.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
107
|
+
boris_behav_obs-9.7.2.dist-info/entry_points.txt,sha256=k__8XvFi4vaA4QFvQehCZjYkKmZH34HSAJI2iYCWrMs,52
|
|
108
|
+
boris_behav_obs-9.7.2.dist-info/top_level.txt,sha256=fJSgm62S7WesiwTorGbOO4nNN0yzgZ3klgfGi3Px4qI,6
|
|
109
|
+
boris_behav_obs-9.7.2.dist-info/RECORD,,
|
boris/README.TXT
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
BORIS
|
|
2
|
-
Behavioral Observation Research Interactive Software
|
|
3
|
-
|
|
4
|
-
Copyright 2012-2023 Olivier Friard
|
|
5
|
-
|
|
6
|
-
BORIS is free software; you can redistribute it and/or modify
|
|
7
|
-
it under the terms of the GNU General Public License as published by
|
|
8
|
-
the Free Software Foundation; either version 2 of the License, or
|
|
9
|
-
(at your option) any later version.
|
|
10
|
-
|
|
11
|
-
BORIS is distributed in the hope that it will be useful,
|
|
12
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
-
GNU General Public License for more details.
|
|
15
|
-
|
|
16
|
-
You should have received a copy of the GNU General Public License
|
|
17
|
-
along with this program; if not, write to the Free Software
|
|
18
|
-
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
19
|
-
MA 02110-1301, USA.
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
boris/add_modifier.ui
DELETED
|
@@ -1,323 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<ui version="4.0">
|
|
3
|
-
<class>Dialog</class>
|
|
4
|
-
<widget class="QDialog" name="Dialog">
|
|
5
|
-
<property name="geometry">
|
|
6
|
-
<rect>
|
|
7
|
-
<x>0</x>
|
|
8
|
-
<y>0</y>
|
|
9
|
-
<width>638</width>
|
|
10
|
-
<height>636</height>
|
|
11
|
-
</rect>
|
|
12
|
-
</property>
|
|
13
|
-
<property name="windowTitle">
|
|
14
|
-
<string>Set modifiers</string>
|
|
15
|
-
</property>
|
|
16
|
-
<layout class="QVBoxLayout" name="verticalLayout_5">
|
|
17
|
-
<item>
|
|
18
|
-
<layout class="QVBoxLayout" name="verticalLayout_4">
|
|
19
|
-
<item>
|
|
20
|
-
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
|
21
|
-
<item>
|
|
22
|
-
<layout class="QVBoxLayout" name="verticalLayout_2">
|
|
23
|
-
<item>
|
|
24
|
-
<widget class="QLabel" name="lbModifier">
|
|
25
|
-
<property name="text">
|
|
26
|
-
<string>Modifier</string>
|
|
27
|
-
</property>
|
|
28
|
-
</widget>
|
|
29
|
-
</item>
|
|
30
|
-
<item>
|
|
31
|
-
<widget class="QLineEdit" name="leModifier"/>
|
|
32
|
-
</item>
|
|
33
|
-
<item>
|
|
34
|
-
<widget class="QLabel" name="lbCode">
|
|
35
|
-
<property name="text">
|
|
36
|
-
<string>Key code</string>
|
|
37
|
-
</property>
|
|
38
|
-
</widget>
|
|
39
|
-
</item>
|
|
40
|
-
<item>
|
|
41
|
-
<widget class="QLineEdit" name="leCode"/>
|
|
42
|
-
</item>
|
|
43
|
-
<item>
|
|
44
|
-
<widget class="QLabel" name="lbCodeHelp">
|
|
45
|
-
<property name="text">
|
|
46
|
-
<string>Key code is case sensitive. Type one character or a function key (F1, F2... F12)</string>
|
|
47
|
-
</property>
|
|
48
|
-
<property name="wordWrap">
|
|
49
|
-
<bool>true</bool>
|
|
50
|
-
</property>
|
|
51
|
-
</widget>
|
|
52
|
-
</item>
|
|
53
|
-
<item>
|
|
54
|
-
<spacer name="verticalSpacer">
|
|
55
|
-
<property name="orientation">
|
|
56
|
-
<enum>Qt::Vertical</enum>
|
|
57
|
-
</property>
|
|
58
|
-
<property name="sizeHint" stdset="0">
|
|
59
|
-
<size>
|
|
60
|
-
<width>20</width>
|
|
61
|
-
<height>40</height>
|
|
62
|
-
</size>
|
|
63
|
-
</property>
|
|
64
|
-
</spacer>
|
|
65
|
-
</item>
|
|
66
|
-
</layout>
|
|
67
|
-
</item>
|
|
68
|
-
<item>
|
|
69
|
-
<layout class="QVBoxLayout" name="verticalLayout_3">
|
|
70
|
-
<item>
|
|
71
|
-
<widget class="QPushButton" name="pbAddModifier">
|
|
72
|
-
<property name="text">
|
|
73
|
-
<string/>
|
|
74
|
-
</property>
|
|
75
|
-
</widget>
|
|
76
|
-
</item>
|
|
77
|
-
<item>
|
|
78
|
-
<widget class="QPushButton" name="pbModifyModifier">
|
|
79
|
-
<property name="text">
|
|
80
|
-
<string/>
|
|
81
|
-
</property>
|
|
82
|
-
</widget>
|
|
83
|
-
</item>
|
|
84
|
-
<item>
|
|
85
|
-
<spacer name="verticalSpacer_2">
|
|
86
|
-
<property name="orientation">
|
|
87
|
-
<enum>Qt::Vertical</enum>
|
|
88
|
-
</property>
|
|
89
|
-
<property name="sizeHint" stdset="0">
|
|
90
|
-
<size>
|
|
91
|
-
<width>20</width>
|
|
92
|
-
<height>40</height>
|
|
93
|
-
</size>
|
|
94
|
-
</property>
|
|
95
|
-
</spacer>
|
|
96
|
-
</item>
|
|
97
|
-
</layout>
|
|
98
|
-
</item>
|
|
99
|
-
<item>
|
|
100
|
-
<layout class="QVBoxLayout" name="verticalLayout">
|
|
101
|
-
<item>
|
|
102
|
-
<widget class="QTabWidget" name="tabWidgetModifiersSets">
|
|
103
|
-
<property name="maximumSize">
|
|
104
|
-
<size>
|
|
105
|
-
<width>16777215</width>
|
|
106
|
-
<height>30</height>
|
|
107
|
-
</size>
|
|
108
|
-
</property>
|
|
109
|
-
<property name="tabPosition">
|
|
110
|
-
<enum>QTabWidget::North</enum>
|
|
111
|
-
</property>
|
|
112
|
-
<property name="tabShape">
|
|
113
|
-
<enum>QTabWidget::Rounded</enum>
|
|
114
|
-
</property>
|
|
115
|
-
<property name="currentIndex">
|
|
116
|
-
<number>-1</number>
|
|
117
|
-
</property>
|
|
118
|
-
<property name="elideMode">
|
|
119
|
-
<enum>Qt::ElideNone</enum>
|
|
120
|
-
</property>
|
|
121
|
-
<property name="documentMode">
|
|
122
|
-
<bool>true</bool>
|
|
123
|
-
</property>
|
|
124
|
-
</widget>
|
|
125
|
-
</item>
|
|
126
|
-
<item>
|
|
127
|
-
<widget class="QLabel" name="lb_name">
|
|
128
|
-
<property name="text">
|
|
129
|
-
<string>Set name</string>
|
|
130
|
-
</property>
|
|
131
|
-
</widget>
|
|
132
|
-
</item>
|
|
133
|
-
<item>
|
|
134
|
-
<widget class="QLineEdit" name="le_name"/>
|
|
135
|
-
</item>
|
|
136
|
-
<item>
|
|
137
|
-
<widget class="QLabel" name="lb_description">
|
|
138
|
-
<property name="text">
|
|
139
|
-
<string>Description</string>
|
|
140
|
-
</property>
|
|
141
|
-
</widget>
|
|
142
|
-
</item>
|
|
143
|
-
<item>
|
|
144
|
-
<widget class="QLineEdit" name="le_description"/>
|
|
145
|
-
</item>
|
|
146
|
-
<item>
|
|
147
|
-
<widget class="QLabel" name="lbType">
|
|
148
|
-
<property name="text">
|
|
149
|
-
<string>Modifier type</string>
|
|
150
|
-
</property>
|
|
151
|
-
</widget>
|
|
152
|
-
</item>
|
|
153
|
-
<item>
|
|
154
|
-
<widget class="QComboBox" name="cbType">
|
|
155
|
-
<item>
|
|
156
|
-
<property name="text">
|
|
157
|
-
<string>Single selection</string>
|
|
158
|
-
</property>
|
|
159
|
-
</item>
|
|
160
|
-
<item>
|
|
161
|
-
<property name="text">
|
|
162
|
-
<string>Multiple selection</string>
|
|
163
|
-
</property>
|
|
164
|
-
</item>
|
|
165
|
-
<item>
|
|
166
|
-
<property name="text">
|
|
167
|
-
<string>Numeric</string>
|
|
168
|
-
</property>
|
|
169
|
-
</item>
|
|
170
|
-
<item>
|
|
171
|
-
<property name="text">
|
|
172
|
-
<string>Value from external data file</string>
|
|
173
|
-
</property>
|
|
174
|
-
</item>
|
|
175
|
-
</widget>
|
|
176
|
-
</item>
|
|
177
|
-
<item>
|
|
178
|
-
<widget class="QLabel" name="lbValues">
|
|
179
|
-
<property name="text">
|
|
180
|
-
<string>Values</string>
|
|
181
|
-
</property>
|
|
182
|
-
</widget>
|
|
183
|
-
</item>
|
|
184
|
-
<item>
|
|
185
|
-
<widget class="QListWidget" name="lwModifiers"/>
|
|
186
|
-
</item>
|
|
187
|
-
<item>
|
|
188
|
-
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
189
|
-
<item>
|
|
190
|
-
<widget class="QPushButton" name="pbMoveUp">
|
|
191
|
-
<property name="text">
|
|
192
|
-
<string>Move modifier up</string>
|
|
193
|
-
</property>
|
|
194
|
-
</widget>
|
|
195
|
-
</item>
|
|
196
|
-
<item>
|
|
197
|
-
<widget class="QPushButton" name="pbMoveDown">
|
|
198
|
-
<property name="text">
|
|
199
|
-
<string>Move modifier down</string>
|
|
200
|
-
</property>
|
|
201
|
-
</widget>
|
|
202
|
-
</item>
|
|
203
|
-
</layout>
|
|
204
|
-
</item>
|
|
205
|
-
<item>
|
|
206
|
-
<widget class="QPushButton" name="pbRemoveModifier">
|
|
207
|
-
<property name="text">
|
|
208
|
-
<string>Remove modifier</string>
|
|
209
|
-
</property>
|
|
210
|
-
</widget>
|
|
211
|
-
</item>
|
|
212
|
-
<item>
|
|
213
|
-
<widget class="QPushButton" name="pb_sort_modifiers">
|
|
214
|
-
<property name="text">
|
|
215
|
-
<string>Sort modifiers</string>
|
|
216
|
-
</property>
|
|
217
|
-
</widget>
|
|
218
|
-
</item>
|
|
219
|
-
<item>
|
|
220
|
-
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
|
221
|
-
<item>
|
|
222
|
-
<widget class="QPushButton" name="pbAddSet">
|
|
223
|
-
<property name="text">
|
|
224
|
-
<string>Add set of modifiers</string>
|
|
225
|
-
</property>
|
|
226
|
-
</widget>
|
|
227
|
-
</item>
|
|
228
|
-
<item>
|
|
229
|
-
<widget class="QPushButton" name="pbRemoveSet">
|
|
230
|
-
<property name="text">
|
|
231
|
-
<string>Remove set of modifiers</string>
|
|
232
|
-
</property>
|
|
233
|
-
</widget>
|
|
234
|
-
</item>
|
|
235
|
-
</layout>
|
|
236
|
-
</item>
|
|
237
|
-
<item>
|
|
238
|
-
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
|
239
|
-
<item>
|
|
240
|
-
<widget class="QPushButton" name="pbMoveSetLeft">
|
|
241
|
-
<property name="text">
|
|
242
|
-
<string>Move set left</string>
|
|
243
|
-
</property>
|
|
244
|
-
</widget>
|
|
245
|
-
</item>
|
|
246
|
-
<item>
|
|
247
|
-
<widget class="QPushButton" name="pbMoveSetRight">
|
|
248
|
-
<property name="text">
|
|
249
|
-
<string>Move set right</string>
|
|
250
|
-
</property>
|
|
251
|
-
</widget>
|
|
252
|
-
</item>
|
|
253
|
-
</layout>
|
|
254
|
-
</item>
|
|
255
|
-
<item>
|
|
256
|
-
<widget class="QPushButton" name="pb_add_subjects">
|
|
257
|
-
<property name="text">
|
|
258
|
-
<string>Add subjects as modifiers</string>
|
|
259
|
-
</property>
|
|
260
|
-
</widget>
|
|
261
|
-
</item>
|
|
262
|
-
<item>
|
|
263
|
-
<widget class="QPushButton" name="pb_load_file">
|
|
264
|
-
<property name="text">
|
|
265
|
-
<string>Load modifiers from file</string>
|
|
266
|
-
</property>
|
|
267
|
-
</widget>
|
|
268
|
-
</item>
|
|
269
|
-
<item>
|
|
270
|
-
<spacer name="verticalSpacer_3">
|
|
271
|
-
<property name="orientation">
|
|
272
|
-
<enum>Qt::Vertical</enum>
|
|
273
|
-
</property>
|
|
274
|
-
<property name="sizeHint" stdset="0">
|
|
275
|
-
<size>
|
|
276
|
-
<width>20</width>
|
|
277
|
-
<height>40</height>
|
|
278
|
-
</size>
|
|
279
|
-
</property>
|
|
280
|
-
</spacer>
|
|
281
|
-
</item>
|
|
282
|
-
</layout>
|
|
283
|
-
</item>
|
|
284
|
-
</layout>
|
|
285
|
-
</item>
|
|
286
|
-
<item>
|
|
287
|
-
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
|
288
|
-
<item>
|
|
289
|
-
<spacer name="horizontalSpacer">
|
|
290
|
-
<property name="orientation">
|
|
291
|
-
<enum>Qt::Horizontal</enum>
|
|
292
|
-
</property>
|
|
293
|
-
<property name="sizeHint" stdset="0">
|
|
294
|
-
<size>
|
|
295
|
-
<width>40</width>
|
|
296
|
-
<height>20</height>
|
|
297
|
-
</size>
|
|
298
|
-
</property>
|
|
299
|
-
</spacer>
|
|
300
|
-
</item>
|
|
301
|
-
<item>
|
|
302
|
-
<widget class="QPushButton" name="pbCancel">
|
|
303
|
-
<property name="text">
|
|
304
|
-
<string>Cancel</string>
|
|
305
|
-
</property>
|
|
306
|
-
</widget>
|
|
307
|
-
</item>
|
|
308
|
-
<item>
|
|
309
|
-
<widget class="QPushButton" name="pbOK">
|
|
310
|
-
<property name="text">
|
|
311
|
-
<string>OK</string>
|
|
312
|
-
</property>
|
|
313
|
-
</widget>
|
|
314
|
-
</item>
|
|
315
|
-
</layout>
|
|
316
|
-
</item>
|
|
317
|
-
</layout>
|
|
318
|
-
</item>
|
|
319
|
-
</layout>
|
|
320
|
-
</widget>
|
|
321
|
-
<resources/>
|
|
322
|
-
<connections/>
|
|
323
|
-
</ui>
|