diff --git a/chronograph/ui/BoxDialog.pyi b/chronograph/ui/BoxDialog.pyi index ab46300..a2ad427 100644 --- a/chronograph/ui/BoxDialog.pyi +++ b/chronograph/ui/BoxDialog.pyi @@ -9,13 +9,6 @@ class BoxDialog(Adw.Dialog): Label of the dialog lines_content : tuple titles and subtitles of `Adw.ActionRow(s)`. Like `(("1st Title", "1st subtitle"), ("2nd title", "2nd subtitle"), ...)` - - GTK Objects - ---------- - :: - - diaglog_title_label : Gtk.Label -> Label of the dialog - props_list : Gtk.ListBox -> ListBox with `Adw.ActionRow(s)` with provided data """ dialog_title_label: Gtk.Label diff --git a/chronograph/ui/SongCard.pyi b/chronograph/ui/SongCard.pyi index 2cc114c..c191629 100644 --- a/chronograph/ui/SongCard.pyi +++ b/chronograph/ui/SongCard.pyi @@ -18,19 +18,6 @@ class SongCard(Gtk.Box): ---------- file : Union[FileID3, FileVorbis] File of `.ogg`, `.flac`, `.mp3` and `.wav` formats - - GTK Objects - ---------- - :: - - buttons_revealer: Gtk.Revealer -> Revealer for Play and Edit buttons - play_button: Gtk.Button -> Play button - metadata_editor_button: Gtk.Button -> Metadata editor button - info_button: Gtk.Button -> File info button - cover_button: Gtk.Button -> Clickable cover of song - cover: Gtk.Image -> Cover image of song - title_label: Gtk.Label -> Title of song - artist_label: Gtk.Label -> Artist of song """ buttons_revealer: Gtk.Revealer diff --git a/chronograph/window.pyi b/chronograph/window.pyi index d59de76..119f99c 100644 --- a/chronograph/window.pyi +++ b/chronograph/window.pyi @@ -3,41 +3,7 @@ from gi.repository import Adw, Gtk from chronograph.ui.SongCard import SongCard # type: ignore class ChronographWindow(Adw.ApplicationWindow): - """App window class - - GTK Objects - ---------- - :: - - # Status pages - no_source_opened: Adw.StatusPage -> Status page> displayed when no items in library - - # Library view widgets - navigation_view: Adw.NavigationView -> Main Navigation view - library_nav_page: Adw.NavigationPage -> Library Navigation page - overlay_split_view: Adw.OverlaySplitView -> Split view for Sidebar and Library - search_bar: Gtk.SearchBar -> Search bar - search_entry: Gtk.SearchEntry -> Search field - library_overlay: Gtk.Overlay -> Library overlay - library_scrolled_window: Gtk.ScrolledWindow -> Library scroll possibility - library: Gtk.FlowBox -> Library itself - - # Syncing page widgets - sync_navigation_page: Adw.NavigationPage - controls: Gtk.MediaControls - controls_shrinked: Gtk.MediaControls - sync_page_cover: Gtk.Image - sync_page_title: Gtk.Inscription - sync_page_artist: Gtk.Inscription - toggle_repeat_button: Gtk.ToggleButton - sync_line_button: Gtk.Button - replay_line_button: Gtk.Button - rew100_button: Gtk.Button - forw100_button: Gtk.Button - info_button: Gtk.Button - sync_lines: Gtk.ListBox - add_line_button: Gtk.Button - """ + """App window class""" # Status pages no_source_opened: Adw.StatusPage