├── .coveragerc ├── .flake8 ├── .github ├── actions │ └── install-qt-support │ │ ├── README.md │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── bootstrap-requirements.txt │ ├── check-style.yml │ ├── ets-from-source.yml │ ├── publish-on-pypi.yml │ ├── style-requirements.txt │ ├── test-doc-build.yml │ ├── test-with-edm.yml │ ├── test-with-pypi.yml │ ├── update-gh-pages-on-release.yml │ └── update-gh-pages.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── requirements.txt ├── source │ ├── api.rst │ ├── api │ │ ├── envisage.api.rst │ │ └── templates │ │ │ ├── modules.rst_t │ │ │ └── package.rst_t │ ├── changelog.rst │ ├── conf.py │ ├── e-logo-rev.png │ ├── envisage_core_documentation │ │ ├── core.rst │ │ ├── extension_points.rst │ │ ├── front.rst │ │ ├── glossary.rst │ │ ├── gui_application.rst │ │ ├── howto_create_a_plugin.rst │ │ ├── images │ │ │ └── application.png │ │ ├── index.rst │ │ ├── introduction.rst │ │ ├── message_of_the_day.rst │ │ ├── plugins.rst │ │ ├── preferences.rst │ │ ├── services.rst │ │ └── workbench.rst │ ├── index.rst │ └── tasks_user_manual │ │ ├── extensibility.rst │ │ ├── front.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ ├── layout.rst │ │ └── menus.rst └── update_gh_pages.py ├── edm.yaml ├── envisage ├── __init__.py ├── api.py ├── application.py ├── application_event.py ├── composite_plugin_manager.py ├── core_plugin.py ├── egg_basket_plugin_manager.py ├── egg_plugin_manager.py ├── egg_utils.py ├── examples │ ├── __init__.py │ ├── _demo.py │ ├── _etsdemo_info.py │ ├── demo │ │ ├── GUI_Application │ │ │ └── traitsui_gui_app.py │ │ ├── Hello_World │ │ │ └── hello_world.py │ │ ├── MOTD │ │ │ ├── acme │ │ │ │ ├── __init__.py │ │ │ │ └── motd │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── i_message.py │ │ │ │ │ ├── i_motd.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── motd.py │ │ │ │ │ ├── motd_plugin.py │ │ │ │ │ └── software_quotes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── messages.py │ │ │ │ │ └── software_quotes_plugin.py │ │ │ └── run.py │ │ └── plugins │ │ │ └── tasks │ │ │ ├── attractors │ │ │ ├── __init__.py │ │ │ ├── attractors_application.py │ │ │ ├── attractors_plugin.py │ │ │ ├── attractors_preferences.py │ │ │ ├── help │ │ │ │ ├── henon.html │ │ │ │ ├── images │ │ │ │ │ ├── henon1.png │ │ │ │ │ ├── lorenz1.png │ │ │ │ │ ├── lorenz2.png │ │ │ │ │ ├── lorenz3.png │ │ │ │ │ ├── rossler1.png │ │ │ │ │ ├── rossler2.png │ │ │ │ │ └── rossler3.png │ │ │ │ ├── lorenz.html │ │ │ │ └── rossler.html │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── henon.py │ │ │ │ ├── i_model_2d.py │ │ │ │ ├── i_model_3d.py │ │ │ │ ├── i_plottable_2d.py │ │ │ │ ├── lorenz.py │ │ │ │ └── rossler.py │ │ │ ├── model_config_pane.py │ │ │ ├── model_help_pane.py │ │ │ ├── plot_2d_pane.py │ │ │ ├── plot_3d_pane.py │ │ │ ├── preferences.ini │ │ │ ├── visualize_2d_task.py │ │ │ └── visualize_3d_task.py │ │ │ ├── index.rst │ │ │ └── run_attractor.py │ └── tests │ │ ├── __init__.py │ │ ├── test__demo.py │ │ └── test_etsdemo_info.py ├── extension_point.py ├── extension_point_binding.py ├── extension_point_changed_event.py ├── extension_provider.py ├── extension_registry.py ├── i_application.py ├── i_extension_point.py ├── i_extension_point_user.py ├── i_extension_provider.py ├── i_extension_registry.py ├── i_import_manager.py ├── i_plugin.py ├── i_plugin_activator.py ├── i_plugin_manager.py ├── i_provider_extension_registry.py ├── i_service_registry.py ├── i_service_user.py ├── ids.py ├── import_manager.py ├── package_plugin_manager.py ├── plugin.py ├── plugin_activator.py ├── plugin_event.py ├── plugin_extension_registry.py ├── plugin_manager.py ├── plugins │ ├── __init__.py │ ├── event_manager │ │ ├── __init__.py │ │ ├── api.py │ │ └── plugin.py │ ├── python_shell │ │ ├── __init__.py │ │ ├── api.py │ │ ├── i_python_shell.py │ │ ├── python_shell_plugin.py │ │ └── view │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── namespace_view.py │ │ │ └── python_shell_view.py │ ├── tasks │ │ ├── __init__.py │ │ └── python_shell_plugin.py │ └── text_editor │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── api.py │ │ ├── editor │ │ ├── __init__.py │ │ ├── text_editor.py │ │ └── text_editor_handler.py │ │ ├── text_editor_action_set.py │ │ └── text_editor_plugin.py ├── provider_extension_registry.py ├── resource │ ├── __init__.py │ ├── api.py │ ├── file_resource_protocol.py │ ├── http_resource_protocol.py │ ├── i_resource_manager.py │ ├── i_resource_protocol.py │ ├── no_such_resource_error.py │ ├── package_resource_protocol.py │ ├── resource_manager.py │ └── tests │ │ ├── __init__.py │ │ └── test_resource_manager.py ├── service.py ├── service_offer.py ├── service_registry.py ├── tests │ ├── __init__.py │ ├── bad_eggs │ │ ├── README.txt │ │ └── acme-bad │ │ │ ├── acme_bad │ │ │ ├── __init__.py │ │ │ └── bad_plugin.py │ │ │ └── setup.py │ ├── eggs │ │ ├── README.txt │ │ ├── acme-bar │ │ │ ├── acme_bar │ │ │ │ ├── __init__.py │ │ │ │ └── bar_plugin.py │ │ │ └── setup.py │ │ ├── acme-baz │ │ │ ├── acme_baz │ │ │ │ ├── __init__.py │ │ │ │ └── baz_plugin.py │ │ │ └── setup.py │ │ └── acme-foo │ │ │ ├── acme_foo │ │ │ ├── __init__.py │ │ │ └── foo_plugin.py │ │ │ └── setup.py │ ├── ets_config_patcher.py │ ├── event_tracker.py │ ├── foo.py │ ├── i_foo.py │ ├── mutable_extension_registry.py │ ├── plugins │ │ ├── banana │ │ │ ├── __init__.py │ │ │ ├── banana_plugin.py │ │ │ └── plugins.py │ │ ├── orange │ │ │ ├── __init__.py │ │ │ ├── orange_plugin.py │ │ │ └── plugins.py │ │ └── pear │ │ │ ├── __init__.py │ │ │ └── pear_plugin.py │ ├── preferences.ini │ ├── support.py │ ├── test_api.py │ ├── test_application.py │ ├── test_composite_plugin_manager.py │ ├── test_core_plugin.py │ ├── test_egg_basket_plugin_manager.py │ ├── test_egg_plugin_manager.py │ ├── test_extension_point.py │ ├── test_extension_point_binding.py │ ├── test_extension_point_changed.py │ ├── test_extension_registry.py │ ├── test_extension_registry_mixin.py │ ├── test_ids.py │ ├── test_import_manager.py │ ├── test_package_plugin_manager.py │ ├── test_plugin.py │ ├── test_plugin_manager.py │ ├── test_provider_extension_registry.py │ ├── test_service.py │ ├── test_service_registry.py │ ├── test_slice.py │ └── test_workbench.py ├── ui │ ├── __init__.py │ ├── action │ │ ├── __init__.py │ │ ├── abstract_action_manager_builder.py │ │ ├── action.py │ │ ├── action_set.py │ │ ├── action_set_manager.py │ │ ├── api.py │ │ ├── group.py │ │ ├── i_action_manager_builder.py │ │ ├── i_action_set.py │ │ ├── location.py │ │ ├── menu.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── dummy_action_manager_builder.py │ │ │ └── test_action_manager_builder.py │ │ └── tool_bar.py │ ├── gui_application.py │ ├── tasks │ │ ├── __init__.py │ │ ├── action │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── exit_action.py │ │ │ ├── preferences_action.py │ │ │ ├── task_window_launch_group.py │ │ │ └── task_window_toggle_group.py │ │ ├── api.py │ │ ├── preferences_category.py │ │ ├── preferences_dialog.py │ │ ├── preferences_pane.py │ │ ├── task_extension.py │ │ ├── task_factory.py │ │ ├── task_window.py │ │ ├── task_window_event.py │ │ ├── tasks_application.py │ │ ├── tasks_plugin.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ ├── README.md │ │ │ ├── application_memento_v2.pkl │ │ │ ├── application_memento_v3.pkl │ │ │ └── create_pickles.py │ │ │ ├── test_preferences_pane.py │ │ │ └── test_tasks_application.py │ └── workbench │ │ ├── __init__.py │ │ ├── action │ │ ├── __init__.py │ │ ├── about_action.py │ │ ├── api.py │ │ ├── edit_preferences_action.py │ │ ├── exit_action.py │ │ └── images │ │ │ ├── exit.png │ │ │ ├── image_LICENSE.txt │ │ │ └── preferences.png │ │ ├── api.py │ │ ├── default_action_set.py │ │ ├── images │ │ ├── about.png │ │ ├── application.ico │ │ └── image_LICENSE.txt │ │ ├── preferences.ini │ │ ├── workbench.py │ │ ├── workbench_action_manager_builder.py │ │ ├── workbench_action_set.py │ │ ├── workbench_application.py │ │ ├── workbench_editor_manager.py │ │ ├── workbench_plugin.py │ │ ├── workbench_preferences.py │ │ ├── workbench_preferences_page.py │ │ └── workbench_window.py ├── unknown_extension.py └── unknown_extension_point.py ├── etstool.py ├── examples ├── README.rst └── legacy │ └── workbench │ └── AcmeLab │ ├── acme │ ├── __init__.py │ ├── acmelab │ │ ├── __init__.py │ │ ├── acmelab.py │ │ ├── api.py │ │ └── images │ │ │ ├── about.png │ │ │ ├── acmelab.ico │ │ │ ├── image_LICENSE.txt │ │ │ └── splash.jpg │ └── workbench │ │ ├── __init__.py │ │ ├── acme_preferences_page.py │ │ ├── acme_workbench_plugin.py │ │ ├── action │ │ ├── __init__.py │ │ └── new_view_action.py │ │ ├── example_action_set.py │ │ ├── perspective │ │ ├── __init__.py │ │ ├── api.py │ │ ├── bar_perspective.py │ │ └── foo_perspective.py │ │ └── view │ │ ├── __init__.py │ │ ├── api.py │ │ ├── black_view.py │ │ ├── blue_view.py │ │ ├── color_view.py │ │ ├── green_view.py │ │ ├── red_view.py │ │ └── yellow_view.py │ └── run.py ├── image_LICENSE.txt ├── image_LICENSE_CP.txt └── pyproject.toml /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/actions/install-qt-support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/actions/install-qt-support/README.md -------------------------------------------------------------------------------- /.github/actions/install-qt-support/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/actions/install-qt-support/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/bootstrap-requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /.github/workflows/check-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/workflows/check-style.yml -------------------------------------------------------------------------------- /.github/workflows/ets-from-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/workflows/ets-from-source.yml -------------------------------------------------------------------------------- /.github/workflows/publish-on-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/workflows/publish-on-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/style-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/workflows/style-requirements.txt -------------------------------------------------------------------------------- /.github/workflows/test-doc-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/workflows/test-doc-build.yml -------------------------------------------------------------------------------- /.github/workflows/test-with-edm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/workflows/test-with-edm.yml -------------------------------------------------------------------------------- /.github/workflows/test-with-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/workflows/test-with-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/update-gh-pages-on-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/workflows/update-gh-pages-on-release.yml -------------------------------------------------------------------------------- /.github/workflows/update-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.github/workflows/update-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/api/envisage.api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/api/envisage.api.rst -------------------------------------------------------------------------------- /docs/source/api/templates/modules.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/api/templates/modules.rst_t -------------------------------------------------------------------------------- /docs/source/api/templates/package.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/api/templates/package.rst_t -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/e-logo-rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/e-logo-rev.png -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/core.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/extension_points.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/extension_points.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/front.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/front.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/glossary.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/gui_application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/gui_application.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/howto_create_a_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/howto_create_a_plugin.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/images/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/images/application.png -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/index.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/introduction.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/message_of_the_day.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/message_of_the_day.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/plugins.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/preferences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/preferences.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/services.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/services.rst -------------------------------------------------------------------------------- /docs/source/envisage_core_documentation/workbench.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/envisage_core_documentation/workbench.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/tasks_user_manual/extensibility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/tasks_user_manual/extensibility.rst -------------------------------------------------------------------------------- /docs/source/tasks_user_manual/front.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/tasks_user_manual/front.rst -------------------------------------------------------------------------------- /docs/source/tasks_user_manual/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/tasks_user_manual/index.rst -------------------------------------------------------------------------------- /docs/source/tasks_user_manual/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/tasks_user_manual/intro.rst -------------------------------------------------------------------------------- /docs/source/tasks_user_manual/layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/tasks_user_manual/layout.rst -------------------------------------------------------------------------------- /docs/source/tasks_user_manual/menus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/source/tasks_user_manual/menus.rst -------------------------------------------------------------------------------- /docs/update_gh_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/docs/update_gh_pages.py -------------------------------------------------------------------------------- /edm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/edm.yaml -------------------------------------------------------------------------------- /envisage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/__init__.py -------------------------------------------------------------------------------- /envisage/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/api.py -------------------------------------------------------------------------------- /envisage/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/application.py -------------------------------------------------------------------------------- /envisage/application_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/application_event.py -------------------------------------------------------------------------------- /envisage/composite_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/composite_plugin_manager.py -------------------------------------------------------------------------------- /envisage/core_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/core_plugin.py -------------------------------------------------------------------------------- /envisage/egg_basket_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/egg_basket_plugin_manager.py -------------------------------------------------------------------------------- /envisage/egg_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/egg_plugin_manager.py -------------------------------------------------------------------------------- /envisage/egg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/egg_utils.py -------------------------------------------------------------------------------- /envisage/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/examples/_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/_demo.py -------------------------------------------------------------------------------- /envisage/examples/_etsdemo_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/_etsdemo_info.py -------------------------------------------------------------------------------- /envisage/examples/demo/GUI_Application/traitsui_gui_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/GUI_Application/traitsui_gui_app.py -------------------------------------------------------------------------------- /envisage/examples/demo/Hello_World/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/Hello_World/hello_world.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/__init__.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/motd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/motd/__init__.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/motd/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/motd/api.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/motd/i_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/motd/i_message.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/motd/i_motd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/motd/i_motd.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/motd/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/motd/message.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/motd/motd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/motd/motd.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/motd/motd_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/motd/motd_plugin.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/motd/software_quotes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/motd/software_quotes/__init__.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/motd/software_quotes/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/motd/software_quotes/messages.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/acme/motd/software_quotes/software_quotes_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/acme/motd/software_quotes/software_quotes_plugin.py -------------------------------------------------------------------------------- /envisage/examples/demo/MOTD/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/MOTD/run.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/attractors_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/attractors_application.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/attractors_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/attractors_plugin.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/attractors_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/attractors_preferences.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/help/henon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/help/henon.html -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/help/images/henon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/help/images/henon1.png -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/help/images/lorenz1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/help/images/lorenz1.png -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/help/images/lorenz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/help/images/lorenz2.png -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/help/images/lorenz3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/help/images/lorenz3.png -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/help/images/rossler1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/help/images/rossler1.png -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/help/images/rossler2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/help/images/rossler2.png -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/help/images/rossler3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/help/images/rossler3.png -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/help/lorenz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/help/lorenz.html -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/help/rossler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/help/rossler.html -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/model/henon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/model/henon.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/model/i_model_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/model/i_model_2d.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/model/i_model_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/model/i_model_3d.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/model/i_plottable_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/model/i_plottable_2d.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/model/lorenz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/model/lorenz.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/model/rossler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/model/rossler.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/model_config_pane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/model_config_pane.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/model_help_pane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/model_help_pane.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/plot_2d_pane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/plot_2d_pane.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/plot_3d_pane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/plot_3d_pane.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/preferences.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/preferences.ini -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/visualize_2d_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/visualize_2d_task.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/attractors/visualize_3d_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/attractors/visualize_3d_task.py -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/index.rst -------------------------------------------------------------------------------- /envisage/examples/demo/plugins/tasks/run_attractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/demo/plugins/tasks/run_attractor.py -------------------------------------------------------------------------------- /envisage/examples/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/examples/tests/test__demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/tests/test__demo.py -------------------------------------------------------------------------------- /envisage/examples/tests/test_etsdemo_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/examples/tests/test_etsdemo_info.py -------------------------------------------------------------------------------- /envisage/extension_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/extension_point.py -------------------------------------------------------------------------------- /envisage/extension_point_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/extension_point_binding.py -------------------------------------------------------------------------------- /envisage/extension_point_changed_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/extension_point_changed_event.py -------------------------------------------------------------------------------- /envisage/extension_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/extension_provider.py -------------------------------------------------------------------------------- /envisage/extension_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/extension_registry.py -------------------------------------------------------------------------------- /envisage/i_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_application.py -------------------------------------------------------------------------------- /envisage/i_extension_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_extension_point.py -------------------------------------------------------------------------------- /envisage/i_extension_point_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_extension_point_user.py -------------------------------------------------------------------------------- /envisage/i_extension_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_extension_provider.py -------------------------------------------------------------------------------- /envisage/i_extension_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_extension_registry.py -------------------------------------------------------------------------------- /envisage/i_import_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_import_manager.py -------------------------------------------------------------------------------- /envisage/i_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_plugin.py -------------------------------------------------------------------------------- /envisage/i_plugin_activator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_plugin_activator.py -------------------------------------------------------------------------------- /envisage/i_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_plugin_manager.py -------------------------------------------------------------------------------- /envisage/i_provider_extension_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_provider_extension_registry.py -------------------------------------------------------------------------------- /envisage/i_service_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_service_registry.py -------------------------------------------------------------------------------- /envisage/i_service_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/i_service_user.py -------------------------------------------------------------------------------- /envisage/ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ids.py -------------------------------------------------------------------------------- /envisage/import_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/import_manager.py -------------------------------------------------------------------------------- /envisage/package_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/package_plugin_manager.py -------------------------------------------------------------------------------- /envisage/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugin.py -------------------------------------------------------------------------------- /envisage/plugin_activator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugin_activator.py -------------------------------------------------------------------------------- /envisage/plugin_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugin_event.py -------------------------------------------------------------------------------- /envisage/plugin_extension_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugin_extension_registry.py -------------------------------------------------------------------------------- /envisage/plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugin_manager.py -------------------------------------------------------------------------------- /envisage/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/plugins/event_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/plugins/event_manager/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/event_manager/api.py -------------------------------------------------------------------------------- /envisage/plugins/event_manager/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/event_manager/plugin.py -------------------------------------------------------------------------------- /envisage/plugins/python_shell/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/plugins/python_shell/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/python_shell/api.py -------------------------------------------------------------------------------- /envisage/plugins/python_shell/i_python_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/python_shell/i_python_shell.py -------------------------------------------------------------------------------- /envisage/plugins/python_shell/python_shell_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/python_shell/python_shell_plugin.py -------------------------------------------------------------------------------- /envisage/plugins/python_shell/view/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/plugins/python_shell/view/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/python_shell/view/api.py -------------------------------------------------------------------------------- /envisage/plugins/python_shell/view/namespace_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/python_shell/view/namespace_view.py -------------------------------------------------------------------------------- /envisage/plugins/python_shell/view/python_shell_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/python_shell/view/python_shell_view.py -------------------------------------------------------------------------------- /envisage/plugins/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/plugins/tasks/python_shell_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/tasks/python_shell_plugin.py -------------------------------------------------------------------------------- /envisage/plugins/text_editor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/plugins/text_editor/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/text_editor/actions.py -------------------------------------------------------------------------------- /envisage/plugins/text_editor/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/text_editor/api.py -------------------------------------------------------------------------------- /envisage/plugins/text_editor/editor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/plugins/text_editor/editor/text_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/text_editor/editor/text_editor.py -------------------------------------------------------------------------------- /envisage/plugins/text_editor/editor/text_editor_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/text_editor/editor/text_editor_handler.py -------------------------------------------------------------------------------- /envisage/plugins/text_editor/text_editor_action_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/text_editor/text_editor_action_set.py -------------------------------------------------------------------------------- /envisage/plugins/text_editor/text_editor_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/plugins/text_editor/text_editor_plugin.py -------------------------------------------------------------------------------- /envisage/provider_extension_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/provider_extension_registry.py -------------------------------------------------------------------------------- /envisage/resource/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/resource/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/resource/api.py -------------------------------------------------------------------------------- /envisage/resource/file_resource_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/resource/file_resource_protocol.py -------------------------------------------------------------------------------- /envisage/resource/http_resource_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/resource/http_resource_protocol.py -------------------------------------------------------------------------------- /envisage/resource/i_resource_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/resource/i_resource_manager.py -------------------------------------------------------------------------------- /envisage/resource/i_resource_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/resource/i_resource_protocol.py -------------------------------------------------------------------------------- /envisage/resource/no_such_resource_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/resource/no_such_resource_error.py -------------------------------------------------------------------------------- /envisage/resource/package_resource_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/resource/package_resource_protocol.py -------------------------------------------------------------------------------- /envisage/resource/resource_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/resource/resource_manager.py -------------------------------------------------------------------------------- /envisage/resource/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/resource/tests/test_resource_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/resource/tests/test_resource_manager.py -------------------------------------------------------------------------------- /envisage/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/service.py -------------------------------------------------------------------------------- /envisage/service_offer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/service_offer.py -------------------------------------------------------------------------------- /envisage/service_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/service_registry.py -------------------------------------------------------------------------------- /envisage/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/tests/bad_eggs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/bad_eggs/README.txt -------------------------------------------------------------------------------- /envisage/tests/bad_eggs/acme-bad/acme_bad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/bad_eggs/acme-bad/acme_bad/__init__.py -------------------------------------------------------------------------------- /envisage/tests/bad_eggs/acme-bad/acme_bad/bad_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/bad_eggs/acme-bad/acme_bad/bad_plugin.py -------------------------------------------------------------------------------- /envisage/tests/bad_eggs/acme-bad/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/bad_eggs/acme-bad/setup.py -------------------------------------------------------------------------------- /envisage/tests/eggs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/eggs/README.txt -------------------------------------------------------------------------------- /envisage/tests/eggs/acme-bar/acme_bar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/eggs/acme-bar/acme_bar/__init__.py -------------------------------------------------------------------------------- /envisage/tests/eggs/acme-bar/acme_bar/bar_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/eggs/acme-bar/acme_bar/bar_plugin.py -------------------------------------------------------------------------------- /envisage/tests/eggs/acme-bar/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/eggs/acme-bar/setup.py -------------------------------------------------------------------------------- /envisage/tests/eggs/acme-baz/acme_baz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/eggs/acme-baz/acme_baz/__init__.py -------------------------------------------------------------------------------- /envisage/tests/eggs/acme-baz/acme_baz/baz_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/eggs/acme-baz/acme_baz/baz_plugin.py -------------------------------------------------------------------------------- /envisage/tests/eggs/acme-baz/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/eggs/acme-baz/setup.py -------------------------------------------------------------------------------- /envisage/tests/eggs/acme-foo/acme_foo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/eggs/acme-foo/acme_foo/__init__.py -------------------------------------------------------------------------------- /envisage/tests/eggs/acme-foo/acme_foo/foo_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/eggs/acme-foo/acme_foo/foo_plugin.py -------------------------------------------------------------------------------- /envisage/tests/eggs/acme-foo/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/eggs/acme-foo/setup.py -------------------------------------------------------------------------------- /envisage/tests/ets_config_patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/ets_config_patcher.py -------------------------------------------------------------------------------- /envisage/tests/event_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/event_tracker.py -------------------------------------------------------------------------------- /envisage/tests/foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/foo.py -------------------------------------------------------------------------------- /envisage/tests/i_foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/i_foo.py -------------------------------------------------------------------------------- /envisage/tests/mutable_extension_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/mutable_extension_registry.py -------------------------------------------------------------------------------- /envisage/tests/plugins/banana/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/tests/plugins/banana/banana_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/plugins/banana/banana_plugin.py -------------------------------------------------------------------------------- /envisage/tests/plugins/banana/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/plugins/banana/plugins.py -------------------------------------------------------------------------------- /envisage/tests/plugins/orange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/tests/plugins/orange/orange_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/plugins/orange/orange_plugin.py -------------------------------------------------------------------------------- /envisage/tests/plugins/orange/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/plugins/orange/plugins.py -------------------------------------------------------------------------------- /envisage/tests/plugins/pear/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/tests/plugins/pear/pear_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/plugins/pear/pear_plugin.py -------------------------------------------------------------------------------- /envisage/tests/preferences.ini: -------------------------------------------------------------------------------- 1 | [enthought.test] 2 | x = 42 3 | -------------------------------------------------------------------------------- /envisage/tests/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/support.py -------------------------------------------------------------------------------- /envisage/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_api.py -------------------------------------------------------------------------------- /envisage/tests/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_application.py -------------------------------------------------------------------------------- /envisage/tests/test_composite_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_composite_plugin_manager.py -------------------------------------------------------------------------------- /envisage/tests/test_core_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_core_plugin.py -------------------------------------------------------------------------------- /envisage/tests/test_egg_basket_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_egg_basket_plugin_manager.py -------------------------------------------------------------------------------- /envisage/tests/test_egg_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_egg_plugin_manager.py -------------------------------------------------------------------------------- /envisage/tests/test_extension_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_extension_point.py -------------------------------------------------------------------------------- /envisage/tests/test_extension_point_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_extension_point_binding.py -------------------------------------------------------------------------------- /envisage/tests/test_extension_point_changed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_extension_point_changed.py -------------------------------------------------------------------------------- /envisage/tests/test_extension_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_extension_registry.py -------------------------------------------------------------------------------- /envisage/tests/test_extension_registry_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_extension_registry_mixin.py -------------------------------------------------------------------------------- /envisage/tests/test_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_ids.py -------------------------------------------------------------------------------- /envisage/tests/test_import_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_import_manager.py -------------------------------------------------------------------------------- /envisage/tests/test_package_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_package_plugin_manager.py -------------------------------------------------------------------------------- /envisage/tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_plugin.py -------------------------------------------------------------------------------- /envisage/tests/test_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_plugin_manager.py -------------------------------------------------------------------------------- /envisage/tests/test_provider_extension_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_provider_extension_registry.py -------------------------------------------------------------------------------- /envisage/tests/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_service.py -------------------------------------------------------------------------------- /envisage/tests/test_service_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_service_registry.py -------------------------------------------------------------------------------- /envisage/tests/test_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_slice.py -------------------------------------------------------------------------------- /envisage/tests/test_workbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/tests/test_workbench.py -------------------------------------------------------------------------------- /envisage/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/ui/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/ui/action/abstract_action_manager_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/abstract_action_manager_builder.py -------------------------------------------------------------------------------- /envisage/ui/action/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/action.py -------------------------------------------------------------------------------- /envisage/ui/action/action_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/action_set.py -------------------------------------------------------------------------------- /envisage/ui/action/action_set_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/action_set_manager.py -------------------------------------------------------------------------------- /envisage/ui/action/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/api.py -------------------------------------------------------------------------------- /envisage/ui/action/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/group.py -------------------------------------------------------------------------------- /envisage/ui/action/i_action_manager_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/i_action_manager_builder.py -------------------------------------------------------------------------------- /envisage/ui/action/i_action_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/i_action_set.py -------------------------------------------------------------------------------- /envisage/ui/action/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/location.py -------------------------------------------------------------------------------- /envisage/ui/action/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/menu.py -------------------------------------------------------------------------------- /envisage/ui/action/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/ui/action/tests/dummy_action_manager_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/tests/dummy_action_manager_builder.py -------------------------------------------------------------------------------- /envisage/ui/action/tests/test_action_manager_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/tests/test_action_manager_builder.py -------------------------------------------------------------------------------- /envisage/ui/action/tool_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/action/tool_bar.py -------------------------------------------------------------------------------- /envisage/ui/gui_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/gui_application.py -------------------------------------------------------------------------------- /envisage/ui/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/ui/tasks/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/ui/tasks/action/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/action/api.py -------------------------------------------------------------------------------- /envisage/ui/tasks/action/exit_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/action/exit_action.py -------------------------------------------------------------------------------- /envisage/ui/tasks/action/preferences_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/action/preferences_action.py -------------------------------------------------------------------------------- /envisage/ui/tasks/action/task_window_launch_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/action/task_window_launch_group.py -------------------------------------------------------------------------------- /envisage/ui/tasks/action/task_window_toggle_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/action/task_window_toggle_group.py -------------------------------------------------------------------------------- /envisage/ui/tasks/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/api.py -------------------------------------------------------------------------------- /envisage/ui/tasks/preferences_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/preferences_category.py -------------------------------------------------------------------------------- /envisage/ui/tasks/preferences_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/preferences_dialog.py -------------------------------------------------------------------------------- /envisage/ui/tasks/preferences_pane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/preferences_pane.py -------------------------------------------------------------------------------- /envisage/ui/tasks/task_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/task_extension.py -------------------------------------------------------------------------------- /envisage/ui/tasks/task_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/task_factory.py -------------------------------------------------------------------------------- /envisage/ui/tasks/task_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/task_window.py -------------------------------------------------------------------------------- /envisage/ui/tasks/task_window_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/task_window_event.py -------------------------------------------------------------------------------- /envisage/ui/tasks/tasks_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/tasks_application.py -------------------------------------------------------------------------------- /envisage/ui/tasks/tasks_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/tasks_plugin.py -------------------------------------------------------------------------------- /envisage/ui/tasks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/ui/tasks/tests/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/tests/data/README.md -------------------------------------------------------------------------------- /envisage/ui/tasks/tests/data/application_memento_v2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/tests/data/application_memento_v2.pkl -------------------------------------------------------------------------------- /envisage/ui/tasks/tests/data/application_memento_v3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/tests/data/application_memento_v3.pkl -------------------------------------------------------------------------------- /envisage/ui/tasks/tests/data/create_pickles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/tests/data/create_pickles.py -------------------------------------------------------------------------------- /envisage/ui/tasks/tests/test_preferences_pane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/tests/test_preferences_pane.py -------------------------------------------------------------------------------- /envisage/ui/tasks/tests/test_tasks_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/tasks/tests/test_tasks_application.py -------------------------------------------------------------------------------- /envisage/ui/workbench/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/ui/workbench/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envisage/ui/workbench/action/about_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/action/about_action.py -------------------------------------------------------------------------------- /envisage/ui/workbench/action/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/action/api.py -------------------------------------------------------------------------------- /envisage/ui/workbench/action/edit_preferences_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/action/edit_preferences_action.py -------------------------------------------------------------------------------- /envisage/ui/workbench/action/exit_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/action/exit_action.py -------------------------------------------------------------------------------- /envisage/ui/workbench/action/images/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/action/images/exit.png -------------------------------------------------------------------------------- /envisage/ui/workbench/action/images/image_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/action/images/image_LICENSE.txt -------------------------------------------------------------------------------- /envisage/ui/workbench/action/images/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/action/images/preferences.png -------------------------------------------------------------------------------- /envisage/ui/workbench/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/api.py -------------------------------------------------------------------------------- /envisage/ui/workbench/default_action_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/default_action_set.py -------------------------------------------------------------------------------- /envisage/ui/workbench/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/images/about.png -------------------------------------------------------------------------------- /envisage/ui/workbench/images/application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/images/application.ico -------------------------------------------------------------------------------- /envisage/ui/workbench/images/image_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/images/image_LICENSE.txt -------------------------------------------------------------------------------- /envisage/ui/workbench/preferences.ini: -------------------------------------------------------------------------------- 1 | [enthought.envisage.ui.workbench] 2 | prompt_on_exit = True 3 | -------------------------------------------------------------------------------- /envisage/ui/workbench/workbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/workbench.py -------------------------------------------------------------------------------- /envisage/ui/workbench/workbench_action_manager_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/workbench_action_manager_builder.py -------------------------------------------------------------------------------- /envisage/ui/workbench/workbench_action_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/workbench_action_set.py -------------------------------------------------------------------------------- /envisage/ui/workbench/workbench_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/workbench_application.py -------------------------------------------------------------------------------- /envisage/ui/workbench/workbench_editor_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/workbench_editor_manager.py -------------------------------------------------------------------------------- /envisage/ui/workbench/workbench_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/workbench_plugin.py -------------------------------------------------------------------------------- /envisage/ui/workbench/workbench_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/workbench_preferences.py -------------------------------------------------------------------------------- /envisage/ui/workbench/workbench_preferences_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/workbench_preferences_page.py -------------------------------------------------------------------------------- /envisage/ui/workbench/workbench_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/ui/workbench/workbench_window.py -------------------------------------------------------------------------------- /envisage/unknown_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/unknown_extension.py -------------------------------------------------------------------------------- /envisage/unknown_extension_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/envisage/unknown_extension_point.py -------------------------------------------------------------------------------- /etstool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/etstool.py -------------------------------------------------------------------------------- /examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/README.rst -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/__init__.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/acmelab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/acmelab/__init__.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/acmelab/acmelab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/acmelab/acmelab.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/acmelab/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/acmelab/api.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/acmelab/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/acmelab/images/about.png -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/acmelab/images/acmelab.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/acmelab/images/acmelab.ico -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/acmelab/images/image_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/acmelab/images/image_LICENSE.txt -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/acmelab/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/acmelab/images/splash.jpg -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/__init__.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/acme_preferences_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/acme_preferences_page.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/acme_workbench_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/acme_workbench_plugin.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/action/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/action/new_view_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/action/new_view_action.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/example_action_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/example_action_set.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/perspective/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/perspective/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/perspective/api.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/perspective/bar_perspective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/perspective/bar_perspective.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/perspective/foo_perspective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/perspective/foo_perspective.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/view/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/view/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/view/api.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/view/black_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/view/black_view.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/view/blue_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/view/blue_view.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/view/color_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/view/color_view.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/view/green_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/view/green_view.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/view/red_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/view/red_view.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/acme/workbench/view/yellow_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/acme/workbench/view/yellow_view.py -------------------------------------------------------------------------------- /examples/legacy/workbench/AcmeLab/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/examples/legacy/workbench/AcmeLab/run.py -------------------------------------------------------------------------------- /image_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/image_LICENSE.txt -------------------------------------------------------------------------------- /image_LICENSE_CP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/image_LICENSE_CP.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enthought/envisage/HEAD/pyproject.toml --------------------------------------------------------------------------------