bootstack 0.1.0a1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bootstack/__init__.py +249 -0
- bootstack/__main__.py +5 -0
- bootstack/api/__init__.py +127 -0
- bootstack/api/app.py +30 -0
- bootstack/api/constants.py +3 -0
- bootstack/api/data.py +23 -0
- bootstack/api/dialogs.py +44 -0
- bootstack/api/i18n.py +17 -0
- bootstack/api/localization.py +16 -0
- bootstack/api/menu.py +7 -0
- bootstack/api/style.py +23 -0
- bootstack/api/utils.py +24 -0
- bootstack/api/widgets.py +137 -0
- bootstack/assets/__init__.py +24 -0
- bootstack/assets/bootstack-transparent.png +0 -0
- bootstack/assets/bootstack.ico +0 -0
- bootstack/assets/bootstack.png +0 -0
- bootstack/assets/elements/__init__.py +0 -0
- bootstack/assets/elements/badge-pill.png +0 -0
- bootstack/assets/elements/badge-square.png +0 -0
- bootstack/assets/elements/border.png +0 -0
- bootstack/assets/elements/button-compact.png +0 -0
- bootstack/assets/elements/button-default.png +0 -0
- bootstack/assets/elements/button-group-horizontal-after-compact.png +0 -0
- bootstack/assets/elements/button-group-horizontal-after-default.png +0 -0
- bootstack/assets/elements/button-group-horizontal-before-compact.png +0 -0
- bootstack/assets/elements/button-group-horizontal-before-default.png +0 -0
- bootstack/assets/elements/button-group-horizontal-center-compact.png +0 -0
- bootstack/assets/elements/button-group-horizontal-center-default.png +0 -0
- bootstack/assets/elements/button-group-vertical-after-compact.png +0 -0
- bootstack/assets/elements/button-group-vertical-after-default.png +0 -0
- bootstack/assets/elements/button-group-vertical-before-compact.png +0 -0
- bootstack/assets/elements/button-group-vertical-before-default.png +0 -0
- bootstack/assets/elements/button-group-vertical-center-compact.png +0 -0
- bootstack/assets/elements/button-group-vertical-center-default.png +0 -0
- bootstack/assets/elements/checkbox-checked.png +0 -0
- bootstack/assets/elements/checkbox-indeterminate.png +0 -0
- bootstack/assets/elements/checkbox-unchecked.png +0 -0
- bootstack/assets/elements/field.png +0 -0
- bootstack/assets/elements/input-after-compact.png +0 -0
- bootstack/assets/elements/input-after-default.png +0 -0
- bootstack/assets/elements/input-before-compact.png +0 -0
- bootstack/assets/elements/input-before-default.png +0 -0
- bootstack/assets/elements/input-compact.png +0 -0
- bootstack/assets/elements/input-default.png +0 -0
- bootstack/assets/elements/list-item-separated.png +0 -0
- bootstack/assets/elements/list-item.png +0 -0
- bootstack/assets/elements/manifest.toml +480 -0
- bootstack/assets/elements/menu-item.png +0 -0
- bootstack/assets/elements/nav-button-compact.png +0 -0
- bootstack/assets/elements/nav-button-default.png +0 -0
- bootstack/assets/elements/nav-icon-button-compact.png +0 -0
- bootstack/assets/elements/nav-icon-button-default.png +0 -0
- bootstack/assets/elements/notebook-client-border.png +0 -0
- bootstack/assets/elements/notebook-tab-active.png +0 -0
- bootstack/assets/elements/notebook-tab-bar.png +0 -0
- bootstack/assets/elements/notebook-tab-normal.png +0 -0
- bootstack/assets/elements/notebook-tab-pill.png +0 -0
- bootstack/assets/elements/progress-bar-horizontal-striped.png +0 -0
- bootstack/assets/elements/progress-bar-solid.png +0 -0
- bootstack/assets/elements/progress-bar-thin.png +0 -0
- bootstack/assets/elements/progress-bar-vertical-striped.png +0 -0
- bootstack/assets/elements/radio-selected.png +0 -0
- bootstack/assets/elements/radio-unselected.png +0 -0
- bootstack/assets/elements/scrollbar-horizontal.png +0 -0
- bootstack/assets/elements/scrollbar-vertical.png +0 -0
- bootstack/assets/elements/slider-handle-focus.png +0 -0
- bootstack/assets/elements/slider-handle.png +0 -0
- bootstack/assets/elements/slider-track-horizontal.png +0 -0
- bootstack/assets/elements/slider-track-vertical.png +0 -0
- bootstack/assets/elements/switch-off.png +0 -0
- bootstack/assets/elements/switch-on.png +0 -0
- bootstack/assets/elements/tabs-bar-horizontal.png +0 -0
- bootstack/assets/elements/tabs-bar-vertical.png +0 -0
- bootstack/assets/elements/tabs-pill.png +0 -0
- bootstack/assets/locales/ar/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/ar/LC_MESSAGES/bootstack.po +853 -0
- bootstack/assets/locales/bg/LC_MESSAGES/bootstack.po +875 -0
- bootstack/assets/locales/cs/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/cs/LC_MESSAGES/bootstack.po +853 -0
- bootstack/assets/locales/da/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/da/LC_MESSAGES/bootstack.po +853 -0
- bootstack/assets/locales/de/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/de/LC_MESSAGES/bootstack.po +853 -0
- bootstack/assets/locales/en/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/en/LC_MESSAGES/bootstack.po +875 -0
- bootstack/assets/locales/es/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/es/LC_MESSAGES/bootstack.po +853 -0
- bootstack/assets/locales/fr/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/fr/LC_MESSAGES/bootstack.po +853 -0
- bootstack/assets/locales/he/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/he/LC_MESSAGES/bootstack.po +851 -0
- bootstack/assets/locales/hi/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/hi/LC_MESSAGES/bootstack.po +842 -0
- bootstack/assets/locales/it/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/it/LC_MESSAGES/bootstack.po +841 -0
- bootstack/assets/locales/ja/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/ja/LC_MESSAGES/bootstack.po +914 -0
- bootstack/assets/locales/ko/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/ko/LC_MESSAGES/bootstack.po +842 -0
- bootstack/assets/locales/nb/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/nb/LC_MESSAGES/bootstack.po +841 -0
- bootstack/assets/locales/nl/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/nl/LC_MESSAGES/bootstack.po +841 -0
- bootstack/assets/locales/pl/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/pl/LC_MESSAGES/bootstack.po +842 -0
- bootstack/assets/locales/pt/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/pt/LC_MESSAGES/bootstack.po +842 -0
- bootstack/assets/locales/pt_BR/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/pt_BR/LC_MESSAGES/bootstack.po +842 -0
- bootstack/assets/locales/sl/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/sl/LC_MESSAGES/bootstack.po +842 -0
- bootstack/assets/locales/sv/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/sv/LC_MESSAGES/bootstack.po +842 -0
- bootstack/assets/locales/tr/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/tr/LC_MESSAGES/bootstack.po +842 -0
- bootstack/assets/locales/zh_CN/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/zh_CN/LC_MESSAGES/bootstack.po +842 -0
- bootstack/assets/locales/zh_TW/LC_MESSAGES/bootstack.mo +0 -0
- bootstack/assets/locales/zh_TW/LC_MESSAGES/bootstack.po +842 -0
- bootstack/assets/themes/__init__.py +0 -0
- bootstack/assets/themes/amber-dark.json +32 -0
- bootstack/assets/themes/amber-light.json +32 -0
- bootstack/assets/themes/aurora-dark.json +32 -0
- bootstack/assets/themes/aurora-light.json +32 -0
- bootstack/assets/themes/bootstrap-dark.json +32 -0
- bootstack/assets/themes/bootstrap-light.json +32 -0
- bootstack/assets/themes/classic-dark.json +32 -0
- bootstack/assets/themes/classic-light.json +32 -0
- bootstack/assets/themes/docs-dark.json +32 -0
- bootstack/assets/themes/docs-light.json +32 -0
- bootstack/assets/themes/forest-dark.json +32 -0
- bootstack/assets/themes/forest-light.json +32 -0
- bootstack/assets/themes/ocean-dark.json +32 -0
- bootstack/assets/themes/ocean-light.json +32 -0
- bootstack/assets/themes/rose-dark.json +32 -0
- bootstack/assets/themes/rose-light.json +32 -0
- bootstack/assets/widgets/__init__.py +0 -0
- bootstack/assets/widgets/badge-default.png +0 -0
- bootstack/assets/widgets/badge-pill.png +0 -0
- bootstack/assets/widgets/border.png +0 -0
- bootstack/assets/widgets/button-group-horizontal-after.png +0 -0
- bootstack/assets/widgets/button-group-horizontal-before.png +0 -0
- bootstack/assets/widgets/button-group-horizontal-center.png +0 -0
- bootstack/assets/widgets/button-group-vertical-after.png +0 -0
- bootstack/assets/widgets/button-group-vertical-before.png +0 -0
- bootstack/assets/widgets/button-group-vertical-center.png +0 -0
- bootstack/assets/widgets/button.png +0 -0
- bootstack/assets/widgets/checkbox-checked.png +0 -0
- bootstack/assets/widgets/checkbox-indeterminate.png +0 -0
- bootstack/assets/widgets/checkbox-unchecked.png +0 -0
- bootstack/assets/widgets/field.png +0 -0
- bootstack/assets/widgets/icon-button.png +0 -0
- bootstack/assets/widgets/input-inner.png +0 -0
- bootstack/assets/widgets/input-prefix.png +0 -0
- bootstack/assets/widgets/input-suffix.png +0 -0
- bootstack/assets/widgets/input.png +0 -0
- bootstack/assets/widgets/list-item-focus.png +0 -0
- bootstack/assets/widgets/list-item-separated.png +0 -0
- bootstack/assets/widgets/menu-item-separated.png +0 -0
- bootstack/assets/widgets/notebook-client-border.png +0 -0
- bootstack/assets/widgets/notebook-pill-active.png +0 -0
- bootstack/assets/widgets/notebook-pill-inactive.png +0 -0
- bootstack/assets/widgets/notebook-tab-active.png +0 -0
- bootstack/assets/widgets/notebook-tab-border.png +0 -0
- bootstack/assets/widgets/notebook-tab-normal.png +0 -0
- bootstack/assets/widgets/notebook-underline.png +0 -0
- bootstack/assets/widgets/progress-bar-horizontal-default.png +0 -0
- bootstack/assets/widgets/progress-bar-horizontal-striped.png +0 -0
- bootstack/assets/widgets/progress-bar-vertical-default.png +0 -0
- bootstack/assets/widgets/progress-bar-vertical-striped.png +0 -0
- bootstack/assets/widgets/progress-trough-horizontal.png +0 -0
- bootstack/assets/widgets/progress-trough-vertical.png +0 -0
- bootstack/assets/widgets/radio-selected.png +0 -0
- bootstack/assets/widgets/radio-unselected.png +0 -0
- bootstack/assets/widgets/scrollbar-horizontal-rounded.png +0 -0
- bootstack/assets/widgets/scrollbar-vertical-rounded.png +0 -0
- bootstack/assets/widgets/separator-horizontal.png +0 -0
- bootstack/assets/widgets/separator-vertical.png +0 -0
- bootstack/assets/widgets/slider-handle-focus.png +0 -0
- bootstack/assets/widgets/slider-handle.png +0 -0
- bootstack/assets/widgets/slider-track-horizontal.png +0 -0
- bootstack/assets/widgets/slider-track-vertical.png +0 -0
- bootstack/assets/widgets/switch-off.png +0 -0
- bootstack/assets/widgets/switch-on.png +0 -0
- bootstack/assets/widgets/tabs-bar-horizontal.png +0 -0
- bootstack/assets/widgets/tabs-bar-vertical.png +0 -0
- bootstack/assets/widgets/tabs-pill.png +0 -0
- bootstack/cli/__init__.py +124 -0
- bootstack/cli/__main__.py +6 -0
- bootstack/cli/add.py +439 -0
- bootstack/cli/build.py +115 -0
- bootstack/cli/config.py +287 -0
- bootstack/cli/demo.py +1267 -0
- bootstack/cli/doctor.py +195 -0
- bootstack/cli/list_cmd.py +71 -0
- bootstack/cli/promote.py +120 -0
- bootstack/cli/pyinstaller.py +246 -0
- bootstack/cli/run.py +99 -0
- bootstack/cli/start.py +105 -0
- bootstack/cli/templates/__init__.py +861 -0
- bootstack/constants.py +325 -0
- bootstack/core/__init__.py +34 -0
- bootstack/core/capabilities/__init__.py +45 -0
- bootstack/core/capabilities/after.py +103 -0
- bootstack/core/capabilities/bind.py +154 -0
- bootstack/core/capabilities/bindtags.py +112 -0
- bootstack/core/capabilities/busy.py +61 -0
- bootstack/core/capabilities/clipboard.py +88 -0
- bootstack/core/capabilities/focus.py +118 -0
- bootstack/core/capabilities/grab.py +65 -0
- bootstack/core/capabilities/grid.py +188 -0
- bootstack/core/capabilities/localization.py +231 -0
- bootstack/core/capabilities/pack.py +119 -0
- bootstack/core/capabilities/place.py +92 -0
- bootstack/core/capabilities/selection.py +136 -0
- bootstack/core/capabilities/signals.py +242 -0
- bootstack/core/capabilities/winfo.py +315 -0
- bootstack/core/colorutils.py +234 -0
- bootstack/core/exceptions.py +95 -0
- bootstack/core/images.py +283 -0
- bootstack/core/localization/README.md +90 -0
- bootstack/core/localization/__init__.py +13 -0
- bootstack/core/localization/intl_format.py +580 -0
- bootstack/core/localization/msgcat.py +425 -0
- bootstack/core/localization/specs.py +143 -0
- bootstack/core/mixins/__init__.py +1 -0
- bootstack/core/mixins/ttk_state.py +35 -0
- bootstack/core/mixins/widget.py +132 -0
- bootstack/core/publisher.py +147 -0
- bootstack/core/signals/README.md +112 -0
- bootstack/core/signals/__init__.py +8 -0
- bootstack/core/signals/integration.py +100 -0
- bootstack/core/signals/signal.py +317 -0
- bootstack/core/signals/types.py +4 -0
- bootstack/core/validation/__init__.py +5 -0
- bootstack/core/validation/types.py +13 -0
- bootstack/core/validation/validation_result.py +17 -0
- bootstack/core/validation/validation_rules.py +112 -0
- bootstack/core/variables.py +62 -0
- bootstack/datasource/README.md +607 -0
- bootstack/datasource/__init__.py +51 -0
- bootstack/datasource/base.py +474 -0
- bootstack/datasource/file_source.py +541 -0
- bootstack/datasource/memory_source.py +482 -0
- bootstack/datasource/sqlite_source.py +453 -0
- bootstack/datasource/types.py +259 -0
- bootstack/dialogs/__init__.py +56 -0
- bootstack/dialogs/colorchooser.py +674 -0
- bootstack/dialogs/colordropper.py +257 -0
- bootstack/dialogs/datedialog.py +404 -0
- bootstack/dialogs/dialog.py +514 -0
- bootstack/dialogs/filterdialog.py +358 -0
- bootstack/dialogs/fontdialog.py +339 -0
- bootstack/dialogs/formdialog.py +541 -0
- bootstack/dialogs/message.py +489 -0
- bootstack/dialogs/query.py +561 -0
- bootstack/py.typed +1 -0
- bootstack/runtime/__init__.py +3 -0
- bootstack/runtime/app.py +879 -0
- bootstack/runtime/base_window.py +786 -0
- bootstack/runtime/events.py +399 -0
- bootstack/runtime/menu.py +510 -0
- bootstack/runtime/shortcuts.py +423 -0
- bootstack/runtime/tk_patch.py +31 -0
- bootstack/runtime/toplevel.py +131 -0
- bootstack/runtime/utility.py +371 -0
- bootstack/runtime/visual_focus.py +228 -0
- bootstack/runtime/window_utilities.py +1043 -0
- bootstack/style/__init__.py +5498 -0
- bootstack/style/bootstyle.py +507 -0
- bootstack/style/bootstyle_builder_base.py +752 -0
- bootstack/style/bootstyle_builder_mixed.py +93 -0
- bootstack/style/bootstyle_builder_tk.py +109 -0
- bootstack/style/bootstyle_builder_ttk.py +354 -0
- bootstack/style/builders/__init__.py +51 -0
- bootstack/style/builders/badge.py +44 -0
- bootstack/style/builders/button.py +453 -0
- bootstack/style/builders/buttongroup.py +344 -0
- bootstack/style/builders/calendar.py +271 -0
- bootstack/style/builders/checkbutton.py +95 -0
- bootstack/style/builders/combobox.py +112 -0
- bootstack/style/builders/contextmenu.py +268 -0
- bootstack/style/builders/entry.py +83 -0
- bootstack/style/builders/expander.py +171 -0
- bootstack/style/builders/field.py +312 -0
- bootstack/style/builders/frame.py +27 -0
- bootstack/style/builders/label.py +28 -0
- bootstack/style/builders/labelframe.py +41 -0
- bootstack/style/builders/listview.py +267 -0
- bootstack/style/builders/menubar.py +74 -0
- bootstack/style/builders/menubutton.py +408 -0
- bootstack/style/builders/notebook.py +316 -0
- bootstack/style/builders/panedwindow.py +25 -0
- bootstack/style/builders/progressbar.py +71 -0
- bootstack/style/builders/radiobutton.py +68 -0
- bootstack/style/builders/scale.py +66 -0
- bootstack/style/builders/scrollbar.py +360 -0
- bootstack/style/builders/separator.py +45 -0
- bootstack/style/builders/sidenav.py +313 -0
- bootstack/style/builders/sizegrip.py +15 -0
- bootstack/style/builders/spinbox.py +119 -0
- bootstack/style/builders/switch.py +67 -0
- bootstack/style/builders/tabitem.py +205 -0
- bootstack/style/builders/toolbutton.py +260 -0
- bootstack/style/builders/tooltip.py +26 -0
- bootstack/style/builders/treeview.py +269 -0
- bootstack/style/builders/utils.py +404 -0
- bootstack/style/builders_tk/__init__.py +16 -0
- bootstack/style/builders_tk/defaults.py +229 -0
- bootstack/style/element.py +173 -0
- bootstack/style/style.py +499 -0
- bootstack/style/theme_provider.py +449 -0
- bootstack/style/tk_patch.py +5 -0
- bootstack/style/token_maps.py +42 -0
- bootstack/style/types.py +32 -0
- bootstack/style/typography.py +527 -0
- bootstack/style/utility.py +696 -0
- bootstack/themes/__init__.py +12 -0
- bootstack/themes/standard.py +415 -0
- bootstack/themes/user.py +45 -0
- bootstack/widgets/__init__.py +53 -0
- bootstack/widgets/composites/__init__.py +38 -0
- bootstack/widgets/composites/accordion.py +385 -0
- bootstack/widgets/composites/appshell.py +445 -0
- bootstack/widgets/composites/buttongroup.py +391 -0
- bootstack/widgets/composites/calendar.py +914 -0
- bootstack/widgets/composites/compositeframe.py +282 -0
- bootstack/widgets/composites/contextmenu.py +1754 -0
- bootstack/widgets/composites/dateentry.py +261 -0
- bootstack/widgets/composites/dropdownbutton.py +190 -0
- bootstack/widgets/composites/expander.py +508 -0
- bootstack/widgets/composites/field.py +448 -0
- bootstack/widgets/composites/floodgauge.py +434 -0
- bootstack/widgets/composites/form.py +983 -0
- bootstack/widgets/composites/labeledscale.py +209 -0
- bootstack/widgets/composites/list/__init__.py +15 -0
- bootstack/widgets/composites/list/listitem.py +733 -0
- bootstack/widgets/composites/list/listview.py +1507 -0
- bootstack/widgets/composites/menubar.py +303 -0
- bootstack/widgets/composites/meter.py +882 -0
- bootstack/widgets/composites/numericentry.py +183 -0
- bootstack/widgets/composites/pagestack.py +330 -0
- bootstack/widgets/composites/passwordentry.py +149 -0
- bootstack/widgets/composites/pathentry.py +223 -0
- bootstack/widgets/composites/radiogroup.py +466 -0
- bootstack/widgets/composites/scrolledtext.py +388 -0
- bootstack/widgets/composites/scrolledtext.pyi +186 -0
- bootstack/widgets/composites/scrollview.py +675 -0
- bootstack/widgets/composites/selectbox.py +544 -0
- bootstack/widgets/composites/sidenav/__init__.py +24 -0
- bootstack/widgets/composites/sidenav/group.py +485 -0
- bootstack/widgets/composites/sidenav/header.py +83 -0
- bootstack/widgets/composites/sidenav/item.py +413 -0
- bootstack/widgets/composites/sidenav/separator.py +51 -0
- bootstack/widgets/composites/sidenav/view.py +919 -0
- bootstack/widgets/composites/spinnerentry.py +232 -0
- bootstack/widgets/composites/tableview/__init__.py +5 -0
- bootstack/widgets/composites/tableview/tableview.py +2254 -0
- bootstack/widgets/composites/tableview/types.py +169 -0
- bootstack/widgets/composites/tabs/__init__.py +6 -0
- bootstack/widgets/composites/tabs/tabitem.py +372 -0
- bootstack/widgets/composites/tabs/tabs.py +478 -0
- bootstack/widgets/composites/tabs/tabview.py +352 -0
- bootstack/widgets/composites/textentry.py +90 -0
- bootstack/widgets/composites/timeentry.py +189 -0
- bootstack/widgets/composites/toast.py +364 -0
- bootstack/widgets/composites/togglegroup.py +382 -0
- bootstack/widgets/composites/toolbar.py +393 -0
- bootstack/widgets/composites/tooltip.py +404 -0
- bootstack/widgets/internal/__init__.py +0 -0
- bootstack/widgets/internal/wrapper_base.py +304 -0
- bootstack/widgets/mixins/__init__.py +25 -0
- bootstack/widgets/mixins/configure_mixin.py +186 -0
- bootstack/widgets/mixins/entry_mixin.py +70 -0
- bootstack/widgets/mixins/font_mixin.py +346 -0
- bootstack/widgets/mixins/icon_mixin.py +38 -0
- bootstack/widgets/mixins/localization_mixin.py +255 -0
- bootstack/widgets/mixins/signal_mixin.py +272 -0
- bootstack/widgets/mixins/validation_mixin.py +204 -0
- bootstack/widgets/parts/__init__.py +11 -0
- bootstack/widgets/parts/numberentry_part.py +345 -0
- bootstack/widgets/parts/spinnerentry_part.py +394 -0
- bootstack/widgets/parts/textentry_part.py +344 -0
- bootstack/widgets/primitives/__init__.py +55 -0
- bootstack/widgets/primitives/badge.py +44 -0
- bootstack/widgets/primitives/button.py +89 -0
- bootstack/widgets/primitives/card.py +66 -0
- bootstack/widgets/primitives/checkbutton.py +124 -0
- bootstack/widgets/primitives/checktoggle.py +53 -0
- bootstack/widgets/primitives/combobox.py +165 -0
- bootstack/widgets/primitives/entry.py +98 -0
- bootstack/widgets/primitives/frame.py +206 -0
- bootstack/widgets/primitives/gridframe.py +479 -0
- bootstack/widgets/primitives/label.py +95 -0
- bootstack/widgets/primitives/labelframe.py +63 -0
- bootstack/widgets/primitives/menubutton.py +118 -0
- bootstack/widgets/primitives/notebook.py +551 -0
- bootstack/widgets/primitives/optionmenu.py +248 -0
- bootstack/widgets/primitives/packframe.py +228 -0
- bootstack/widgets/primitives/panedwindow.py +58 -0
- bootstack/widgets/primitives/progressbar.py +95 -0
- bootstack/widgets/primitives/radiobutton.py +115 -0
- bootstack/widgets/primitives/radiotoggle.py +50 -0
- bootstack/widgets/primitives/scale.py +85 -0
- bootstack/widgets/primitives/scrollbar.py +56 -0
- bootstack/widgets/primitives/separator.py +56 -0
- bootstack/widgets/primitives/sizegrip.py +47 -0
- bootstack/widgets/primitives/spinbox.py +91 -0
- bootstack/widgets/primitives/switch.py +41 -0
- bootstack/widgets/primitives/treeview.py +77 -0
- bootstack/widgets/types.py +20 -0
- bootstack-0.1.0a1.dist-info/METADATA +196 -0
- bootstack-0.1.0a1.dist-info/RECORD +419 -0
- bootstack-0.1.0a1.dist-info/WHEEL +5 -0
- bootstack-0.1.0a1.dist-info/entry_points.txt +2 -0
- bootstack-0.1.0a1.dist-info/licenses/LICENSE +22 -0
- bootstack-0.1.0a1.dist-info/licenses/NOTICE +10 -0
- bootstack-0.1.0a1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
"""Style builders for the Expander widget."""
|
|
2
|
+
|
|
3
|
+
from bootstack.style.bootstyle_builder_ttk import BootstyleBuilderTTk
|
|
4
|
+
from bootstack.style.builders.utils import apply_icon_mapping
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@BootstyleBuilderTTk.register_builder('solid', 'Expander.TFrame')
|
|
8
|
+
def build_solid_expander_header_style(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
9
|
+
background = b.color(accent or 'primary')
|
|
10
|
+
active = b.active(background)
|
|
11
|
+
pressed = b.pressed(background)
|
|
12
|
+
focus_border = b.focus_border(active)
|
|
13
|
+
selected = b.selected(active)
|
|
14
|
+
|
|
15
|
+
b.configure_style(ttk_style, background=background, borderwidth=1, relief='raised')
|
|
16
|
+
|
|
17
|
+
b.map_style(
|
|
18
|
+
ttk_style,
|
|
19
|
+
background=[
|
|
20
|
+
('selected', selected),
|
|
21
|
+
('pressed', pressed),
|
|
22
|
+
('hover', active),
|
|
23
|
+
('', background)
|
|
24
|
+
],
|
|
25
|
+
darkcolor=[
|
|
26
|
+
('selected', selected),
|
|
27
|
+
('pressed', pressed),
|
|
28
|
+
('hover', active),
|
|
29
|
+
('', background)
|
|
30
|
+
],
|
|
31
|
+
lightcolor=[
|
|
32
|
+
('selected', selected),
|
|
33
|
+
('pressed', pressed),
|
|
34
|
+
('hover', active),
|
|
35
|
+
('', background)
|
|
36
|
+
],
|
|
37
|
+
bordercolor=[
|
|
38
|
+
('background focus', focus_border),
|
|
39
|
+
('selected', selected),
|
|
40
|
+
('pressed', pressed),
|
|
41
|
+
('hover', active),
|
|
42
|
+
('', background)
|
|
43
|
+
]
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
@BootstyleBuilderTTk.register_builder('solid', 'Expander.TLabel')
|
|
48
|
+
def build_solid_expander_header_label_style(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
49
|
+
"""Expander header label style with state-aware foreground."""
|
|
50
|
+
background = b.color(accent or 'primary')
|
|
51
|
+
active = b.active(background)
|
|
52
|
+
pressed = b.pressed(background)
|
|
53
|
+
selected = b.selected(active)
|
|
54
|
+
|
|
55
|
+
on_background = b.on_color(background)
|
|
56
|
+
on_active = b.on_color(active)
|
|
57
|
+
on_pressed = b.on_color(pressed)
|
|
58
|
+
disabled = b.disabled('text', background)
|
|
59
|
+
|
|
60
|
+
b.configure_style(
|
|
61
|
+
ttk_style,
|
|
62
|
+
background=background,
|
|
63
|
+
foreground=on_background,
|
|
64
|
+
relief='flat',
|
|
65
|
+
font='body'
|
|
66
|
+
)
|
|
67
|
+
|
|
68
|
+
foreground_state_map = [
|
|
69
|
+
('disabled', disabled),
|
|
70
|
+
('pressed', on_pressed),
|
|
71
|
+
('hover', on_active),
|
|
72
|
+
('', on_background)
|
|
73
|
+
]
|
|
74
|
+
|
|
75
|
+
background_state_map = [
|
|
76
|
+
('selected', selected),
|
|
77
|
+
('pressed', pressed),
|
|
78
|
+
('hover', active),
|
|
79
|
+
('', background)
|
|
80
|
+
]
|
|
81
|
+
|
|
82
|
+
state_spec = dict(foreground=foreground_state_map, background=background_state_map)
|
|
83
|
+
state_spec = apply_icon_mapping(b, options, state_spec)
|
|
84
|
+
|
|
85
|
+
b.map_style(ttk_style, **state_spec)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
@BootstyleBuilderTTk.register_builder('default', 'Expander.TFrame')
|
|
89
|
+
def build_ghost_expander_header_style(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
90
|
+
accent_token = accent or 'foreground'
|
|
91
|
+
surface_token = options.get('surface', 'content')
|
|
92
|
+
|
|
93
|
+
surface = b.color(surface_token)
|
|
94
|
+
accent_color = b.color(accent_token)
|
|
95
|
+
|
|
96
|
+
hovered = pressed = b.subtle(accent_token, surface)
|
|
97
|
+
selected = b.selected(hovered)
|
|
98
|
+
|
|
99
|
+
focused_border = b.focus_border(accent_color) if accent_token != 'foreground' else b.focus_border(b.color('primary'))
|
|
100
|
+
|
|
101
|
+
b.configure_style(ttk_style, background=surface, borderwidth=1, relief='raised')
|
|
102
|
+
b.map_style(
|
|
103
|
+
ttk_style,
|
|
104
|
+
background=[
|
|
105
|
+
('selected', selected),
|
|
106
|
+
('pressed', pressed),
|
|
107
|
+
('hover', hovered),
|
|
108
|
+
('', surface)
|
|
109
|
+
],
|
|
110
|
+
darkcolor=[
|
|
111
|
+
('selected', selected),
|
|
112
|
+
('pressed', pressed),
|
|
113
|
+
('hover', hovered),
|
|
114
|
+
('', surface)
|
|
115
|
+
],
|
|
116
|
+
lightcolor=[
|
|
117
|
+
('selected', selected),
|
|
118
|
+
('pressed', pressed),
|
|
119
|
+
('hover', hovered),
|
|
120
|
+
('', surface)
|
|
121
|
+
],
|
|
122
|
+
bordercolor=[
|
|
123
|
+
('background focus', focused_border),
|
|
124
|
+
('selected', selected),
|
|
125
|
+
('pressed', pressed),
|
|
126
|
+
('hover', hovered),
|
|
127
|
+
('', surface)
|
|
128
|
+
]
|
|
129
|
+
)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
@BootstyleBuilderTTk.register_builder('default', 'Expander.TLabel')
|
|
133
|
+
def build_ghost_expander_header_label_style(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
134
|
+
"""Expander header label style with state-aware foreground."""
|
|
135
|
+
accent_token = accent or 'foreground'
|
|
136
|
+
surface_token = options.get('surface', 'content')
|
|
137
|
+
|
|
138
|
+
surface = b.color(surface_token)
|
|
139
|
+
accent_color = b.color(accent_token)
|
|
140
|
+
|
|
141
|
+
hovered = pressed = b.subtle(accent_token, surface)
|
|
142
|
+
selected = b.selected(hovered)
|
|
143
|
+
|
|
144
|
+
on_surface = accent_color
|
|
145
|
+
on_disabled = b.disabled('text', accent_color)
|
|
146
|
+
|
|
147
|
+
b.configure_style(
|
|
148
|
+
ttk_style,
|
|
149
|
+
background=surface,
|
|
150
|
+
foreground=on_surface,
|
|
151
|
+
relief='flat',
|
|
152
|
+
font='body'
|
|
153
|
+
)
|
|
154
|
+
|
|
155
|
+
foreground_state_map = [
|
|
156
|
+
('disabled', on_disabled),
|
|
157
|
+
('', on_surface)
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
background_state_map = [
|
|
161
|
+
('selected', selected),
|
|
162
|
+
('disabled', surface),
|
|
163
|
+
('pressed', pressed),
|
|
164
|
+
('hover', hovered),
|
|
165
|
+
('', surface)
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
state_spec = dict(foreground=foreground_state_map, background=background_state_map)
|
|
169
|
+
state_spec = apply_icon_mapping(b, options, state_spec)
|
|
170
|
+
|
|
171
|
+
b.map_style(ttk_style, **state_spec)
|
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
"""Field widget style builders.
|
|
2
|
+
|
|
3
|
+
This module contains style builders for ttk.Frame widget and field variants used to build
|
|
4
|
+
the Entry containers.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from __future__ import annotations
|
|
8
|
+
|
|
9
|
+
from ttkbootstrap_icons_bs import BootstrapIcon
|
|
10
|
+
|
|
11
|
+
from bootstack.style.bootstyle_builder_ttk import BootstyleBuilderTTk
|
|
12
|
+
from bootstack.style.element import Element, ElementImage
|
|
13
|
+
from bootstack.style.utility import recolor_element_image
|
|
14
|
+
from bootstack.style.builders.utils import (
|
|
15
|
+
normalize_button_density,
|
|
16
|
+
entry_font,
|
|
17
|
+
entry_padding,
|
|
18
|
+
field_height,
|
|
19
|
+
entry_icon_size,
|
|
20
|
+
entry_image_key,
|
|
21
|
+
spinner_arrow_height,
|
|
22
|
+
spinner_arrow_width,
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
@BootstyleBuilderTTk.register_builder('default', 'TField')
|
|
27
|
+
def build_field_style(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
28
|
+
surface_token = options.get('surface', 'content')
|
|
29
|
+
fill_token = options.get('input_background') or 'content'
|
|
30
|
+
density = normalize_button_density(options.get('density', 'default'))
|
|
31
|
+
|
|
32
|
+
fill = b.color(fill_token)
|
|
33
|
+
container_surface = b.color(surface_token)
|
|
34
|
+
accent_color = b.color(accent or 'primary')
|
|
35
|
+
normal = fill
|
|
36
|
+
border = b.border(fill)
|
|
37
|
+
disabled = b.disabled('text')
|
|
38
|
+
focused_border = b.focus_border(accent_color)
|
|
39
|
+
focused_ring = b.focus_ring(accent_color, container_surface)
|
|
40
|
+
|
|
41
|
+
# input element images - use density-aware images from manifest
|
|
42
|
+
img_key = entry_image_key('input', density)
|
|
43
|
+
normal_img = recolor_element_image(img_key, normal, border, container_surface, container_surface)
|
|
44
|
+
focused_img = recolor_element_image(img_key, normal, focused_border, focused_ring, container_surface)
|
|
45
|
+
disabled_img = recolor_element_image(img_key, normal, disabled, container_surface, container_surface)
|
|
46
|
+
|
|
47
|
+
# input element
|
|
48
|
+
b.create_style_element_image(
|
|
49
|
+
ElementImage(f'{ttk_style}.border', normal_img.image, sticky="nsew", border=normal_img.meta.border).state_specs(
|
|
50
|
+
[
|
|
51
|
+
('disabled', disabled_img.image),
|
|
52
|
+
('focus', focused_img.image),
|
|
53
|
+
]
|
|
54
|
+
)
|
|
55
|
+
)
|
|
56
|
+
b.create_style_layout(
|
|
57
|
+
ttk_style, Element(f'{ttk_style}.border', sticky="nsew").children(
|
|
58
|
+
[
|
|
59
|
+
Element(f'{ttk_style}.padding', sticky="nsew")
|
|
60
|
+
]))
|
|
61
|
+
b.configure_style(ttk_style, background=fill)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
@BootstyleBuilderTTk.register_builder('input', 'TField')
|
|
65
|
+
def build_field_input_style(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
66
|
+
surface_token = options.get('surface', 'content')
|
|
67
|
+
fill_token = options.get('input_background') or 'content'
|
|
68
|
+
density = normalize_button_density(options.get('density', 'default'))
|
|
69
|
+
|
|
70
|
+
fill = b.color(fill_token)
|
|
71
|
+
disabled_bg = b.disabled('background')
|
|
72
|
+
disabled_fg = b.disabled('text')
|
|
73
|
+
foreground = b.on_color(fill)
|
|
74
|
+
|
|
75
|
+
# Inner field is a white fill that gets recolored; height controls density
|
|
76
|
+
field_img = recolor_element_image('field', fill)
|
|
77
|
+
height = field_height(b, density)
|
|
78
|
+
|
|
79
|
+
b.create_style_element_image(ElementImage(f'{ttk_style}.field', field_img.image, sticky="nsew", height=height))
|
|
80
|
+
b.create_style_layout(
|
|
81
|
+
ttk_style, Element(f'{ttk_style}.field').children(
|
|
82
|
+
[
|
|
83
|
+
Element('Entry.padding', sticky="ew").children(
|
|
84
|
+
[
|
|
85
|
+
Element('Entry.textarea', sticky="nsew")
|
|
86
|
+
])
|
|
87
|
+
]))
|
|
88
|
+
|
|
89
|
+
b.configure_style(
|
|
90
|
+
ttk_style,
|
|
91
|
+
relief='flat',
|
|
92
|
+
foreground=foreground,
|
|
93
|
+
background=fill,
|
|
94
|
+
fieldbackground=fill,
|
|
95
|
+
selectborderwidth=0,
|
|
96
|
+
bordercolor=fill,
|
|
97
|
+
darkcolor=fill,
|
|
98
|
+
lightcolor=fill,
|
|
99
|
+
insertcolor=foreground,
|
|
100
|
+
padding=entry_padding(b, density),
|
|
101
|
+
font=entry_font(density),
|
|
102
|
+
selectforeground=b.on_color(b.color('primary')),
|
|
103
|
+
selectbackground=b.color('primary')
|
|
104
|
+
)
|
|
105
|
+
|
|
106
|
+
b.map_style(
|
|
107
|
+
ttk_style,
|
|
108
|
+
background=[('disabled', disabled_bg), ('readonly', disabled_bg)],
|
|
109
|
+
fieldbackground=[('disabled', disabled_bg)],
|
|
110
|
+
selectforeground=[],
|
|
111
|
+
selectbackground=[],
|
|
112
|
+
bordercolor=[('disabled', disabled_bg)],
|
|
113
|
+
darkcolor=[('disabled', disabled_bg)],
|
|
114
|
+
lightcolor=[('disabled', disabled_bg)],
|
|
115
|
+
foreground=[('disabled !readonly', disabled_fg), ('', foreground)],
|
|
116
|
+
)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
@BootstyleBuilderTTk.register_builder('spinner', 'TField')
|
|
120
|
+
def build_spinner_input_style(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
121
|
+
surface_token = options.get('surface', 'content')
|
|
122
|
+
fill_token = options.get('input_background') or 'content'
|
|
123
|
+
density = normalize_button_density(options.get('density', 'default'))
|
|
124
|
+
|
|
125
|
+
fill = b.color(fill_token)
|
|
126
|
+
disabled_bg = b.disabled('background')
|
|
127
|
+
disabled_fg = b.disabled('text')
|
|
128
|
+
foreground = b.on_color(fill)
|
|
129
|
+
|
|
130
|
+
# Inner field is a white fill that gets recolored; height controls density
|
|
131
|
+
field_img = recolor_element_image('field', fill)
|
|
132
|
+
height = field_height(b, density)
|
|
133
|
+
|
|
134
|
+
b.create_style_element_image(ElementImage(f'{ttk_style}.field', field_img.image, sticky="nsew", height=height))
|
|
135
|
+
|
|
136
|
+
# add arrow images - use density-aware icon size
|
|
137
|
+
icon_size = entry_icon_size(b, density)
|
|
138
|
+
arrow_up_normal_img = BootstrapIcon('caret-up-fill', color=foreground, size=icon_size).image
|
|
139
|
+
arrow_up_disabled_img = BootstrapIcon('caret-up-fill', color=disabled_fg, size=icon_size).image
|
|
140
|
+
arrow_down_normal_img = BootstrapIcon('caret-down-fill', color=foreground, size=icon_size).image
|
|
141
|
+
arrow_down_disabled_img = BootstrapIcon('caret-down-fill', color=disabled_fg, size=icon_size).image
|
|
142
|
+
|
|
143
|
+
# Arrow element images
|
|
144
|
+
arrow_height = spinner_arrow_height(b, density)
|
|
145
|
+
arrow_width = spinner_arrow_width(b)
|
|
146
|
+
|
|
147
|
+
b.create_style_element_image(
|
|
148
|
+
ElementImage(f'{ttk_style}.uparrow', arrow_up_normal_img, sticky='', width=arrow_width, height=arrow_height).state_specs([
|
|
149
|
+
('disabled', arrow_up_disabled_img),
|
|
150
|
+
('', arrow_up_normal_img),
|
|
151
|
+
])
|
|
152
|
+
)
|
|
153
|
+
|
|
154
|
+
b.create_style_element_image(
|
|
155
|
+
ElementImage(f'{ttk_style}.downarrow', arrow_down_normal_img, sticky='', width=arrow_width, height=arrow_height).state_specs([
|
|
156
|
+
('disabled', arrow_down_disabled_img),
|
|
157
|
+
('', arrow_down_normal_img),
|
|
158
|
+
])
|
|
159
|
+
)
|
|
160
|
+
|
|
161
|
+
# layout - arrows stacked vertically
|
|
162
|
+
b.create_style_layout(
|
|
163
|
+
ttk_style,
|
|
164
|
+
Element(f'{ttk_style}.field', sticky="nsew").children(
|
|
165
|
+
[
|
|
166
|
+
Element('null', side='right', sticky='').children(
|
|
167
|
+
[
|
|
168
|
+
Element(f'{ttk_style}.uparrow', side='top', sticky=''),
|
|
169
|
+
Element(f'{ttk_style}.downarrow', side='top', sticky=''),
|
|
170
|
+
]),
|
|
171
|
+
Element('Spinbox.padding', sticky='nsew').children(
|
|
172
|
+
[
|
|
173
|
+
Element('Spinbox.textarea', sticky='nsew'),
|
|
174
|
+
])
|
|
175
|
+
]),
|
|
176
|
+
)
|
|
177
|
+
|
|
178
|
+
# Add extra right padding for spinner arrows
|
|
179
|
+
base_padding = entry_padding(b, density)
|
|
180
|
+
spinner_padding = (base_padding[0], base_padding[1], base_padding[0] + b.scale(3), base_padding[1])
|
|
181
|
+
|
|
182
|
+
b.configure_style(
|
|
183
|
+
ttk_style,
|
|
184
|
+
relief='flat',
|
|
185
|
+
foreground=foreground,
|
|
186
|
+
background=fill,
|
|
187
|
+
fieldbackground=fill,
|
|
188
|
+
selectborderwidth=0,
|
|
189
|
+
bordercolor=fill,
|
|
190
|
+
darkcolor=fill,
|
|
191
|
+
lightcolor=fill,
|
|
192
|
+
insertcolor=foreground,
|
|
193
|
+
padding=spinner_padding,
|
|
194
|
+
font=entry_font(density),
|
|
195
|
+
selectforeground=b.on_color(b.color('primary')),
|
|
196
|
+
selectbackground=b.color('primary')
|
|
197
|
+
)
|
|
198
|
+
|
|
199
|
+
b.map_style(
|
|
200
|
+
ttk_style,
|
|
201
|
+
background=[('disabled', disabled_bg), ('readonly', disabled_bg)],
|
|
202
|
+
fieldbackground=[('disabled', disabled_bg)],
|
|
203
|
+
selectforeground=[],
|
|
204
|
+
selectbackground=[],
|
|
205
|
+
bordercolor=[('disabled', disabled_bg)],
|
|
206
|
+
darkcolor=[('disabled', disabled_bg)],
|
|
207
|
+
lightcolor=[('disabled', disabled_bg)],
|
|
208
|
+
foreground=[('disabled !readonly', disabled_fg), ('', foreground)],
|
|
209
|
+
)
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
@BootstyleBuilderTTk.register_builder('prefix', 'TField')
|
|
213
|
+
def build_field_prefix_style(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
214
|
+
build_field_addon_style(b, ttk_style, accent, 'before', **options)
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
@BootstyleBuilderTTk.register_builder('suffix', 'TField')
|
|
218
|
+
def build_field_suffix_style(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
219
|
+
build_field_addon_style(b, ttk_style, accent, 'after', **options)
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
def build_field_addon_style(b: BootstyleBuilderTTk, ttk_style: str, _: str, variant: str, **options):
|
|
223
|
+
"""Build prefix/suffix addon styles for entry fields.
|
|
224
|
+
|
|
225
|
+
Args:
|
|
226
|
+
b: The bootstyle builder instance.
|
|
227
|
+
ttk_style: The TTK style name.
|
|
228
|
+
_: Unused accent parameter.
|
|
229
|
+
variant: 'before' for prefix, 'after' for suffix.
|
|
230
|
+
**options: Style options including 'density', 'surface', 'use_active_states', 'icon'.
|
|
231
|
+
"""
|
|
232
|
+
surface_token = options.get('surface', 'content')
|
|
233
|
+
fill_token = options.get('input_background') or 'content'
|
|
234
|
+
density = normalize_button_density(options.get('density', 'default'))
|
|
235
|
+
use_active_states = options.get('use_active_states', False)
|
|
236
|
+
fill = b.color(fill_token)
|
|
237
|
+
|
|
238
|
+
if use_active_states:
|
|
239
|
+
surface_active = b.active(fill)
|
|
240
|
+
surface_pressed = b.pressed(fill)
|
|
241
|
+
else:
|
|
242
|
+
surface_active = surface_pressed = fill
|
|
243
|
+
|
|
244
|
+
border = b.border(fill)
|
|
245
|
+
foreground = b.on_color(fill)
|
|
246
|
+
foreground_disabled = b.disabled('text')
|
|
247
|
+
normal = b.disabled(surface=fill)
|
|
248
|
+
|
|
249
|
+
# addon element images - use density-aware images from manifest
|
|
250
|
+
# variant is 'before' or 'after', maps to input_before_* or input_after_*
|
|
251
|
+
img_key = entry_image_key(f'input_{variant}', density)
|
|
252
|
+
normal_img = recolor_element_image(img_key, normal, border)
|
|
253
|
+
|
|
254
|
+
if use_active_states:
|
|
255
|
+
active_img = recolor_element_image(img_key, surface_active, border)
|
|
256
|
+
pressed_img = recolor_element_image(img_key, surface_pressed, border)
|
|
257
|
+
else:
|
|
258
|
+
active_img = pressed_img = normal_img
|
|
259
|
+
|
|
260
|
+
# addon element - set explicit height to match field height
|
|
261
|
+
height = field_height(b, density)
|
|
262
|
+
b.create_style_element_image(
|
|
263
|
+
ElementImage(f'{ttk_style}.border', normal_img.image, border=normal_img.meta.border, height=height).state_specs([
|
|
264
|
+
('pressed', pressed_img.image),
|
|
265
|
+
('active', active_img.image),
|
|
266
|
+
('', normal_img.image)
|
|
267
|
+
]))
|
|
268
|
+
|
|
269
|
+
b.create_style_layout(
|
|
270
|
+
ttk_style, Element(f"{ttk_style}.border", sticky="nsew").children(
|
|
271
|
+
[
|
|
272
|
+
Element("Button.padding", sticky="nsew").children(
|
|
273
|
+
[
|
|
274
|
+
Element("Button.label", sticky="nsew")
|
|
275
|
+
])
|
|
276
|
+
]))
|
|
277
|
+
|
|
278
|
+
# Add horizontal padding - less for icon-only buttons
|
|
279
|
+
icon_only = options.get('icon_only', False)
|
|
280
|
+
if icon_only:
|
|
281
|
+
addon_padding = b.scale((5, 0)) if density == 'compact' else b.scale((4, 0))
|
|
282
|
+
else:
|
|
283
|
+
addon_padding = b.scale((8, 0))
|
|
284
|
+
b.configure_style(
|
|
285
|
+
ttk_style,
|
|
286
|
+
background=fill,
|
|
287
|
+
foreground=foreground,
|
|
288
|
+
relief='flat',
|
|
289
|
+
stipple="gray12",
|
|
290
|
+
padding=addon_padding,
|
|
291
|
+
anchor='center',
|
|
292
|
+
)
|
|
293
|
+
|
|
294
|
+
# map icon if available
|
|
295
|
+
icon = options.get('icon')
|
|
296
|
+
|
|
297
|
+
state_spec = dict(
|
|
298
|
+
foreground=[
|
|
299
|
+
('disabled', foreground_disabled),
|
|
300
|
+
('pressed !disabled', foreground),
|
|
301
|
+
('hover !disabled', foreground),
|
|
302
|
+
('', foreground)
|
|
303
|
+
])
|
|
304
|
+
|
|
305
|
+
if icon is not None:
|
|
306
|
+
icon = b.normalize_icon_spec(icon)
|
|
307
|
+
# Use density-aware icon size for addon icons
|
|
308
|
+
addon_icon_size = b.scale(16) if density == 'compact' else b.scale(17)
|
|
309
|
+
icon['size'] = addon_icon_size
|
|
310
|
+
state_spec['image'] = b.map_stateful_icons(icon, state_spec['foreground'])
|
|
311
|
+
|
|
312
|
+
b.map_style(ttk_style, **state_spec)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from bootstack.style.bootstyle_builder_ttk import BootstyleBuilderTTk
|
|
4
|
+
from bootstack.style.element import Element, ElementImage
|
|
5
|
+
from bootstack.style.utility import recolor_element_image
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@BootstyleBuilderTTk.register_builder('default', 'TFrame')
|
|
9
|
+
def build_frame(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
10
|
+
surface_token = options.get('surface') or 'background'
|
|
11
|
+
show_border = options.get('show_border', False)
|
|
12
|
+
surface = b.color(surface_token)
|
|
13
|
+
stroke = b.border(surface)
|
|
14
|
+
|
|
15
|
+
if show_border:
|
|
16
|
+
border_img = recolor_element_image('border', surface, stroke, surface, surface)
|
|
17
|
+
b.create_style_element_image(
|
|
18
|
+
ElementImage(
|
|
19
|
+
f'{ttk_style}.border',
|
|
20
|
+
border_img.image,
|
|
21
|
+
border=border_img.meta.border,
|
|
22
|
+
padding=border_img.meta.border,
|
|
23
|
+
sticky="nsew")
|
|
24
|
+
)
|
|
25
|
+
b.create_style_layout(ttk_style, Element(f'{ttk_style}.border', sticky="nsew", border=border_img.meta.border))
|
|
26
|
+
|
|
27
|
+
b.configure_style(ttk_style, background=surface)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from bootstack.style.bootstyle_builder_ttk import BootstyleBuilderTTk
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
@BootstyleBuilderTTk.register_builder('default', 'TLabel')
|
|
7
|
+
def build_label(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
8
|
+
surface_token = options.get('surface', 'content')
|
|
9
|
+
background = b.color(surface_token)
|
|
10
|
+
if accent is None:
|
|
11
|
+
# best foreground on inherited background
|
|
12
|
+
foreground = b.on_color(background)
|
|
13
|
+
else:
|
|
14
|
+
# override
|
|
15
|
+
foreground = b.color(accent)
|
|
16
|
+
|
|
17
|
+
b.configure_style(ttk_style, background=background, foreground=foreground, font="body")
|
|
18
|
+
|
|
19
|
+
state_spec = dict(foreground=[('', foreground)])
|
|
20
|
+
|
|
21
|
+
# map icon if available
|
|
22
|
+
icon = options.get('icon')
|
|
23
|
+
|
|
24
|
+
if icon is not None:
|
|
25
|
+
icon = b.normalize_icon_spec(icon)
|
|
26
|
+
state_spec['image'] = b.map_stateful_icons(icon, state_spec['foreground'])
|
|
27
|
+
|
|
28
|
+
b.map_style(ttk_style, **state_spec)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"""Labelframe widget style builders.
|
|
2
|
+
|
|
3
|
+
This module contains style builders for ttk.Labelframe widget and variants.
|
|
4
|
+
|
|
5
|
+
The Labelframe color is different than the normal frame in that the background color of the
|
|
6
|
+
labelframe is inherited only unless overridden explicitly by the surface option. The
|
|
7
|
+
bootstyle color is only relevant for the border color of the labelframe.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from __future__ import annotations
|
|
11
|
+
|
|
12
|
+
from bootstack.style.bootstyle_builder_ttk import BootstyleBuilderTTk
|
|
13
|
+
from bootstack.style.element import Element, ElementImage
|
|
14
|
+
from bootstack.style.utility import recolor_element_image
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
@BootstyleBuilderTTk.register_builder('default', 'TLabelframe')
|
|
18
|
+
def build_labelframe_style(b: BootstyleBuilderTTk, ttk_style: str, accent: str = None, **options):
|
|
19
|
+
surface_token = options.get('surface') or 'background'
|
|
20
|
+
show_border = options.get('show_border', True)
|
|
21
|
+
surface = b.color(surface_token)
|
|
22
|
+
|
|
23
|
+
border = b.border(surface)
|
|
24
|
+
foreground = b.on_color(surface)
|
|
25
|
+
|
|
26
|
+
# border assets and styles
|
|
27
|
+
if show_border:
|
|
28
|
+
border_img = recolor_element_image('border', surface, border, surface)
|
|
29
|
+
else:
|
|
30
|
+
border_img = recolor_element_image('border', surface, surface, surface)
|
|
31
|
+
|
|
32
|
+
b.create_style_element_image(
|
|
33
|
+
ElementImage(
|
|
34
|
+
f'{ttk_style}.border',
|
|
35
|
+
border_img.image,
|
|
36
|
+
border=border_img.meta.border,
|
|
37
|
+
sticky="nsew")
|
|
38
|
+
)
|
|
39
|
+
b.create_style_layout(ttk_style, Element(f'{ttk_style}.border', sticky="nsew"))
|
|
40
|
+
b.configure_style(f'{ttk_style}.Label', background=surface, foreground=foreground, font="label")
|
|
41
|
+
b.configure_style(ttk_style, background=surface)
|