├── .gitignore ├── Babe.pro ├── CMakeLists.txt ├── COPYING ├── README.md ├── _config.yml ├── babe.png ├── babe.svg ├── cmake └── modules │ └── FindTaglib.cmake ├── data.qrc ├── data ├── .directory ├── 128-apps-babe.png ├── 128-apps-babe.svg ├── 48-apps-babe.svg ├── 64-apps-babe.svg ├── Babe.notifyrc ├── CMakeLists.txt ├── LilyScriptOne-Regular.ttf ├── add.png ├── add.svg ├── ajax-loader.gif ├── appointment-new.svg ├── audio-ac3.svg ├── babe.png ├── babe.svg ├── babe_backup.svg ├── banner.png ├── banner.svg ├── cover.svg ├── cover.svg.png ├── cover_hover.svg ├── empty.svg ├── full_mode.svg ├── go-bottom.svg ├── go-top.svg ├── icons │ ├── .directory │ ├── albums.svg │ ├── albums_selected.svg │ ├── artists.svg │ ├── artists_selected.svg │ ├── info.svg │ ├── info_selected.svg │ ├── playlists.svg │ ├── playlists_selected.svg │ ├── queue.svg │ ├── queue_selected.svg │ ├── settings.svg │ ├── settings_selected.svg │ ├── tracks.svg │ ├── tracks_selected.svg │ └── youtube.svg ├── love-amarok.svg ├── loved.svg ├── media-playback-pause.svg ├── media-playback-start.svg ├── media-playback-stop.svg ├── media-playlist-repeat.svg ├── media-playlist-shuffle.svg ├── media-skip-backward.svg ├── media-skip-forward.svg ├── mini_mode.svg ├── pattern.png ├── playBtn.svg ├── playBtn.svg.png ├── playBtn_hover.svg ├── player-time.svg ├── pulpo.png └── view-media-playlist.svg ├── extra ├── screenshots │ ├── .directory │ ├── about_view.png │ ├── albums_view.png │ ├── artists_view.png │ ├── chromium_extension.png │ ├── collection_view.png │ ├── favorites_view.png │ ├── full_collection_view.png │ ├── info_view.png │ ├── mini_mode.png │ ├── playlist_mode.png │ ├── playlist_view.png │ ├── playlists_view.png │ ├── settings_view.png │ └── tracks_view.png └── styles │ └── style.qss ├── org.kde.babe.appdata.xml ├── org.kde.babe.desktop └── src ├── data_models ├── track.cpp ├── track.h ├── tracklist.cpp └── tracklist.h ├── db ├── collectionDB.cpp ├── collectionDB.h ├── queries.json ├── rabbithole.h └── script.sql ├── dialogs ├── about.cpp ├── about.h ├── about.ui ├── metadataForm.ui ├── metadataform.cpp ├── metadataform.h ├── moodform.cpp ├── moodform.h ├── playlistform.cpp ├── playlistform.h └── playlistform.ui ├── kde ├── mpris2.cpp ├── mpris2.h ├── notify.cpp └── notify.h ├── main.cpp ├── pulpo ├── enums.h ├── htmlparser.cpp ├── htmlparser.h ├── pulpo.cpp ├── pulpo.h ├── services │ ├── deezerService.cpp │ ├── deezerService.h │ ├── geniusService.cpp │ ├── geniusService.h │ ├── lastfmService.cpp │ ├── lastfmService.h │ ├── lyricwikiaService.cpp │ ├── lyricwikiaService.h │ ├── musicbrainzService.cpp │ ├── musicbrainzService.h │ ├── spotifyService.cpp │ └── spotifyService.h ├── webengine.cpp └── webengine.h ├── services ├── local │ ├── socket.cpp │ ├── socket.h │ ├── taginfo.cpp │ └── taginfo.h └── web │ ├── youtube.cpp │ └── youtube.h ├── settings ├── fileloader.h ├── settings.cpp ├── settings.h └── settings.ui ├── utils ├── albumloader.h ├── bae.h ├── brain.cpp ├── brain.h └── trackloader.h ├── views ├── albumsview.cpp ├── albumsview.h ├── babewindow.cpp ├── babewindow.h ├── babewindow.ui ├── infoview.cpp ├── infoview.h ├── infoview.ui ├── playlistsview.cpp ├── playlistsview.h ├── rabbitview.cpp └── rabbitview.h └── widget_models ├── babealbum.cpp ├── babealbum.h ├── babegrid.cpp ├── babegrid.h ├── babetable.cpp ├── babetable.h ├── scrolltext.cpp └── scrolltext.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/.gitignore -------------------------------------------------------------------------------- /Babe.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/Babe.pro -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/_config.yml -------------------------------------------------------------------------------- /babe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/babe.png -------------------------------------------------------------------------------- /babe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/babe.svg -------------------------------------------------------------------------------- /cmake/modules/FindTaglib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/cmake/modules/FindTaglib.cmake -------------------------------------------------------------------------------- /data.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data.qrc -------------------------------------------------------------------------------- /data/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2017,4,8,21,2,51 4 | Version=4 5 | -------------------------------------------------------------------------------- /data/128-apps-babe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/128-apps-babe.png -------------------------------------------------------------------------------- /data/128-apps-babe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/128-apps-babe.svg -------------------------------------------------------------------------------- /data/48-apps-babe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/48-apps-babe.svg -------------------------------------------------------------------------------- /data/64-apps-babe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/64-apps-babe.svg -------------------------------------------------------------------------------- /data/Babe.notifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/Babe.notifyrc -------------------------------------------------------------------------------- /data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/CMakeLists.txt -------------------------------------------------------------------------------- /data/LilyScriptOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/LilyScriptOne-Regular.ttf -------------------------------------------------------------------------------- /data/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/add.png -------------------------------------------------------------------------------- /data/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/add.svg -------------------------------------------------------------------------------- /data/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/ajax-loader.gif -------------------------------------------------------------------------------- /data/appointment-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/appointment-new.svg -------------------------------------------------------------------------------- /data/audio-ac3.svg: -------------------------------------------------------------------------------- 1 | audio-x-generic.svg -------------------------------------------------------------------------------- /data/babe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/babe.png -------------------------------------------------------------------------------- /data/babe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/babe.svg -------------------------------------------------------------------------------- /data/babe_backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/babe_backup.svg -------------------------------------------------------------------------------- /data/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/banner.png -------------------------------------------------------------------------------- /data/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/banner.svg -------------------------------------------------------------------------------- /data/cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/cover.svg -------------------------------------------------------------------------------- /data/cover.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/cover.svg.png -------------------------------------------------------------------------------- /data/cover_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/cover_hover.svg -------------------------------------------------------------------------------- /data/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/empty.svg -------------------------------------------------------------------------------- /data/full_mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/full_mode.svg -------------------------------------------------------------------------------- /data/go-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/go-bottom.svg -------------------------------------------------------------------------------- /data/go-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/go-top.svg -------------------------------------------------------------------------------- /data/icons/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2017,5,31,12,35,54 4 | Version=4 5 | -------------------------------------------------------------------------------- /data/icons/albums.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/albums.svg -------------------------------------------------------------------------------- /data/icons/albums_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/albums_selected.svg -------------------------------------------------------------------------------- /data/icons/artists.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/artists.svg -------------------------------------------------------------------------------- /data/icons/artists_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/artists_selected.svg -------------------------------------------------------------------------------- /data/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/info.svg -------------------------------------------------------------------------------- /data/icons/info_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/info_selected.svg -------------------------------------------------------------------------------- /data/icons/playlists.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/playlists.svg -------------------------------------------------------------------------------- /data/icons/playlists_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/playlists_selected.svg -------------------------------------------------------------------------------- /data/icons/queue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/queue.svg -------------------------------------------------------------------------------- /data/icons/queue_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/queue_selected.svg -------------------------------------------------------------------------------- /data/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/settings.svg -------------------------------------------------------------------------------- /data/icons/settings_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/settings_selected.svg -------------------------------------------------------------------------------- /data/icons/tracks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/tracks.svg -------------------------------------------------------------------------------- /data/icons/tracks_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/tracks_selected.svg -------------------------------------------------------------------------------- /data/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/icons/youtube.svg -------------------------------------------------------------------------------- /data/love-amarok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/love-amarok.svg -------------------------------------------------------------------------------- /data/loved.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/loved.svg -------------------------------------------------------------------------------- /data/media-playback-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/media-playback-pause.svg -------------------------------------------------------------------------------- /data/media-playback-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/media-playback-start.svg -------------------------------------------------------------------------------- /data/media-playback-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/media-playback-stop.svg -------------------------------------------------------------------------------- /data/media-playlist-repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/media-playlist-repeat.svg -------------------------------------------------------------------------------- /data/media-playlist-shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/media-playlist-shuffle.svg -------------------------------------------------------------------------------- /data/media-skip-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/media-skip-backward.svg -------------------------------------------------------------------------------- /data/media-skip-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/media-skip-forward.svg -------------------------------------------------------------------------------- /data/mini_mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/mini_mode.svg -------------------------------------------------------------------------------- /data/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/pattern.png -------------------------------------------------------------------------------- /data/playBtn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/playBtn.svg -------------------------------------------------------------------------------- /data/playBtn.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/playBtn.svg.png -------------------------------------------------------------------------------- /data/playBtn_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/playBtn_hover.svg -------------------------------------------------------------------------------- /data/player-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/player-time.svg -------------------------------------------------------------------------------- /data/pulpo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/pulpo.png -------------------------------------------------------------------------------- /data/view-media-playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/data/view-media-playlist.svg -------------------------------------------------------------------------------- /extra/screenshots/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2017,4,10,14,19,48 4 | Version=4 5 | -------------------------------------------------------------------------------- /extra/screenshots/about_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/about_view.png -------------------------------------------------------------------------------- /extra/screenshots/albums_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/albums_view.png -------------------------------------------------------------------------------- /extra/screenshots/artists_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/artists_view.png -------------------------------------------------------------------------------- /extra/screenshots/chromium_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/chromium_extension.png -------------------------------------------------------------------------------- /extra/screenshots/collection_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/collection_view.png -------------------------------------------------------------------------------- /extra/screenshots/favorites_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/favorites_view.png -------------------------------------------------------------------------------- /extra/screenshots/full_collection_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/full_collection_view.png -------------------------------------------------------------------------------- /extra/screenshots/info_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/info_view.png -------------------------------------------------------------------------------- /extra/screenshots/mini_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/mini_mode.png -------------------------------------------------------------------------------- /extra/screenshots/playlist_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/playlist_mode.png -------------------------------------------------------------------------------- /extra/screenshots/playlist_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/playlist_view.png -------------------------------------------------------------------------------- /extra/screenshots/playlists_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/playlists_view.png -------------------------------------------------------------------------------- /extra/screenshots/settings_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/settings_view.png -------------------------------------------------------------------------------- /extra/screenshots/tracks_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/screenshots/tracks_view.png -------------------------------------------------------------------------------- /extra/styles/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/extra/styles/style.qss -------------------------------------------------------------------------------- /org.kde.babe.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/org.kde.babe.appdata.xml -------------------------------------------------------------------------------- /org.kde.babe.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/org.kde.babe.desktop -------------------------------------------------------------------------------- /src/data_models/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/data_models/track.cpp -------------------------------------------------------------------------------- /src/data_models/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/data_models/track.h -------------------------------------------------------------------------------- /src/data_models/tracklist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/data_models/tracklist.cpp -------------------------------------------------------------------------------- /src/data_models/tracklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/data_models/tracklist.h -------------------------------------------------------------------------------- /src/db/collectionDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/db/collectionDB.cpp -------------------------------------------------------------------------------- /src/db/collectionDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/db/collectionDB.h -------------------------------------------------------------------------------- /src/db/queries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/db/queries.json -------------------------------------------------------------------------------- /src/db/rabbithole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/db/rabbithole.h -------------------------------------------------------------------------------- /src/db/script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/db/script.sql -------------------------------------------------------------------------------- /src/dialogs/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/about.cpp -------------------------------------------------------------------------------- /src/dialogs/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/about.h -------------------------------------------------------------------------------- /src/dialogs/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/about.ui -------------------------------------------------------------------------------- /src/dialogs/metadataForm.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/metadataForm.ui -------------------------------------------------------------------------------- /src/dialogs/metadataform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/metadataform.cpp -------------------------------------------------------------------------------- /src/dialogs/metadataform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/metadataform.h -------------------------------------------------------------------------------- /src/dialogs/moodform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/moodform.cpp -------------------------------------------------------------------------------- /src/dialogs/moodform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/moodform.h -------------------------------------------------------------------------------- /src/dialogs/playlistform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/playlistform.cpp -------------------------------------------------------------------------------- /src/dialogs/playlistform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/playlistform.h -------------------------------------------------------------------------------- /src/dialogs/playlistform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/dialogs/playlistform.ui -------------------------------------------------------------------------------- /src/kde/mpris2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/kde/mpris2.cpp -------------------------------------------------------------------------------- /src/kde/mpris2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/kde/mpris2.h -------------------------------------------------------------------------------- /src/kde/notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/kde/notify.cpp -------------------------------------------------------------------------------- /src/kde/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/kde/notify.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/pulpo/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/enums.h -------------------------------------------------------------------------------- /src/pulpo/htmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/htmlparser.cpp -------------------------------------------------------------------------------- /src/pulpo/htmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/htmlparser.h -------------------------------------------------------------------------------- /src/pulpo/pulpo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/pulpo.cpp -------------------------------------------------------------------------------- /src/pulpo/pulpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/pulpo.h -------------------------------------------------------------------------------- /src/pulpo/services/deezerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/deezerService.cpp -------------------------------------------------------------------------------- /src/pulpo/services/deezerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/deezerService.h -------------------------------------------------------------------------------- /src/pulpo/services/geniusService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/geniusService.cpp -------------------------------------------------------------------------------- /src/pulpo/services/geniusService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/geniusService.h -------------------------------------------------------------------------------- /src/pulpo/services/lastfmService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/lastfmService.cpp -------------------------------------------------------------------------------- /src/pulpo/services/lastfmService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/lastfmService.h -------------------------------------------------------------------------------- /src/pulpo/services/lyricwikiaService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/lyricwikiaService.cpp -------------------------------------------------------------------------------- /src/pulpo/services/lyricwikiaService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/lyricwikiaService.h -------------------------------------------------------------------------------- /src/pulpo/services/musicbrainzService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/musicbrainzService.cpp -------------------------------------------------------------------------------- /src/pulpo/services/musicbrainzService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/musicbrainzService.h -------------------------------------------------------------------------------- /src/pulpo/services/spotifyService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/spotifyService.cpp -------------------------------------------------------------------------------- /src/pulpo/services/spotifyService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/services/spotifyService.h -------------------------------------------------------------------------------- /src/pulpo/webengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/webengine.cpp -------------------------------------------------------------------------------- /src/pulpo/webengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/pulpo/webengine.h -------------------------------------------------------------------------------- /src/services/local/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/services/local/socket.cpp -------------------------------------------------------------------------------- /src/services/local/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/services/local/socket.h -------------------------------------------------------------------------------- /src/services/local/taginfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/services/local/taginfo.cpp -------------------------------------------------------------------------------- /src/services/local/taginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/services/local/taginfo.h -------------------------------------------------------------------------------- /src/services/web/youtube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/services/web/youtube.cpp -------------------------------------------------------------------------------- /src/services/web/youtube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/services/web/youtube.h -------------------------------------------------------------------------------- /src/settings/fileloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/settings/fileloader.h -------------------------------------------------------------------------------- /src/settings/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/settings/settings.cpp -------------------------------------------------------------------------------- /src/settings/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/settings/settings.h -------------------------------------------------------------------------------- /src/settings/settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/settings/settings.ui -------------------------------------------------------------------------------- /src/utils/albumloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/utils/albumloader.h -------------------------------------------------------------------------------- /src/utils/bae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/utils/bae.h -------------------------------------------------------------------------------- /src/utils/brain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/utils/brain.cpp -------------------------------------------------------------------------------- /src/utils/brain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/utils/brain.h -------------------------------------------------------------------------------- /src/utils/trackloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/utils/trackloader.h -------------------------------------------------------------------------------- /src/views/albumsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/albumsview.cpp -------------------------------------------------------------------------------- /src/views/albumsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/albumsview.h -------------------------------------------------------------------------------- /src/views/babewindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/babewindow.cpp -------------------------------------------------------------------------------- /src/views/babewindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/babewindow.h -------------------------------------------------------------------------------- /src/views/babewindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/babewindow.ui -------------------------------------------------------------------------------- /src/views/infoview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/infoview.cpp -------------------------------------------------------------------------------- /src/views/infoview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/infoview.h -------------------------------------------------------------------------------- /src/views/infoview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/infoview.ui -------------------------------------------------------------------------------- /src/views/playlistsview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/playlistsview.cpp -------------------------------------------------------------------------------- /src/views/playlistsview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/playlistsview.h -------------------------------------------------------------------------------- /src/views/rabbitview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/rabbitview.cpp -------------------------------------------------------------------------------- /src/views/rabbitview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/views/rabbitview.h -------------------------------------------------------------------------------- /src/widget_models/babealbum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/widget_models/babealbum.cpp -------------------------------------------------------------------------------- /src/widget_models/babealbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/widget_models/babealbum.h -------------------------------------------------------------------------------- /src/widget_models/babegrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/widget_models/babegrid.cpp -------------------------------------------------------------------------------- /src/widget_models/babegrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/widget_models/babegrid.h -------------------------------------------------------------------------------- /src/widget_models/babetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/widget_models/babetable.cpp -------------------------------------------------------------------------------- /src/widget_models/babetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/widget_models/babetable.h -------------------------------------------------------------------------------- /src/widget_models/scrolltext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/widget_models/scrolltext.cpp -------------------------------------------------------------------------------- /src/widget_models/scrolltext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milohr/babe-qt/HEAD/src/widget_models/scrolltext.h --------------------------------------------------------------------------------