├── .gitattributes ├── .github └── workflows │ ├── check-addon.yml │ ├── publish-addon.yml │ └── publish-docs.yml ├── .gitignore ├── Readme.md ├── docs ├── Makefile ├── _autosummary │ └── .notempty ├── _static │ ├── addon_dialog_window.jpg │ ├── addon_full_window.jpg │ ├── example_ui.jpg │ ├── hello_world.jpg │ ├── pop-up.jpg │ ├── pyxbmct_controls_confl.jpg │ └── pyxbmct_controls_est.jpg ├── classes.rst ├── conf.py ├── connection.rst ├── controls.rst ├── estuary.rst ├── examples.rst ├── grid.rst ├── index.rst ├── links.rst ├── make.bat ├── pyxbmct.rst ├── skins.rst └── using.rst ├── script.module.pyxbmct ├── License.txt ├── addon.xml ├── icon.png └── lib │ └── pyxbmct │ ├── __init__.py │ ├── addonskin.py │ ├── addonwindow.py │ └── textures │ ├── confluence │ ├── AddonWindow │ │ ├── ContentPanel.png │ │ ├── DialogCloseButton-focus.png │ │ ├── DialogCloseButton.png │ │ ├── SKINDEFAULT.jpg │ │ └── dialogheader.png │ ├── Button │ │ ├── KeyboardKey.png │ │ └── KeyboardKeyNF.png │ ├── Edit │ │ ├── black-back2.png │ │ └── button-focus.png │ ├── List │ │ ├── MenuItemFO.png │ │ └── MenuItemNF.png │ ├── RadioButton │ │ ├── MenuItemFO.png │ │ ├── MenuItemNF.png │ │ ├── radiobutton-focus.png │ │ └── radiobutton-nofocus.png │ └── Slider │ │ ├── osd_slider_bg.png │ │ ├── osd_slider_nib.png │ │ └── osd_slider_nibNF.png │ └── estuary │ ├── AddonWindow │ ├── ContentPanel.png │ ├── DialogCloseButton-focus.png │ ├── DialogCloseButton.png │ ├── SKINDEFAULT.jpg │ └── dialogheader.png │ ├── Button │ ├── KeyboardKey.png │ └── KeyboardKeyNF.png │ ├── Edit │ ├── black-back2.png │ └── button-focus.png │ ├── List │ ├── MenuItemFO.png │ └── MenuItemNF.png │ ├── RadioButton │ ├── MenuItemFO.png │ ├── MenuItemNF.png │ ├── radiobutton-focus.png │ └── radiobutton-nofocus.png │ └── Slider │ ├── osd_slider_bg.png │ ├── osd_slider_nib.png │ └── osd_slider_nibNF.png └── setup.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/check-addon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/.github/workflows/check-addon.yml -------------------------------------------------------------------------------- /.github/workflows/publish-addon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/.github/workflows/publish-addon.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/Readme.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_autosummary/.notempty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_static/addon_dialog_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/_static/addon_dialog_window.jpg -------------------------------------------------------------------------------- /docs/_static/addon_full_window.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/_static/addon_full_window.jpg -------------------------------------------------------------------------------- /docs/_static/example_ui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/_static/example_ui.jpg -------------------------------------------------------------------------------- /docs/_static/hello_world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/_static/hello_world.jpg -------------------------------------------------------------------------------- /docs/_static/pop-up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/_static/pop-up.jpg -------------------------------------------------------------------------------- /docs/_static/pyxbmct_controls_confl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/_static/pyxbmct_controls_confl.jpg -------------------------------------------------------------------------------- /docs/_static/pyxbmct_controls_est.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/_static/pyxbmct_controls_est.jpg -------------------------------------------------------------------------------- /docs/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/classes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/connection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/connection.rst -------------------------------------------------------------------------------- /docs/controls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/controls.rst -------------------------------------------------------------------------------- /docs/estuary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/estuary.rst -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/grid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/grid.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/links.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pyxbmct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/pyxbmct.rst -------------------------------------------------------------------------------- /docs/skins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/skins.rst -------------------------------------------------------------------------------- /docs/using.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/docs/using.rst -------------------------------------------------------------------------------- /script.module.pyxbmct/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/License.txt -------------------------------------------------------------------------------- /script.module.pyxbmct/addon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/addon.xml -------------------------------------------------------------------------------- /script.module.pyxbmct/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/icon.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/__init__.py -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/addonskin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/addonskin.py -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/addonwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/addonwindow.py -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/AddonWindow/ContentPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/AddonWindow/ContentPanel.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/AddonWindow/DialogCloseButton-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/AddonWindow/DialogCloseButton-focus.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/AddonWindow/DialogCloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/AddonWindow/DialogCloseButton.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/AddonWindow/SKINDEFAULT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/AddonWindow/SKINDEFAULT.jpg -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/AddonWindow/dialogheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/AddonWindow/dialogheader.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/Button/KeyboardKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/Button/KeyboardKey.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/Button/KeyboardKeyNF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/Button/KeyboardKeyNF.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/Edit/black-back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/Edit/black-back2.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/Edit/button-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/Edit/button-focus.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/List/MenuItemFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/List/MenuItemFO.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/List/MenuItemNF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/List/MenuItemNF.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/RadioButton/MenuItemFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/RadioButton/MenuItemFO.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/RadioButton/MenuItemNF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/RadioButton/MenuItemNF.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/RadioButton/radiobutton-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/RadioButton/radiobutton-focus.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/RadioButton/radiobutton-nofocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/RadioButton/radiobutton-nofocus.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/Slider/osd_slider_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/Slider/osd_slider_bg.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/Slider/osd_slider_nib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/Slider/osd_slider_nib.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/confluence/Slider/osd_slider_nibNF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/confluence/Slider/osd_slider_nibNF.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/AddonWindow/ContentPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/AddonWindow/ContentPanel.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/AddonWindow/DialogCloseButton-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/AddonWindow/DialogCloseButton-focus.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/AddonWindow/DialogCloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/AddonWindow/DialogCloseButton.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/AddonWindow/SKINDEFAULT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/AddonWindow/SKINDEFAULT.jpg -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/AddonWindow/dialogheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/AddonWindow/dialogheader.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/Button/KeyboardKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/Button/KeyboardKey.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/Button/KeyboardKeyNF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/Button/KeyboardKeyNF.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/Edit/black-back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/Edit/black-back2.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/Edit/button-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/Edit/button-focus.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/List/MenuItemFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/List/MenuItemFO.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/List/MenuItemNF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/List/MenuItemNF.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/RadioButton/MenuItemFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/RadioButton/MenuItemFO.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/RadioButton/MenuItemNF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/RadioButton/MenuItemNF.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/RadioButton/radiobutton-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/RadioButton/radiobutton-focus.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/RadioButton/radiobutton-nofocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/RadioButton/radiobutton-nofocus.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/Slider/osd_slider_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/Slider/osd_slider_bg.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/Slider/osd_slider_nib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/Slider/osd_slider_nib.png -------------------------------------------------------------------------------- /script.module.pyxbmct/lib/pyxbmct/textures/estuary/Slider/osd_slider_nibNF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/script.module.pyxbmct/lib/pyxbmct/textures/estuary/Slider/osd_slider_nibNF.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanvm/script.module.pyxbmct/HEAD/setup.py --------------------------------------------------------------------------------