Exemplo n.º 1
0
 def on_albums_tab_scrolled(self, adj):
     if Widgets.reach_scrolled_bottom(adj) and \
             self.albums_page < self.albums_total - 1:
         self.albums_page += 1
         self.show_albums()
Exemplo n.º 2
0
 def on_artists_win_scrolled(self, adj):
     if Widgets.reach_scrolled_bottom(adj) and \
             self.artists_page < self.artists_total - 1:
         self.artists_page += 1
         self.append_artists()
Exemplo n.º 3
0
 def on_scrolled_songs_scrolled(self, adj):
     if (Widgets.reach_scrolled_bottom(adj)
             and self.songs_page < self.songs_total - 1):
         self.songs_page += 1
         self.show_songs()
Exemplo n.º 4
0
 def on_artists_win_scrolled(self, adj):
     if (Widgets.reach_scrolled_bottom(adj)
             and self.artists_page < self.artists_total - 1):
         self.artists_page += 1
         self.append_artists()
Exemplo n.º 5
0
 def on_albums_tab_scrolled(self, adj):
     if (Widgets.reach_scrolled_bottom(adj)
             and self.albums_page < self.albums_total - 1):
         self.albums_page += 1
         self.show_albums()
Exemplo n.º 6
0
 def on_scrolled_songs_scrolled(self, adj):
     if (Widgets.reach_scrolled_bottom(adj) and
         self.songs_page < self.songs_total - 1):
         self.songs_page += 1
         self.show_songs()
Exemplo n.º 7
0
 def on_scrolled_sub_scrolled(self, adj):
     if Widgets.reach_scrolled_bottom(adj) and \
             self.nodes_page < self.nodes_total - 1:
         self.nodes_page += 1
         self.show_sub()
Exemplo n.º 8
0
 def on_artists_tab_scrolled(self, adj):
     if (Widgets.reach_scrolled_bottom(adj) and 
         self.artists_page < self.artists_total - 1):
         self.artists_page += 1
         self.show_artists()