Coverage for src / ezqt_app / widgets / core / __init__.py: 100.00%

8 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-03-26 07:07 +0000

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

2# WIDGETS.CORE - Core widget package 

3# Project: ezqt_app 

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

5 

6"""Core application widgets.""" 

7 

8from __future__ import annotations 

9 

10# /////////////////////////////////////////////////////////////// 

11# IMPORTS 

12# /////////////////////////////////////////////////////////////// 

13# Local imports 

14from .bottom_bar import BottomBar 

15from .ez_app import EzApplication 

16from .header import Header 

17from .menu import Menu 

18from .page_container import PageContainer 

19from .settings_panel import SettingsPanel 

20 

21# /////////////////////////////////////////////////////////////// 

22# PUBLIC API 

23# /////////////////////////////////////////////////////////////// 

24__all__ = [ 

25 "BottomBar", 

26 "EzApplication", 

27 "Header", 

28 "Menu", 

29 "PageContainer", 

30 "SettingsPanel", 

31]