├── .gitignore ├── IMAGE ├── FixedFloattingDocker.gif ├── KeepInMainwindow.gif ├── Preview.gif └── RememberRelativePosition.gif ├── LICENSE ├── README.md ├── README__ZH.md ├── dockerundercursor.desktop └── dockerundercursor ├── Manual.html ├── __init__.py ├── action_hold_filter.py ├── docker_auto_hide_filter.py ├── docker_under_cursor.py ├── docker_visibility_toggler.py ├── dockerundercursor.action ├── ducshotcuts.action ├── qt_event.py └── setting_panel.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.ffs_batch 2 | __pycache__ -------------------------------------------------------------------------------- /IMAGE/FixedFloattingDocker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/IMAGE/FixedFloattingDocker.gif -------------------------------------------------------------------------------- /IMAGE/KeepInMainwindow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/IMAGE/KeepInMainwindow.gif -------------------------------------------------------------------------------- /IMAGE/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/IMAGE/Preview.gif -------------------------------------------------------------------------------- /IMAGE/RememberRelativePosition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/IMAGE/RememberRelativePosition.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/README.md -------------------------------------------------------------------------------- /README__ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/README__ZH.md -------------------------------------------------------------------------------- /dockerundercursor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor.desktop -------------------------------------------------------------------------------- /dockerundercursor/Manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor/Manual.html -------------------------------------------------------------------------------- /dockerundercursor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor/__init__.py -------------------------------------------------------------------------------- /dockerundercursor/action_hold_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor/action_hold_filter.py -------------------------------------------------------------------------------- /dockerundercursor/docker_auto_hide_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor/docker_auto_hide_filter.py -------------------------------------------------------------------------------- /dockerundercursor/docker_under_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor/docker_under_cursor.py -------------------------------------------------------------------------------- /dockerundercursor/docker_visibility_toggler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor/docker_visibility_toggler.py -------------------------------------------------------------------------------- /dockerundercursor/dockerundercursor.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor/dockerundercursor.action -------------------------------------------------------------------------------- /dockerundercursor/ducshotcuts.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor/ducshotcuts.action -------------------------------------------------------------------------------- /dockerundercursor/qt_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor/qt_event.py -------------------------------------------------------------------------------- /dockerundercursor/setting_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aqaao/DockerUnderCursor/HEAD/dockerundercursor/setting_panel.py --------------------------------------------------------------------------------