-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GUI container refactor, tab support (#63)
* GUI container refactor * Clean up panel display, still some kinks to work out * Improve expanded panel behavior; drag regression for mobile view * Fix toggle for sidebar display * Fix type * Folder / tab remove(), switch back to contexts * Put icons in tarball, clean up SMPL-X example * Lint * Suppress mypy error * Add missing icons * Remove debug print * Remove outdated client README * Nits * Fix Accordion for empty folder names * Address comments from Chungmin, fix container removal, context thread safety * Fix type error
- Loading branch information
Showing
33 changed files
with
5,619 additions
and
1,116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
from ._message_api import GuiButtonGroupHandle as GuiButtonGroupHandle | ||
from ._message_api import GuiButtonHandle as GuiButtonHandle | ||
from ._message_api import GuiDropdownHandle as GuiDropdownHandle | ||
from ._message_api import GuiHandle as GuiHandle | ||
from ._scene_handle import CameraFrustumHandle as CameraFrustumHandle | ||
from ._scene_handle import FrameHandle as FrameHandle | ||
from ._scene_handle import ImageHandle as ImageHandle | ||
from ._scene_handle import LabelHandle as LabelHandle | ||
from ._scene_handle import MeshHandle as MeshHandle | ||
from ._scene_handle import PointCloudHandle as PointCloudHandle | ||
from ._scene_handle import SceneNodeHandle as SceneNodeHandle | ||
from ._scene_handle import TransformControlsHandle as TransformControlsHandle | ||
from ._gui_api import GuiFolderHandle as GuiFolderHandle | ||
from ._gui_api import GuiTabGroupHandle as GuiTabGroupHandle | ||
from ._gui_api import GuiTabHandle as GuiTabHandle | ||
from ._gui_handles import GuiButtonGroupHandle as GuiButtonGroupHandle | ||
from ._gui_handles import GuiButtonHandle as GuiButtonHandle | ||
from ._gui_handles import GuiDropdownHandle as GuiDropdownHandle | ||
from ._gui_handles import GuiHandle as GuiHandle | ||
from ._icons_enum import Icon as Icon | ||
from ._scene_handles import CameraFrustumHandle as CameraFrustumHandle | ||
from ._scene_handles import FrameHandle as FrameHandle | ||
from ._scene_handles import ImageHandle as ImageHandle | ||
from ._scene_handles import LabelHandle as LabelHandle | ||
from ._scene_handles import MeshHandle as MeshHandle | ||
from ._scene_handles import PointCloudHandle as PointCloudHandle | ||
from ._scene_handles import SceneNodeHandle as SceneNodeHandle | ||
from ._scene_handles import TransformControlsHandle as TransformControlsHandle | ||
from ._viser import CameraHandle as CameraHandle | ||
from ._viser import ClientHandle as ClientHandle | ||
from ._viser import ViserServer as ViserServer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.