Coverage for src / ezqt_widgets / widgets / label / __init__.py: 100.00%
6 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-01 22:46 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-01 22:46 +0000
1# ///////////////////////////////////////////////////////////////
2# LABEL - Label Widgets Module
3# Project: ezqt_widgets
4# ///////////////////////////////////////////////////////////////
6"""
7Label widgets module.
9This module provides enhanced label widgets for PySide6 applications,
10including clickable tags, framed labels, hover labels, and indicator labels.
11"""
13from __future__ import annotations
15# ///////////////////////////////////////////////////////////////
16# IMPORTS
17# ///////////////////////////////////////////////////////////////
18# Local imports
19from .clickable_tag_label import ClickableTagLabel
20from .framed_label import FramedLabel
21from .hover_label import HoverLabel
22from .indicator_label import IndicatorLabel
24# ///////////////////////////////////////////////////////////////
25# PUBLIC API
26# ///////////////////////////////////////////////////////////////
28__all__ = [
29 "ClickableTagLabel",
30 "FramedLabel",
31 "HoverLabel",
32 "IndicatorLabel",
33]