[gnome-music/wip/jfelder/gtk4-v3: 7/119] (TEMPORARY HACK) Disable all views but Album
- From: Jean Felder <jfelder src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-music/wip/jfelder/gtk4-v3: 7/119] (TEMPORARY HACK) Disable all views but Album
- Date: Thu, 3 Feb 2022 04:51:41 +0000 (UTC)
commit 25bc58d8a0bb2607205b607a03d706cf4cdceea1
Author: Marinus Schraal <mschraal gnome org>
Date: Mon Apr 12 17:37:25 2021 +0200
(TEMPORARY HACK) Disable all views but Album
Easier to work on one thing at a time.
gnomemusic/window.py | 36 +++++++++++++++++++-----------------
1 file changed, 19 insertions(+), 17 deletions(-)
---
diff --git a/gnomemusic/window.py b/gnomemusic/window.py
index bf4a0b282..e76029d59 100644
--- a/gnomemusic/window.py
+++ b/gnomemusic/window.py
@@ -33,11 +33,11 @@ from gnomemusic.search import Search
from gnomemusic.trackerwrapper import TrackerState
from gnomemusic.utils import View
from gnomemusic.views.albumsview import AlbumsView
-from gnomemusic.views.artistsview import ArtistsView
+# from gnomemusic.views.artistsview import ArtistsView
from gnomemusic.views.emptyview import EmptyView
-from gnomemusic.views.searchview import SearchView
-from gnomemusic.views.songsview import SongsView
-from gnomemusic.views.playlistsview import PlaylistsView
+# from gnomemusic.views.searchview import SearchView
+# from gnomemusic.views.songsview import SongsView
+# from gnomemusic.views.playlistsview import PlaylistsView
from gnomemusic.widgets.headerbar import HeaderBar
from gnomemusic.widgets.notificationspopup import NotificationsPopup # noqa
from gnomemusic.widgets.playertoolbar import PlayerToolbar # noqa: F401
@@ -239,16 +239,18 @@ class Window(Handy.ApplicationWindow):
self._headerbar.props.state = HeaderBar.State.MAIN
self.views[View.ALBUM] = AlbumsView(self._app)
- self.views[View.ARTIST] = ArtistsView(self._app)
- self.views[View.SONG] = SongsView(self._app)
- self.views[View.PLAYLIST] = PlaylistsView(self._app)
- self.views[View.SEARCH] = SearchView(self._app)
+ self.views[View.ARTIST] = Gtk.Box() # ArtistsView(self._app)
+ self.views[View.SONG] = Gtk.Box() # SongsView(self._app)
+ self.views[View.PLAYLIST] = Gtk.Box() # PlaylistsView(self._app)
+ self.views[View.SEARCH] = Gtk.Box() # SearchView(self._app)
# empty view has already been created in self._setup_view starting at
# View.ALBUM
# empty view state is changed once album view is visible to prevent it
# from being displayed during startup
for i in self.views[View.ALBUM:]:
+ if isinstance(i, Gtk.Box):
+ continue
if i.props.title:
self._stack.add_titled(i, i.props.name, i.props.title)
self._stack.child_set_property(
@@ -261,15 +263,15 @@ class Window(Handy.ApplicationWindow):
self._stack.props.visible_child = self.views[View.ALBUM]
self._stack.notify("visible-child")
- self.views[View.SEARCH].bind_property(
- "search-state", self._search, "state",
- GObject.BindingFlags.SYNC_CREATE)
- self._search.bind_property(
- "search-mode-active", self.views[View.SEARCH],
- "search-mode-active", GObject.BindingFlags.BIDIRECTIONAL)
- self._search.bind_property(
- "search-mode-active", self.views[View.ALBUM],
- "search-mode-active", GObject.BindingFlags.SYNC_CREATE)
+ # self.views[View.SEARCH].bind_property(
+ # "search-state", self._search, "state",
+ # GObject.BindingFlags.SYNC_CREATE)
+ # self._search.bind_property(
+ # "search-mode-active", self.views[View.SEARCH],
+ # "search-mode-active", GObject.BindingFlags.BIDIRECTIONAL)
+ # self._search.bind_property(
+ # "search-mode-active", self.views[View.ALBUM],
+ # "search-mode-active", GObject.BindingFlags.SYNC_CREATE)
def _select_all(self, action=None, param=None):
if not self.props.selection_mode:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]