file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/tree_view.py
__all__ = ["TreeViewPropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class TreeViewPropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) ...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/grid.py
__all__ = ["GridPropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class GridPropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) def _bu...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/slider.py
__all__ = ["SliderPropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class SliderPropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) def...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/frame.py
__all__ = ["FramePropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class FramePropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) def _...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/image.py
__all__ = ["ImagePropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class ImagePropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) def _...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/combox_box.py
__all__ = ["ComboBoxPropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class ComboBoxPropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) ...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/string_field.py
__all__ = ["StringFieldPropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class StringFieldPropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/line.py
__all__ = ["LinePropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class LinePropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) def _bu...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/stack.py
__all__ = ["StackPropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class StackPropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) def _...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/collapsable_frame.py
__all__ = ["CollapsableFramePropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class CollapsableFramePropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_lab...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/placer.py
__all__ = ["PlacerPropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class PlacerPropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) def...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/scrolling_frame.py
__all__ = ["ScrollingFramePropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class ScrollingFramePropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, ...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/label.py
__all__ = ["LabelPropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class LabelPropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) def _...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/circle.py
__all__ = ["CirclePropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class CirclePropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) def...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/triangle.py
__all__ = ["TrianglePropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class TrianglePropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) ...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/image_with_provider.py
__all__ = ["ImageWithProviderPropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class ImageWithProviderPropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_l...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/property/widgets/widget.py
__all__ = ["WidgetPropertyFrame"] import omni.ui as ui from ..base_frame import WidgetCollectionFrame from ..create_widget import PropertyType class WidgetPropertyFrame(WidgetCollectionFrame): def __init__(self, frame_label: str, widget: ui.Widget) -> None: super().__init__(frame_label, widget) def...
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/tests/__init__.py
from .test_ui import *
omniverse-code/kit/exts/omni.kit.window.inspector/omni/kit/window/inspector/tests/test_ui.py
import omni.kit.test import omni.kit.window.inspector.inspector_window from omni.kit import ui_test class TestInspectorWindow(omni.kit.test.AsyncTestCase): @classmethod def setUpClass(cls): cls.inspector_window = omni.kit.window.inspector.inspector_window.InspectorWindow() async def setUp(self):...
omniverse-code/kit/exts/omni.kit.window.inspector/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.0.6] - 2022-07-05 - add test to increase the test coverage ## [1.0.5] - 2022-05-16 - start adding tests ## [1.0.4] - 2022-01-10 - support for widgets under Treeview (i.e those created by the treeview delegate) ## [1....
omniverse-code/kit/exts/omni.kit.window.inspector/docs/overview.md
# Overview
omniverse-code/kit/exts/omni.kit.window.inspector/docs/README.md
# UI Inspector Widget [omni.kit.window.inspector]
omniverse-code/kit/exts/omni.kit.documentation.builder/PACKAGE-LICENSES/omni.kit.documentation.builder-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related docume...
omniverse-code/kit/exts/omni.kit.documentation.builder/scripts/generate_docs_for_sphinx.py
import argparse import asyncio import logging import carb import omni.kit.app import omni.kit.documentation.builder logger = logging.getLogger(__name__) _app_ready_sub = None def main(): parser = argparse.ArgumentParser() parser.add_argument( "ext_id", help="Extension id (name-version).", ...
omniverse-code/kit/exts/omni.kit.documentation.builder/config/extension.toml
[package] version = "1.0.9" authors = ["NVIDIA"] title = "Omni.UI Documentation Builder" description="The interactive documentation builder for omni.ui extensions" readme = "docs/README.md" category = "Documentation" keywords = ["ui", "example", "docs", "documentation", "builder"] changelog="docs/CHANGELOG.md" preview...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/documentation_capture.py
# Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/documentation_window.py
# Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/__init__.py
# Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/documentation_catalog.py
# Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/documentation_md.py
# Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/documentation_generate.py
# Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/documentation_extension.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/documentation_page.py
# Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/documentation_style.py
# Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/tests/test_documentation.py
# Copyright (c) 2019-2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.documentation.builder/omni/kit/documentation/builder/tests/__init__.py
# Copyright (c) 2018-2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.documentation.builder/docs/CHANGELOG.md
# Changelog The interactive documentation builder for omni.ui extensions ## [1.0.9] - 2022-11-16 ### Changed - Remove execute tag from Overview.md for publishing ## [1.0.8] - 2022-08-29 ### Added - List, link, and basic table support - Show errors from code execute blocks ## [1.0.7] - 2022-06-27 ### Added - Create ...
omniverse-code/kit/exts/omni.kit.documentation.builder/docs/README.md
# The documentation for omni.ui extensions The interactive documentation builder for omni.ui extensions
omniverse-code/kit/exts/omni.kit.documentation.builder/docs/index.rst
omni.kit.documentation.builder ############################## .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.documentation.builder/docs/Overview.md
# Omni.UI Documentation Builder The Documentation Builder extension finds enabled extensions with a [documentation] section in their extension.toml and adds a menu to show that documentation in a popup window. Extensions do not need to depend on omni.kit.documentation.builder to enable this functionality. For example...
omniverse-code/kit/exts/omni.kit.documentation.builder/data/tests/test.md
# NVIDIA ## Omiverse ### Doc Text ```execute ## import omni.ui as ui ## ui.Label("Hello") ``` - List1 - List2 [NVIDIA](https://www.nvidia.com) | Noun | Adjective | | ---- | --------- | | Omniverse | Awesome |
omniverse-code/kit/exts/omni.volume/PACKAGE-LICENSES/omni.volume-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related docume...
omniverse-code/kit/exts/omni.volume/config/extension.toml
[package] version = "0.1.0" title = "Volume" category = "Internal" [dependencies] "omni.usd.libs" = {} "omni.assets.plugins" = {} "omni.kit.pip_archive" = {} [[python.module]] name = "omni.volume" # numpy is used by tests [python.pipapi] requirements = ["numpy"] [[native.plugin]] path = "bin/deps/carb.volume.plugin...
omniverse-code/kit/exts/omni.volume/omni/volume/_volume.pyi
"""pybind11 carb.volume bindings""" from __future__ import annotations import omni.volume._volume import typing import numpy _Shape = typing.Tuple[int, ...] __all__ = [ "GridData", "IVolume", "acquire_volume_interface" ] class GridData(): pass class IVolume(): def create_from_dense(self, arg0: fl...
omniverse-code/kit/exts/omni.volume/omni/volume/__init__.py
"""This module contains bindings to C++ carb::volume::IVolume interface. All the function are in omni.volume.IVolume class, to get it use get_editor_interface method, which caches acquire interface call: >>> import omni.volume >>> e = omni.volume.get_volume_interface() >>> print(f"Is UI hidden: {e.is_ui_h...
omniverse-code/kit/exts/omni.volume/omni/volume/tests/test_volume.py
import numpy import omni.kit.test import omni.volume class CreateFromDenseTest(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): pass # After running each test async def tearDown(self): pass # Actual test, notice it is "async" function, so "await" c...
omniverse-code/kit/exts/omni.volume/omni/volume/tests/__init__.py
from .test_volume import *
omniverse-code/kit/exts/omni.activity.ui/PACKAGE-LICENSES/omni.activity.ui-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related docume...
omniverse-code/kit/exts/omni.activity.ui/config/extension.toml
[package] title = "omni.ui Window Activity" description = "The full end to end activity of the window" feature = true version = "1.0.20" category = "Activity" authors = ["NVIDIA"] repository = "" keywords = ["activity", "window", "ui"] changelog = "docs/CHANGELOG.md" icon = "data/icon.png" preview_image = "data/preview...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/open_file_addon.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_tree_delegate.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_extension.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_progress_model.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/style.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_filter_model.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_delegate.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_actions.py
import omni.kit.actions.core def register_actions(extension_id, cls): action_registry = omni.kit.actions.core.get_action_registry() actions_tag = "Activity Actions" action_registry.register_action( extension_id, "show_activity_window", lambda: cls.show_progress_bar(None, not cls._...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_pack_model.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/__init__.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_chart.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_model.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_menu.py
import carb.input import omni.client from omni.kit.widget.filebrowser import FileBrowserItem from omni.kit.window.filepicker import FilePickerDialog import json import os class ActivityMenuOptions: def __init__(self, **kwargs): self._pick_folder_dialog = None self._current_filename = None ...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_window.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_progress_bar.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/activity_report.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/tests/__init__.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/omni/activity/ui/tests/test_window.py
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.activity.ui/docs/CHANGELOG.md
# Changelog ## [1.0.20] - 2023-02-08 ### Fixed - total duration not correct in progress window ## [1.0.19] - 2023-01-05 ### Fixed - merge issue caused by the diff between the cherry pick MR (https://gitlab-master.nvidia.com/omniverse/kit/-/merge_requests/21206) and the original MR (https://gitlab-master.nvidia.com/om...
omniverse-code/kit/exts/omni.activity.ui/docs/Overview.md
# Overview omni.activity.ui is an extension created to display progress and activities. This is the new generation of the activity monitor which replaces the old version of omni.kit.activity.widget.monitor extension since the old activity monitor has limited information on activities and doesn't always provide accurate...
omniverse-code/kit/exts/omni.kit.window.filepicker/PACKAGE-LICENSES/omni.kit.window.filepicker-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related docume...
omniverse-code/kit/exts/omni.kit.window.filepicker/scripts/demo_filepicker.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/config/extension.toml
[package] title = "Kit Filepicker Window" version = "2.7.15" category = "Internal" description = "Filepicker popup dialog and embeddable widget" authors = ["NVIDIA"] slackids = ["UQY4RMR3N"] repository = "" keywords = ["kit", "ui"] readme = "docs/README.md" changelog = "docs/CHANGELOG.md" preview_image = "data/preview...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/search_delegate.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/item_deletion_dialog.py
# Copyright (c) 2018-2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/view.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/style.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/timestamp.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/about_dialog.py
# Copyright (c) 2018-2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/extension.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/detail_view.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/__init__.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/bookmark_model.py
# Copyright (c) 2018-2023, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/dialog.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/asset_types.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/test_helper.py
## Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software a...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/context_menu.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/utils.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/model.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/api.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/option_box.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/tool_bar.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/versioning_helper.py
## Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software a...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/search_field.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/widget.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/file_bar.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/item_deletion_model.py
# Copyright (c) 2018-2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/file_ops.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software an...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/datetime/style.py
from omni.ui import color as cl cl.datetime_bg = cl('#242424') cl.datetime_fg = cl('#545454') cl.datetime_fg2 = cl('#848484') cl.blue_light = cl('#3c63d3') default_datetime_window_style = { "Window": {"background_color": cl.transparent}, "Button": {"margin_height": 0.5, "margin_width": 0.5, }, "Button::d...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/datetime/clock.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and rel...
omniverse-code/kit/exts/omni.kit.window.filepicker/omni/kit/window/filepicker/datetime/__init__.py
from .calendar import CalendarWidget from .clock import ClockWidget from .date_widget import DateWidget from .time_widget import TimeWidget from .timezone_widget import TimezoneWidget