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

1# /////////////////////////////////////////////////////////////// 

2# LABEL - Label Widgets Module 

3# Project: ezqt_widgets 

4# /////////////////////////////////////////////////////////////// 

5 

6""" 

7Label widgets module. 

8 

9This module provides enhanced label widgets for PySide6 applications, 

10including clickable tags, framed labels, hover labels, and indicator labels. 

11""" 

12 

13from __future__ import annotations 

14 

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 

23 

24# /////////////////////////////////////////////////////////////// 

25# PUBLIC API 

26# /////////////////////////////////////////////////////////////// 

27 

28__all__ = [ 

29 "ClickableTagLabel", 

30 "FramedLabel", 

31 "HoverLabel", 

32 "IndicatorLabel", 

33]