├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── github-actions.yml ├── .gitignore ├── 3rdparty ├── kcategorizedview │ ├── CMakeLists.txt │ ├── COPYING │ ├── COPYING.LIB │ ├── kcategorizedsortfilterproxymodel.cpp │ ├── kcategorizedsortfilterproxymodel.h │ ├── kcategorizedsortfilterproxymodel_p.h │ ├── kcategorizedview.cpp │ ├── kcategorizedview.h │ ├── kcategorizedview_p.h │ ├── kcategorydrawer.cpp │ └── kcategorydrawer.h ├── qtiocompressor │ ├── CMakeLists.txt │ ├── LGPL_EXCEPTION.txt │ ├── LICENSE.GPL3 │ ├── QtIOCompressor │ ├── qtiocompressor.cpp │ └── qtiocompressor.h ├── qtsingleapplication │ ├── CMakeLists.txt │ ├── LICENSE.LGPL │ ├── QtLockedFile │ ├── QtSingleApplication │ ├── qtlocalpeer.cpp │ ├── qtlocalpeer.h │ ├── qtlockedfile.cpp │ ├── qtlockedfile.h │ ├── qtlockedfile_unix.cpp │ ├── qtlockedfile_win.cpp │ ├── qtsingleapplication.cpp │ ├── qtsingleapplication.h │ ├── qtsingleapplication.patch │ ├── qtsinglecoreapplication.cpp │ └── qtsinglecoreapplication.h ├── qxt │ ├── CMakeLists.txt │ ├── LICENSE │ ├── keymapper_x11.h │ ├── media-keys.patch │ ├── meta-modifier.patch │ ├── qxtglobal.cpp │ ├── qxtglobal.h │ ├── qxtglobalshortcut.cpp │ ├── qxtglobalshortcut.h │ ├── qxtglobalshortcut_mac.cpp │ ├── qxtglobalshortcut_p.h │ ├── qxtglobalshortcut_win.cpp │ └── qxtglobalshortcut_x11.cpp └── solid-lite │ ├── CMakeLists.txt │ ├── README │ ├── backends │ ├── hal │ │ ├── halblock.cpp │ │ ├── halblock.h │ │ ├── halcdrom.cpp │ │ ├── halcdrom.h │ │ ├── haldevice.cpp │ │ ├── haldevice.h │ │ ├── haldeviceinterface.cpp │ │ ├── haldeviceinterface.h │ │ ├── halfstabhandling.cpp │ │ ├── halfstabhandling.h │ │ ├── halgenericinterface.cpp │ │ ├── halgenericinterface.h │ │ ├── halmanager.cpp │ │ ├── halmanager.h │ │ ├── halopticaldisc.cpp │ │ ├── halopticaldisc.h │ │ ├── halportablemediaplayer.cpp │ │ ├── halportablemediaplayer.h │ │ ├── halstorage.cpp │ │ ├── halstorage.h │ │ ├── halstorageaccess.cpp │ │ ├── halstorageaccess.h │ │ ├── halvolume.cpp │ │ └── halvolume.h │ ├── iokit │ │ ├── cfhelper.cpp │ │ ├── iokitdevice.cpp │ │ ├── iokitdevice.h │ │ ├── iokitdeviceinterface.cpp │ │ ├── iokitdeviceinterface.h │ │ ├── iokitgenericinterface.cpp │ │ ├── iokitgenericinterface.h │ │ ├── iokitmanager.cpp │ │ └── iokitmanager.h │ ├── shared │ │ ├── rootdevice.cpp │ │ ├── rootdevice.h │ │ ├── udevqt.h │ │ ├── udevqt_p.h │ │ ├── udevqtclient.cpp │ │ └── udevqtdevice.cpp │ ├── udev │ │ ├── udev.h │ │ ├── udevblock.cpp │ │ ├── udevblock.h │ │ ├── udevdevice.cpp │ │ ├── udevdevice.h │ │ ├── udevdeviceinterface.cpp │ │ ├── udevdeviceinterface.h │ │ ├── udevgenericinterface.cpp │ │ ├── udevgenericinterface.h │ │ ├── udevmanager.cpp │ │ ├── udevmanager.h │ │ ├── udevportablemediaplayer.cpp │ │ └── udevportablemediaplayer.h │ ├── udisks │ │ ├── udisks.h │ │ ├── udisksblock.cpp │ │ ├── udisksblock.h │ │ ├── udisksdevice.cpp │ │ ├── udisksdevice.h │ │ ├── udisksdeviceinterface.cpp │ │ ├── udisksdeviceinterface.h │ │ ├── udisksgenericinterface.cpp │ │ ├── udisksgenericinterface.h │ │ ├── udisksmanager.cpp │ │ ├── udisksmanager.h │ │ ├── udisksopticaldisc.cpp │ │ ├── udisksopticaldisc.h │ │ ├── udisksopticaldrive.cpp │ │ ├── udisksopticaldrive.h │ │ ├── udisksstorageaccess.cpp │ │ ├── udisksstorageaccess.h │ │ ├── udisksstoragedrive.cpp │ │ ├── udisksstoragedrive.h │ │ ├── udisksstoragevolume.cpp │ │ └── udisksstoragevolume.h │ ├── udisks2 │ │ ├── dbus │ │ │ ├── manager.cpp │ │ │ ├── manager.h │ │ │ └── manager.xml │ │ ├── udisks2.h │ │ ├── udisksblock.cpp │ │ ├── udisksblock.h │ │ ├── udisksdevice.cpp │ │ ├── udisksdevice.h │ │ ├── udisksdevicebackend.cpp │ │ ├── udisksdevicebackend.h │ │ ├── udisksdeviceinterface.cpp │ │ ├── udisksdeviceinterface.h │ │ ├── udisksgenericinterface.cpp │ │ ├── udisksgenericinterface.h │ │ ├── udisksmanager.cpp │ │ ├── udisksmanager.h │ │ ├── udisksopticaldisc.cpp │ │ ├── udisksopticaldisc.h │ │ ├── udisksopticaldrive.cpp │ │ ├── udisksopticaldrive.h │ │ ├── udisksstorageaccess.cpp │ │ ├── udisksstorageaccess.h │ │ ├── udisksstoragedrive.cpp │ │ ├── udisksstoragedrive.h │ │ ├── udisksstoragevolume.cpp │ │ └── udisksstoragevolume.h │ └── wmi │ │ ├── wmiblock.cpp │ │ ├── wmiblock.h │ │ ├── wmicdrom.cpp │ │ ├── wmicdrom.h │ │ ├── wmidevice.cpp │ │ ├── wmidevice.h │ │ ├── wmideviceinterface.cpp │ │ ├── wmideviceinterface.h │ │ ├── wmigenericinterface.cpp │ │ ├── wmigenericinterface.h │ │ ├── wmimanager.cpp │ │ ├── wmimanager.h │ │ ├── wmiopticaldisc.cpp │ │ ├── wmiopticaldisc.h │ │ ├── wmiportablemediaplayer.cpp │ │ ├── wmiportablemediaplayer.h │ │ ├── wmiquery.cpp │ │ ├── wmiquery.h │ │ ├── wmistorage.cpp │ │ ├── wmistorage.h │ │ ├── wmistorageaccess.cpp │ │ ├── wmistorageaccess.h │ │ ├── wmivolume.cpp │ │ └── wmivolume.h │ ├── block.cpp │ ├── block.h │ ├── block_p.h │ ├── config-solid.h.cmake │ ├── device.cpp │ ├── device.h │ ├── device_p.h │ ├── deviceinterface.cpp │ ├── deviceinterface.h │ ├── deviceinterface_p.h │ ├── devicemanager.cpp │ ├── devicemanager_p.h │ ├── devicenotifier.h │ ├── genericinterface.cpp │ ├── genericinterface.h │ ├── genericinterface_p.h │ ├── ifaces │ ├── CMakeLists.txt │ ├── block.cpp │ ├── block.h │ ├── device.cpp │ ├── device.h │ ├── deviceinterface.cpp │ ├── deviceinterface.h │ ├── devicemanager.cpp │ ├── devicemanager.h │ ├── genericinterface.cpp │ ├── genericinterface.h │ ├── opticaldisc.cpp │ ├── opticaldisc.h │ ├── opticaldrive.cpp │ ├── opticaldrive.h │ ├── portablemediaplayer.cpp │ ├── portablemediaplayer.h │ ├── storageaccess.cpp │ ├── storageaccess.h │ ├── storagedrive.cpp │ ├── storagedrive.h │ ├── storagevolume.cpp │ └── storagevolume.h │ ├── managerbase.cpp │ ├── managerbase_p.h │ ├── opticaldisc.cpp │ ├── opticaldisc.h │ ├── opticaldisc_p.h │ ├── opticaldrive.cpp │ ├── opticaldrive.h │ ├── opticaldrive_p.h │ ├── portablemediaplayer.cpp │ ├── portablemediaplayer.h │ ├── portablemediaplayer_p.h │ ├── predicate.cpp │ ├── predicate.h │ ├── predicate_lexer.c │ ├── predicate_lexer.l │ ├── predicate_parser.c │ ├── predicate_parser.h │ ├── predicate_parser.y │ ├── predicateparse.cpp │ ├── predicateparse.h │ ├── solid_export.h │ ├── soliddefs_p.h │ ├── solidnamespace.cpp │ ├── solidnamespace.h │ ├── storageaccess.cpp │ ├── storageaccess.h │ ├── storageaccess_p.h │ ├── storagedrive.cpp │ ├── storagedrive.h │ ├── storagedrive_p.h │ ├── storagevolume.cpp │ ├── storagevolume.h │ ├── storagevolume_p.h │ ├── xdgbasedirs.cpp │ └── xdgbasedirs_p.h ├── AUTHORS ├── CMakeLists.txt ├── ChangeLog ├── INSTALL ├── LICENSE ├── Makefile ├── PKGBUILD ├── README ├── README.md ├── TODO ├── cantata-remote.cmake ├── cantata.desktop ├── cantata.qrc ├── cantata_icon.qrc ├── cantata_media.qrc ├── cmake ├── COPYING-CMAKE-SCRIPTS ├── CheckTagLibFileName.cmake ├── FindAvahi.cmake ├── FindCDDB.cmake ├── FindCdioparanoia.cmake ├── FindCdparanoia.cmake ├── FindEbur128.cmake ├── FindFFMPEG.cmake ├── FindFoundation.cmake ├── FindIOKit.cmake ├── FindLIBVLC.cmake ├── FindMPG123.cmake ├── FindMtp.cmake ├── FindMusicBrainz5.cmake ├── FindTaglib.cmake ├── FindUDev.cmake ├── MacroLogFeature.cmake └── MacroOptionalFindPackage.cmake ├── cmake_uninstall.cmake.in ├── config.h.cmake ├── context ├── albumview.cpp ├── albumview.h ├── artistview.cpp ├── artistview.h ├── contextengine.cpp ├── contextengine.h ├── contextsettings.cpp ├── contextsettings.h ├── contextwidget.cpp ├── contextwidget.h ├── lastfmengine.cpp ├── lastfmengine.h ├── lyrics_providers.xml ├── lyricsdialog.cpp ├── lyricsdialog.h ├── lyricsettings.cpp ├── lyricsettings.h ├── metaengine.cpp ├── metaengine.h ├── onlineview.cpp ├── onlineview.h ├── othersettings.cpp ├── othersettings.h ├── othersettings.ui ├── songview.cpp ├── songview.h ├── togglelist.cpp ├── togglelist.h ├── togglelist.ui ├── ultimatelyrics.cpp ├── ultimatelyrics.h ├── ultimatelyricsprovider.cpp ├── ultimatelyricsprovider.h ├── view.cpp ├── view.h ├── weblinks.xml ├── wikipediaengine.cpp ├── wikipediaengine.h ├── wikipediasettings.cpp └── wikipediasettings.h ├── db ├── librarydb.cpp ├── librarydb.h ├── mpdlibrarydb.cpp ├── mpdlibrarydb.h ├── onlinedb.cpp └── onlinedb.h ├── dbus ├── gnomemediakeys.cpp ├── gnomemediakeys.h ├── mpd.cantata.xml ├── mpris.cpp ├── mpris.h ├── notify.cpp ├── notify.h ├── org.freedesktop.Notifications.xml ├── org.freedesktop.PowerManagement.Inhibit.xml ├── org.freedesktop.UPower.xml ├── org.freedesktop.login1.xml ├── org.gnome.SettingsDaemon.MediaKeys.xml ├── org.gnome.SettingsDaemon.xml ├── org.kde.Solid.PowerManagement.PolicyAgent.xml ├── org.mpris.MediaPlayer2.Player.xml ├── org.mpris.MediaPlayer2.root.xml ├── powermanagement.cpp └── powermanagement.h ├── devices ├── actiondialog.cpp ├── actiondialog.h ├── actiondialog.ui ├── albumdetails.ui ├── albumdetailsdialog.cpp ├── albumdetailsdialog.h ├── audiocddevice.cpp ├── audiocddevice.h ├── audiocdsettings.cpp ├── audiocdsettings.h ├── audiocdsettings.ui ├── cdalbum.h ├── cddbinterface.cpp ├── cddbinterface.h ├── cddbselectiondialog.cpp ├── cddbselectiondialog.h ├── cdparanoia.cpp ├── cdparanoia.h ├── device.cpp ├── device.h ├── deviceoptions.cpp ├── deviceoptions.h ├── devicepropertiesdialog.cpp ├── devicepropertiesdialog.h ├── devicepropertieswidget.cpp ├── devicepropertieswidget.h ├── devicepropertieswidget.ui ├── devicespage.cpp ├── devicespage.h ├── encoders.cpp ├── encoders.h ├── extractjob.cpp ├── extractjob.h ├── filejob.cpp ├── filejob.h ├── filenameschemedialog.cpp ├── filenameschemedialog.h ├── filenameschemedialog.ui ├── freespaceinfo.cpp ├── freespaceinfo.h ├── fsdevice.cpp ├── fsdevice.h ├── mountpoints.cpp ├── mountpoints.h ├── mtpdevice.cpp ├── mtpdevice.h ├── musicbrainz.cpp ├── musicbrainz.h ├── remotedevicepropertiesdialog.cpp ├── remotedevicepropertiesdialog.h ├── remotedevicepropertieswidget.cpp ├── remotedevicepropertieswidget.h ├── remotedevicepropertieswidget.ui ├── remotefsdevice.cpp ├── remotefsdevice.h ├── splitlabelwidget.cpp ├── splitlabelwidget.h ├── synccollectionwidget.cpp ├── synccollectionwidget.h ├── synccollectionwidget.ui ├── syncdialog.cpp ├── syncdialog.h ├── transcodingjob.cpp ├── transcodingjob.h ├── umsdevice.cpp ├── umsdevice.h ├── valueslider.cpp └── valueslider.h ├── gui ├── apikeys.cpp ├── apikeys.h ├── apikeyssettings.cpp ├── apikeyssettings.h ├── application.cpp ├── application.h ├── application_haiku.cpp ├── application_haiku.h ├── application_mac.cpp ├── application_mac.h ├── application_qt.cpp ├── application_qt.h ├── application_win.cpp ├── application_win.h ├── avahidiscovery.cpp ├── avahidiscovery.h ├── avahipoll.cpp ├── avahipoll.h ├── cachesettings.cpp ├── cachesettings.h ├── coverdialog.cpp ├── coverdialog.h ├── coverdialog.ui ├── covers.cpp ├── covers.h ├── currentcover.cpp ├── currentcover.h ├── customactions.cpp ├── customactions.h ├── customactionssettings.cpp ├── customactionssettings.h ├── findmpddialog.cpp ├── findmpddialog.h ├── findmpddialog.ui ├── folderpage.cpp ├── folderpage.h ├── initialsettingswizard.cpp ├── initialsettingswizard.h ├── initialsettingswizard.ui ├── interfacesettings.cpp ├── interfacesettings.h ├── interfacesettings.ui ├── librarypage.cpp ├── librarypage.h ├── localfolderpage.cpp ├── localfolderpage.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── mediakeys.cpp ├── mediakeys.h ├── mpdbrowsepage.cpp ├── mpdbrowsepage.h ├── multimediakeysinterface.cpp ├── multimediakeysinterface.h ├── page.h ├── playbacksettings.cpp ├── playbacksettings.h ├── playbacksettings.ui ├── preferencesdialog.cpp ├── preferencesdialog.h ├── qxtmediakeys.cpp ├── qxtmediakeys.h ├── searchpage.cpp ├── searchpage.h ├── serversettings.cpp ├── serversettings.h ├── serversettings.ui ├── settings.cpp ├── settings.h ├── shortcutssettingspage.cpp ├── shortcutssettingspage.h ├── singleapplication.cpp ├── singleapplication.h ├── stdactions.cpp ├── stdactions.h ├── trayitem.cpp └── trayitem.h ├── http ├── httpserver.cpp ├── httpserver.h ├── httpsocket.cpp └── httpsocket.h ├── icons ├── CMakeLists.txt ├── cantata-symbolic.svg ├── cantata.svg ├── cantata1024.png ├── cantata128.png ├── cantata16.png ├── cantata22.png ├── cantata24.png ├── cantata256.png ├── cantata32.png ├── cantata48.png ├── cantata512.png ├── cantata64.png ├── consume.svg ├── media-next.svg ├── media-optical.svg ├── media-optical32.svg ├── media-pause.svg ├── media-play-rtl.svg ├── media-play.svg ├── media-prev.svg ├── media-stop.svg ├── radio.svg ├── sidebar-devices.svg ├── sidebar-folders.svg ├── sidebar-info.svg ├── sidebar-library.svg ├── sidebar-online.svg ├── sidebar-playlists.svg ├── sidebar-playqueue.svg ├── sidebar-search.svg ├── stars.svg ├── view-media-album.svg ├── view-media-artist.svg ├── view-media-genre.svg └── yaru │ ├── CMakeLists.txt │ ├── cantata-16x16.png │ ├── cantata-16x16@2x.png │ ├── cantata-24x24.png │ ├── cantata-24x24@2x.png │ ├── cantata-256x256.png │ ├── cantata-256x256@2x.png │ ├── cantata-32x32.png │ ├── cantata-32x32@2x.png │ ├── cantata-48x48.png │ ├── cantata-48x48@2x.png │ ├── cantata.svg │ └── render-bitmaps.py ├── install_dirs.cmake ├── mac ├── CMakeLists.txt ├── Info.plist.cmake ├── cantata.icns ├── createicon.sh ├── dmg │ ├── DS_Store.in │ ├── background.png │ ├── background.xcf │ └── create-dmg.sh.in ├── dockmenu.cpp ├── dockmenu.h ├── macnotify.h ├── macnotify.mm ├── macnowplaying.h ├── macnowplaying.mm ├── powermanagement.cpp └── powermanagement.h ├── models ├── actionmodel.cpp ├── actionmodel.h ├── browsemodel.cpp ├── browsemodel.h ├── devicesmodel.cpp ├── devicesmodel.h ├── localbrowsemodel.cpp ├── localbrowsemodel.h ├── mpdlibrarymodel.cpp ├── mpdlibrarymodel.h ├── mpdsearchmodel.cpp ├── mpdsearchmodel.h ├── musiclibraryitem.cpp ├── musiclibraryitem.h ├── musiclibraryitemalbum.cpp ├── musiclibraryitemalbum.h ├── musiclibraryitemartist.cpp ├── musiclibraryitemartist.h ├── musiclibraryitemroot.cpp ├── musiclibraryitemroot.h ├── musiclibraryitemsong.h ├── musiclibrarymodel.cpp ├── musiclibrarymodel.h ├── musiclibraryproxymodel.cpp ├── musiclibraryproxymodel.h ├── playlistsmodel.cpp ├── playlistsmodel.h ├── playlistsproxymodel.cpp ├── playlistsproxymodel.h ├── playqueuemodel.cpp ├── playqueuemodel.h ├── playqueueproxymodel.cpp ├── playqueueproxymodel.h ├── proxymodel.cpp ├── proxymodel.h ├── roles.h ├── searchmodel.cpp ├── searchmodel.h ├── searchproxymodel.cpp ├── searchproxymodel.h ├── sqllibrarymodel.cpp ├── sqllibrarymodel.h ├── streamsearchmodel.cpp ├── streamsearchmodel.h ├── streamsmodel.cpp ├── streamsmodel.h ├── streamsproxymodel.cpp └── streamsproxymodel.h ├── mpd-interface ├── cuefile.cpp ├── cuefile.h ├── httpstream.cpp ├── httpstream.h ├── mpd.conf.template ├── mpdconnection.cpp ├── mpdconnection.h ├── mpdparseutils.cpp ├── mpdparseutils.h ├── mpdstats.cpp ├── mpdstats.h ├── mpdstatus.cpp ├── mpdstatus.h ├── mpduser.cpp ├── mpduser.h ├── output.h ├── partition.h ├── playlist.h ├── song.cpp ├── song.h └── stream.h ├── network ├── networkaccessmanager.cpp ├── networkaccessmanager.h ├── networkproxyfactory.cpp ├── networkproxyfactory.h ├── proxysettings.cpp ├── proxysettings.h └── proxysettings.ui ├── online ├── icons │ ├── CMakeLists.txt │ ├── bbc.svg │ ├── cbc.svg │ ├── magnatune.svg │ ├── podcasts.png │ └── soundcloud.png ├── jamendoservice.cpp ├── jamendoservice.h ├── jamendosettingsdialog.cpp ├── jamendosettingsdialog.h ├── magnatuneservice.cpp ├── magnatuneservice.h ├── magnatunesettingsdialog.cpp ├── magnatunesettingsdialog.h ├── onlinedbservice.cpp ├── onlinedbservice.h ├── onlinedbwidget.cpp ├── onlinedbwidget.h ├── onlinesearchservice.cpp ├── onlinesearchservice.h ├── onlinesearchwidget.cpp ├── onlinesearchwidget.h ├── onlineservice.cpp ├── onlineservice.h ├── onlineservicespage.cpp ├── onlineservicespage.h ├── onlinesettings.cpp ├── onlinesettings.h ├── onlinesettings.ui ├── opmlparser.cpp ├── opmlparser.h ├── podcast_directories.xml ├── podcastsearchdialog.cpp ├── podcastsearchdialog.h ├── podcastservice.cpp ├── podcastservice.h ├── podcastsettingsdialog.cpp ├── podcastsettingsdialog.h ├── podcastwidget.cpp ├── podcastwidget.h ├── rssparser.cpp ├── rssparser.h ├── soundcloudservice.cpp └── soundcloudservice.h ├── playlists ├── cantata-dynamic ├── cantata-dynamic.conf ├── cantata-dynamic.service ├── dynamicplaylists.cpp ├── dynamicplaylists.h ├── dynamicplaylistspage.cpp ├── dynamicplaylistspage.h ├── playlistproxymodel.cpp ├── playlistproxymodel.h ├── playlistrule.ui ├── playlistruledialog.cpp ├── playlistruledialog.h ├── playlistrules.ui ├── playlistrulesdialog.cpp ├── playlistrulesdialog.h ├── playlistspage.cpp ├── playlistspage.h ├── rulesplaylists.cpp ├── rulesplaylists.h ├── smartplaylists.cpp ├── smartplaylists.h ├── smartplaylistspage.cpp ├── smartplaylistspage.h ├── storedplaylistspage.cpp └── storedplaylistspage.h ├── replaygain ├── CMakeLists.txt ├── albumscanner.cpp ├── albumscanner.h ├── ffmpeginput.cpp ├── ffmpeginput.h ├── input.h ├── jobcontroller.cpp ├── jobcontroller.h ├── main.cpp ├── mpg123input.cpp ├── mpg123input.h ├── replaygain.cpp ├── replaygain.h ├── rgdialog.cpp ├── rgdialog.h ├── tagreader.cpp ├── tagreader.h ├── trackscanner.cpp └── trackscanner.h ├── screenshots └── mainwindow.png ├── scrobbling ├── pausabletimer.cpp ├── pausabletimer.h ├── scrobbler.cpp ├── scrobbler.h ├── scrobblers.xml ├── scrobblinglove.cpp ├── scrobblinglove.h ├── scrobblingsettings.cpp ├── scrobblingsettings.h └── scrobblingsettings.ui ├── streams ├── icons │ ├── CMakeLists.txt │ ├── shoutcast.svg │ ├── station.svg │ ├── stream.png │ └── tunein.svg ├── streamdialog.cpp ├── streamdialog.h ├── streamfetcher.cpp ├── streamfetcher.h ├── streamspage.cpp └── streamspage.h ├── support ├── CMakeLists.txt ├── Cantata-FontAwesome-README ├── Cantata-FontAwesome.ttf ├── OFL.txt ├── acceleratormanager.cpp ├── acceleratormanager.h ├── acceleratormanager_private.h ├── action.cpp ├── action.h ├── actioncollection.cpp ├── actioncollection.h ├── buddylabel.cpp ├── buddylabel.h ├── capacitybar.h ├── combobox.cpp ├── combobox.h ├── configdialog.cpp ├── configdialog.h ├── configuration.cpp ├── configuration.h ├── dialog.cpp ├── dialog.h ├── fancytabwidget.cpp ├── fancytabwidget.h ├── flattoolbutton.cpp ├── flattoolbutton.h ├── globalstatic.h ├── gtkstyle.cpp ├── gtkstyle.h ├── icon.cpp ├── icon.h ├── inputdialog.cpp ├── inputdialog.h ├── keysequencewidget.cpp ├── keysequencewidget.h ├── kmessagewidget.cpp ├── kmessagewidget.h ├── lineedit.cpp ├── lineedit.h ├── messagebox.cpp ├── messagebox.h ├── messagewidget.cpp ├── messagewidget.h ├── monoicon.cpp ├── monoicon.h ├── osxstyle.cpp ├── osxstyle.h ├── pagewidget.cpp ├── pagewidget.h ├── pathrequester.cpp ├── pathrequester.h ├── proxystyle.cpp ├── proxystyle.h ├── shortcutsmodel.cpp ├── shortcutsmodel.h ├── shortcutssettingswidget.cpp ├── shortcutssettingswidget.h ├── shortcutssettingswidget.ui ├── spinner.cpp ├── spinner.h ├── squeezedtextlabel.cpp ├── squeezedtextlabel.h ├── support.qrc ├── thread.cpp ├── thread.h ├── urllabel.cpp ├── urllabel.h ├── utils.cpp ├── utils.h ├── windowmanager.cpp └── windowmanager.h ├── tags ├── CMakeLists.txt ├── filetyperesolver.cpp ├── filetyperesolver.h ├── main.cpp ├── tag_fixes.xml ├── tageditor.cpp ├── tageditor.h ├── tageditor.ui ├── taghelper.cpp ├── taghelper.h ├── taghelperiface.cpp ├── taghelperiface.h ├── tags.cpp ├── tags.h ├── trackorganiser.cpp ├── trackorganiser.h └── trackorganiser.ui ├── translations ├── CMakeLists.txt ├── blank.ts ├── cantata_cs.ts ├── cantata_da.ts ├── cantata_de.ts ├── cantata_en_GB.ts ├── cantata_es.ts ├── cantata_fi.ts ├── cantata_fr.ts ├── cantata_hu.ts ├── cantata_it.ts ├── cantata_ja.ts ├── cantata_ko.ts ├── cantata_nl.ts ├── cantata_pl.ts ├── cantata_pt_BR.ts ├── cantata_ru.ts ├── cantata_zh_CN.ts └── update.sh ├── widgets ├── actionitemdelegate.cpp ├── actionitemdelegate.h ├── actionlabel.cpp ├── actionlabel.h ├── autohidingsplitter.cpp ├── autohidingsplitter.h ├── basicitemdelegate.cpp ├── basicitemdelegate.h ├── categorizedview.cpp ├── categorizedview.h ├── completioncombo.h ├── coverwidget.cpp ├── coverwidget.h ├── emptyspinbox.h ├── genrecombo.cpp ├── genrecombo.h ├── groupedview.cpp ├── groupedview.h ├── icons.cpp ├── icons.h ├── itemview.cpp ├── itemview.h ├── itemview.ui ├── listview.cpp ├── listview.h ├── menubutton.cpp ├── menubutton.h ├── messageoverlay.cpp ├── messageoverlay.h ├── mirrormenu.cpp ├── mirrormenu.h ├── multipagewidget.cpp ├── multipagewidget.h ├── notelabel.cpp ├── notelabel.h ├── nowplayingwidget.cpp ├── nowplayingwidget.h ├── playqueuesearchwidget.h ├── playqueueview.cpp ├── playqueueview.h ├── ratingwidget.cpp ├── ratingwidget.h ├── searchwidget.cpp ├── searchwidget.h ├── selectorlabel.cpp ├── selectorlabel.h ├── singlepagewidget.cpp ├── singlepagewidget.h ├── sizegrip.cpp ├── sizegrip.h ├── songdialog.cpp ├── songdialog.h ├── spacerwidget.cpp ├── spacerwidget.h ├── stackedpagewidget.cpp ├── stackedpagewidget.h ├── statelabel.h ├── stretchheaderview.cpp ├── stretchheaderview.h ├── tableview.cpp ├── tableview.h ├── tagspinbox.cpp ├── tagspinbox.h ├── textbrowser.cpp ├── textbrowser.h ├── thinsplitterhandle.cpp ├── thinsplitterhandle.h ├── titlewidget.cpp ├── titlewidget.h ├── toolbutton.cpp ├── toolbutton.h ├── treeview.cpp ├── treeview.h ├── volumecontrol.cpp ├── volumecontrol.h ├── volumeslider.cpp ├── volumeslider.h ├── wizardpage.cpp └── wizardpage.h └── windows ├── CMakeLists.txt ├── Cantata README.txt ├── LICENSE.txt ├── cantata.ico ├── cantata.nsi.cmake ├── cantataico.rc ├── createicon.sh ├── icu ├── README └── icudt52.dll ├── thumbnailtoolbar.cpp └── thumbnailtoolbar.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/.github/workflows/github-actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | build/ 3 | CMakeLists.txt.user 4 | cantata-git/ 5 | -------------------------------------------------------------------------------- /3rdparty/kcategorizedview/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/kcategorizedview/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/kcategorizedview/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/kcategorizedview/COPYING -------------------------------------------------------------------------------- /3rdparty/kcategorizedview/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/kcategorizedview/COPYING.LIB -------------------------------------------------------------------------------- /3rdparty/kcategorizedview/kcategorizedview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/kcategorizedview/kcategorizedview.cpp -------------------------------------------------------------------------------- /3rdparty/kcategorizedview/kcategorizedview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/kcategorizedview/kcategorizedview.h -------------------------------------------------------------------------------- /3rdparty/kcategorizedview/kcategorizedview_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/kcategorizedview/kcategorizedview_p.h -------------------------------------------------------------------------------- /3rdparty/kcategorizedview/kcategorydrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/kcategorizedview/kcategorydrawer.cpp -------------------------------------------------------------------------------- /3rdparty/kcategorizedview/kcategorydrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/kcategorizedview/kcategorydrawer.h -------------------------------------------------------------------------------- /3rdparty/qtiocompressor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtiocompressor/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/qtiocompressor/LGPL_EXCEPTION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtiocompressor/LGPL_EXCEPTION.txt -------------------------------------------------------------------------------- /3rdparty/qtiocompressor/LICENSE.GPL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtiocompressor/LICENSE.GPL3 -------------------------------------------------------------------------------- /3rdparty/qtiocompressor/QtIOCompressor: -------------------------------------------------------------------------------- 1 | #include "qtiocompressor.h" 2 | -------------------------------------------------------------------------------- /3rdparty/qtiocompressor/qtiocompressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtiocompressor/qtiocompressor.cpp -------------------------------------------------------------------------------- /3rdparty/qtiocompressor/qtiocompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtiocompressor/qtiocompressor.h -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/LICENSE.LGPL -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/QtLockedFile: -------------------------------------------------------------------------------- 1 | #include "qtlockedfile.h" 2 | -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/QtSingleApplication: -------------------------------------------------------------------------------- 1 | #include "qtsingleapplication.h" 2 | -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtlocalpeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtlocalpeer.cpp -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtlocalpeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtlocalpeer.h -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtlockedfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtlockedfile.cpp -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtlockedfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtlockedfile.h -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtlockedfile_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtlockedfile_unix.cpp -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtlockedfile_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtlockedfile_win.cpp -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtsingleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtsingleapplication.cpp -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtsingleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtsingleapplication.h -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtsingleapplication.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtsingleapplication.patch -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtsinglecoreapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtsinglecoreapplication.cpp -------------------------------------------------------------------------------- /3rdparty/qtsingleapplication/qtsinglecoreapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qtsingleapplication/qtsinglecoreapplication.h -------------------------------------------------------------------------------- /3rdparty/qxt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/qxt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/LICENSE -------------------------------------------------------------------------------- /3rdparty/qxt/keymapper_x11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/keymapper_x11.h -------------------------------------------------------------------------------- /3rdparty/qxt/media-keys.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/media-keys.patch -------------------------------------------------------------------------------- /3rdparty/qxt/meta-modifier.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/meta-modifier.patch -------------------------------------------------------------------------------- /3rdparty/qxt/qxtglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/qxtglobal.cpp -------------------------------------------------------------------------------- /3rdparty/qxt/qxtglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/qxtglobal.h -------------------------------------------------------------------------------- /3rdparty/qxt/qxtglobalshortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/qxtglobalshortcut.cpp -------------------------------------------------------------------------------- /3rdparty/qxt/qxtglobalshortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/qxtglobalshortcut.h -------------------------------------------------------------------------------- /3rdparty/qxt/qxtglobalshortcut_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/qxtglobalshortcut_mac.cpp -------------------------------------------------------------------------------- /3rdparty/qxt/qxtglobalshortcut_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/qxtglobalshortcut_p.h -------------------------------------------------------------------------------- /3rdparty/qxt/qxtglobalshortcut_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/qxtglobalshortcut_win.cpp -------------------------------------------------------------------------------- /3rdparty/qxt/qxtglobalshortcut_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/qxt/qxtglobalshortcut_x11.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/solid-lite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/README -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halblock.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halblock.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halcdrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halcdrom.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halcdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halcdrom.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/haldevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/haldevice.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/haldevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/haldevice.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/haldeviceinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/haldeviceinterface.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/haldeviceinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/haldeviceinterface.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halfstabhandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halfstabhandling.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halfstabhandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halfstabhandling.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halgenericinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halgenericinterface.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halmanager.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halmanager.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halopticaldisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halopticaldisc.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halopticaldisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halopticaldisc.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halstorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halstorage.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halstorage.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halstorageaccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halstorageaccess.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halstorageaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halstorageaccess.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halvolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halvolume.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/hal/halvolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/hal/halvolume.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/iokit/cfhelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/iokit/cfhelper.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/iokit/iokitdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/iokit/iokitdevice.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/iokit/iokitdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/iokit/iokitdevice.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/iokit/iokitmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/iokit/iokitmanager.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/iokit/iokitmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/iokit/iokitmanager.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/shared/rootdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/shared/rootdevice.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/shared/rootdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/shared/rootdevice.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/shared/udevqt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/shared/udevqt.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/shared/udevqt_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/shared/udevqt_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/shared/udevqtclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/shared/udevqtclient.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/shared/udevqtdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/shared/udevqtdevice.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udev/udev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udev/udev.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udev/udevblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udev/udevblock.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udev/udevblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udev/udevblock.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udev/udevdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udev/udevdevice.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udev/udevdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udev/udevdevice.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udev/udevmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udev/udevmanager.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udev/udevmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udev/udevmanager.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks/udisks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks/udisks.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks/udisksblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks/udisksblock.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks/udisksblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks/udisksblock.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks/udisksdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks/udisksdevice.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks/udisksdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks/udisksdevice.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks/udisksmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks/udisksmanager.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks/udisksmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks/udisksmanager.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks2/dbus/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks2/dbus/manager.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks2/dbus/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks2/dbus/manager.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks2/dbus/manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks2/dbus/manager.xml -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks2/udisks2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks2/udisks2.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks2/udisksblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks2/udisksblock.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks2/udisksblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks2/udisksblock.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks2/udisksdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks2/udisksdevice.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks2/udisksdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks2/udisksdevice.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks2/udisksmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks2/udisksmanager.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/udisks2/udisksmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/udisks2/udisksmanager.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmiblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmiblock.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmiblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmiblock.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmicdrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmicdrom.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmicdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmicdrom.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmidevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmidevice.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmidevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmidevice.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmideviceinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmideviceinterface.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmigenericinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmigenericinterface.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmimanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmimanager.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmimanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmimanager.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmiopticaldisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmiopticaldisc.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmiopticaldisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmiopticaldisc.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmiquery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmiquery.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmiquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmiquery.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmistorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmistorage.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmistorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmistorage.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmistorageaccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmistorageaccess.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmistorageaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmistorageaccess.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmivolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmivolume.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/backends/wmi/wmivolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/backends/wmi/wmivolume.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/block.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/block.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/block_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/block_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/config-solid.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/config-solid.h.cmake -------------------------------------------------------------------------------- /3rdparty/solid-lite/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/device.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/device.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/device_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/device_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/deviceinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/deviceinterface.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/deviceinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/deviceinterface.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/deviceinterface_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/deviceinterface_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/devicemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/devicemanager.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/devicemanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/devicemanager_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/devicenotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/devicenotifier.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/genericinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/genericinterface.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/genericinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/genericinterface.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/genericinterface_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/genericinterface_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/block.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/block.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/device.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/device.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/deviceinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/deviceinterface.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/deviceinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/deviceinterface.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/devicemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/devicemanager.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/devicemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/devicemanager.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/genericinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/genericinterface.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/genericinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/genericinterface.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/opticaldisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/opticaldisc.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/opticaldisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/opticaldisc.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/opticaldrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/opticaldrive.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/opticaldrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/opticaldrive.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/portablemediaplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/portablemediaplayer.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/portablemediaplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/portablemediaplayer.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/storageaccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/storageaccess.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/storageaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/storageaccess.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/storagedrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/storagedrive.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/storagedrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/storagedrive.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/storagevolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/storagevolume.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/ifaces/storagevolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/ifaces/storagevolume.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/managerbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/managerbase.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/managerbase_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/managerbase_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/opticaldisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/opticaldisc.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/opticaldisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/opticaldisc.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/opticaldisc_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/opticaldisc_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/opticaldrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/opticaldrive.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/opticaldrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/opticaldrive.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/opticaldrive_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/opticaldrive_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/portablemediaplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/portablemediaplayer.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/portablemediaplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/portablemediaplayer.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/portablemediaplayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/portablemediaplayer_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/predicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/predicate.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/predicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/predicate.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/predicate_lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/predicate_lexer.c -------------------------------------------------------------------------------- /3rdparty/solid-lite/predicate_lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/predicate_lexer.l -------------------------------------------------------------------------------- /3rdparty/solid-lite/predicate_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/predicate_parser.c -------------------------------------------------------------------------------- /3rdparty/solid-lite/predicate_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/predicate_parser.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/predicate_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/predicate_parser.y -------------------------------------------------------------------------------- /3rdparty/solid-lite/predicateparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/predicateparse.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/predicateparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/predicateparse.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/solid_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/solid_export.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/soliddefs_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/soliddefs_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/solidnamespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/solidnamespace.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/solidnamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/solidnamespace.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/storageaccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/storageaccess.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/storageaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/storageaccess.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/storageaccess_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/storageaccess_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/storagedrive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/storagedrive.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/storagedrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/storagedrive.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/storagedrive_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/storagedrive_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/storagevolume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/storagevolume.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/storagevolume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/storagevolume.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/storagevolume_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/storagevolume_p.h -------------------------------------------------------------------------------- /3rdparty/solid-lite/xdgbasedirs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/xdgbasedirs.cpp -------------------------------------------------------------------------------- /3rdparty/solid-lite/xdgbasedirs_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/3rdparty/solid-lite/xdgbasedirs_p.h -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/Makefile -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/TODO -------------------------------------------------------------------------------- /cantata-remote.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cantata-remote.cmake -------------------------------------------------------------------------------- /cantata.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cantata.desktop -------------------------------------------------------------------------------- /cantata.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cantata.qrc -------------------------------------------------------------------------------- /cantata_icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cantata_icon.qrc -------------------------------------------------------------------------------- /cantata_media.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cantata_media.qrc -------------------------------------------------------------------------------- /cmake/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /cmake/CheckTagLibFileName.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/CheckTagLibFileName.cmake -------------------------------------------------------------------------------- /cmake/FindAvahi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindAvahi.cmake -------------------------------------------------------------------------------- /cmake/FindCDDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindCDDB.cmake -------------------------------------------------------------------------------- /cmake/FindCdioparanoia.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindCdioparanoia.cmake -------------------------------------------------------------------------------- /cmake/FindCdparanoia.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindCdparanoia.cmake -------------------------------------------------------------------------------- /cmake/FindEbur128.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindEbur128.cmake -------------------------------------------------------------------------------- /cmake/FindFFMPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindFFMPEG.cmake -------------------------------------------------------------------------------- /cmake/FindFoundation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindFoundation.cmake -------------------------------------------------------------------------------- /cmake/FindIOKit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindIOKit.cmake -------------------------------------------------------------------------------- /cmake/FindLIBVLC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindLIBVLC.cmake -------------------------------------------------------------------------------- /cmake/FindMPG123.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindMPG123.cmake -------------------------------------------------------------------------------- /cmake/FindMtp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindMtp.cmake -------------------------------------------------------------------------------- /cmake/FindMusicBrainz5.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindMusicBrainz5.cmake -------------------------------------------------------------------------------- /cmake/FindTaglib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindTaglib.cmake -------------------------------------------------------------------------------- /cmake/FindUDev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/FindUDev.cmake -------------------------------------------------------------------------------- /cmake/MacroLogFeature.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/MacroLogFeature.cmake -------------------------------------------------------------------------------- /cmake/MacroOptionalFindPackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake/MacroOptionalFindPackage.cmake -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/config.h.cmake -------------------------------------------------------------------------------- /context/albumview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/albumview.cpp -------------------------------------------------------------------------------- /context/albumview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/albumview.h -------------------------------------------------------------------------------- /context/artistview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/artistview.cpp -------------------------------------------------------------------------------- /context/artistview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/artistview.h -------------------------------------------------------------------------------- /context/contextengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/contextengine.cpp -------------------------------------------------------------------------------- /context/contextengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/contextengine.h -------------------------------------------------------------------------------- /context/contextsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/contextsettings.cpp -------------------------------------------------------------------------------- /context/contextsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/contextsettings.h -------------------------------------------------------------------------------- /context/contextwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/contextwidget.cpp -------------------------------------------------------------------------------- /context/contextwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/contextwidget.h -------------------------------------------------------------------------------- /context/lastfmengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/lastfmengine.cpp -------------------------------------------------------------------------------- /context/lastfmengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/lastfmengine.h -------------------------------------------------------------------------------- /context/lyrics_providers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/lyrics_providers.xml -------------------------------------------------------------------------------- /context/lyricsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/lyricsdialog.cpp -------------------------------------------------------------------------------- /context/lyricsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/lyricsdialog.h -------------------------------------------------------------------------------- /context/lyricsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/lyricsettings.cpp -------------------------------------------------------------------------------- /context/lyricsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/lyricsettings.h -------------------------------------------------------------------------------- /context/metaengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/metaengine.cpp -------------------------------------------------------------------------------- /context/metaengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/metaengine.h -------------------------------------------------------------------------------- /context/onlineview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/onlineview.cpp -------------------------------------------------------------------------------- /context/onlineview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/onlineview.h -------------------------------------------------------------------------------- /context/othersettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/othersettings.cpp -------------------------------------------------------------------------------- /context/othersettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/othersettings.h -------------------------------------------------------------------------------- /context/othersettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/othersettings.ui -------------------------------------------------------------------------------- /context/songview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/songview.cpp -------------------------------------------------------------------------------- /context/songview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/songview.h -------------------------------------------------------------------------------- /context/togglelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/togglelist.cpp -------------------------------------------------------------------------------- /context/togglelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/togglelist.h -------------------------------------------------------------------------------- /context/togglelist.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/togglelist.ui -------------------------------------------------------------------------------- /context/ultimatelyrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/ultimatelyrics.cpp -------------------------------------------------------------------------------- /context/ultimatelyrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/ultimatelyrics.h -------------------------------------------------------------------------------- /context/ultimatelyricsprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/ultimatelyricsprovider.cpp -------------------------------------------------------------------------------- /context/ultimatelyricsprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/ultimatelyricsprovider.h -------------------------------------------------------------------------------- /context/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/view.cpp -------------------------------------------------------------------------------- /context/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/view.h -------------------------------------------------------------------------------- /context/weblinks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/weblinks.xml -------------------------------------------------------------------------------- /context/wikipediaengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/wikipediaengine.cpp -------------------------------------------------------------------------------- /context/wikipediaengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/wikipediaengine.h -------------------------------------------------------------------------------- /context/wikipediasettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/wikipediasettings.cpp -------------------------------------------------------------------------------- /context/wikipediasettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/context/wikipediasettings.h -------------------------------------------------------------------------------- /db/librarydb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/db/librarydb.cpp -------------------------------------------------------------------------------- /db/librarydb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/db/librarydb.h -------------------------------------------------------------------------------- /db/mpdlibrarydb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/db/mpdlibrarydb.cpp -------------------------------------------------------------------------------- /db/mpdlibrarydb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/db/mpdlibrarydb.h -------------------------------------------------------------------------------- /db/onlinedb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/db/onlinedb.cpp -------------------------------------------------------------------------------- /db/onlinedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/db/onlinedb.h -------------------------------------------------------------------------------- /dbus/gnomemediakeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/gnomemediakeys.cpp -------------------------------------------------------------------------------- /dbus/gnomemediakeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/gnomemediakeys.h -------------------------------------------------------------------------------- /dbus/mpd.cantata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/mpd.cantata.xml -------------------------------------------------------------------------------- /dbus/mpris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/mpris.cpp -------------------------------------------------------------------------------- /dbus/mpris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/mpris.h -------------------------------------------------------------------------------- /dbus/notify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/notify.cpp -------------------------------------------------------------------------------- /dbus/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/notify.h -------------------------------------------------------------------------------- /dbus/org.freedesktop.Notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/org.freedesktop.Notifications.xml -------------------------------------------------------------------------------- /dbus/org.freedesktop.PowerManagement.Inhibit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/org.freedesktop.PowerManagement.Inhibit.xml -------------------------------------------------------------------------------- /dbus/org.freedesktop.UPower.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/org.freedesktop.UPower.xml -------------------------------------------------------------------------------- /dbus/org.freedesktop.login1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/org.freedesktop.login1.xml -------------------------------------------------------------------------------- /dbus/org.gnome.SettingsDaemon.MediaKeys.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/org.gnome.SettingsDaemon.MediaKeys.xml -------------------------------------------------------------------------------- /dbus/org.gnome.SettingsDaemon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/org.gnome.SettingsDaemon.xml -------------------------------------------------------------------------------- /dbus/org.kde.Solid.PowerManagement.PolicyAgent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/org.kde.Solid.PowerManagement.PolicyAgent.xml -------------------------------------------------------------------------------- /dbus/org.mpris.MediaPlayer2.Player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/org.mpris.MediaPlayer2.Player.xml -------------------------------------------------------------------------------- /dbus/org.mpris.MediaPlayer2.root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/org.mpris.MediaPlayer2.root.xml -------------------------------------------------------------------------------- /dbus/powermanagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/powermanagement.cpp -------------------------------------------------------------------------------- /dbus/powermanagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/dbus/powermanagement.h -------------------------------------------------------------------------------- /devices/actiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/actiondialog.cpp -------------------------------------------------------------------------------- /devices/actiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/actiondialog.h -------------------------------------------------------------------------------- /devices/actiondialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/actiondialog.ui -------------------------------------------------------------------------------- /devices/albumdetails.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/albumdetails.ui -------------------------------------------------------------------------------- /devices/albumdetailsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/albumdetailsdialog.cpp -------------------------------------------------------------------------------- /devices/albumdetailsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/albumdetailsdialog.h -------------------------------------------------------------------------------- /devices/audiocddevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/audiocddevice.cpp -------------------------------------------------------------------------------- /devices/audiocddevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/audiocddevice.h -------------------------------------------------------------------------------- /devices/audiocdsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/audiocdsettings.cpp -------------------------------------------------------------------------------- /devices/audiocdsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/audiocdsettings.h -------------------------------------------------------------------------------- /devices/audiocdsettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/audiocdsettings.ui -------------------------------------------------------------------------------- /devices/cdalbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/cdalbum.h -------------------------------------------------------------------------------- /devices/cddbinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/cddbinterface.cpp -------------------------------------------------------------------------------- /devices/cddbinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/cddbinterface.h -------------------------------------------------------------------------------- /devices/cddbselectiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/cddbselectiondialog.cpp -------------------------------------------------------------------------------- /devices/cddbselectiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/cddbselectiondialog.h -------------------------------------------------------------------------------- /devices/cdparanoia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/cdparanoia.cpp -------------------------------------------------------------------------------- /devices/cdparanoia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/cdparanoia.h -------------------------------------------------------------------------------- /devices/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/device.cpp -------------------------------------------------------------------------------- /devices/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/device.h -------------------------------------------------------------------------------- /devices/deviceoptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/deviceoptions.cpp -------------------------------------------------------------------------------- /devices/deviceoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/deviceoptions.h -------------------------------------------------------------------------------- /devices/devicepropertiesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/devicepropertiesdialog.cpp -------------------------------------------------------------------------------- /devices/devicepropertiesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/devicepropertiesdialog.h -------------------------------------------------------------------------------- /devices/devicepropertieswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/devicepropertieswidget.cpp -------------------------------------------------------------------------------- /devices/devicepropertieswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/devicepropertieswidget.h -------------------------------------------------------------------------------- /devices/devicepropertieswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/devicepropertieswidget.ui -------------------------------------------------------------------------------- /devices/devicespage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/devicespage.cpp -------------------------------------------------------------------------------- /devices/devicespage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/devicespage.h -------------------------------------------------------------------------------- /devices/encoders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/encoders.cpp -------------------------------------------------------------------------------- /devices/encoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/encoders.h -------------------------------------------------------------------------------- /devices/extractjob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/extractjob.cpp -------------------------------------------------------------------------------- /devices/extractjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/extractjob.h -------------------------------------------------------------------------------- /devices/filejob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/filejob.cpp -------------------------------------------------------------------------------- /devices/filejob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/filejob.h -------------------------------------------------------------------------------- /devices/filenameschemedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/filenameschemedialog.cpp -------------------------------------------------------------------------------- /devices/filenameschemedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/filenameschemedialog.h -------------------------------------------------------------------------------- /devices/filenameschemedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/filenameschemedialog.ui -------------------------------------------------------------------------------- /devices/freespaceinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/freespaceinfo.cpp -------------------------------------------------------------------------------- /devices/freespaceinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/freespaceinfo.h -------------------------------------------------------------------------------- /devices/fsdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/fsdevice.cpp -------------------------------------------------------------------------------- /devices/fsdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/fsdevice.h -------------------------------------------------------------------------------- /devices/mountpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/mountpoints.cpp -------------------------------------------------------------------------------- /devices/mountpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/mountpoints.h -------------------------------------------------------------------------------- /devices/mtpdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/mtpdevice.cpp -------------------------------------------------------------------------------- /devices/mtpdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/mtpdevice.h -------------------------------------------------------------------------------- /devices/musicbrainz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/musicbrainz.cpp -------------------------------------------------------------------------------- /devices/musicbrainz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/musicbrainz.h -------------------------------------------------------------------------------- /devices/remotedevicepropertiesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/remotedevicepropertiesdialog.cpp -------------------------------------------------------------------------------- /devices/remotedevicepropertiesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/remotedevicepropertiesdialog.h -------------------------------------------------------------------------------- /devices/remotedevicepropertieswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/remotedevicepropertieswidget.cpp -------------------------------------------------------------------------------- /devices/remotedevicepropertieswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/remotedevicepropertieswidget.h -------------------------------------------------------------------------------- /devices/remotedevicepropertieswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/remotedevicepropertieswidget.ui -------------------------------------------------------------------------------- /devices/remotefsdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/remotefsdevice.cpp -------------------------------------------------------------------------------- /devices/remotefsdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/remotefsdevice.h -------------------------------------------------------------------------------- /devices/splitlabelwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/splitlabelwidget.cpp -------------------------------------------------------------------------------- /devices/splitlabelwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/splitlabelwidget.h -------------------------------------------------------------------------------- /devices/synccollectionwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/synccollectionwidget.cpp -------------------------------------------------------------------------------- /devices/synccollectionwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/synccollectionwidget.h -------------------------------------------------------------------------------- /devices/synccollectionwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/synccollectionwidget.ui -------------------------------------------------------------------------------- /devices/syncdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/syncdialog.cpp -------------------------------------------------------------------------------- /devices/syncdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/syncdialog.h -------------------------------------------------------------------------------- /devices/transcodingjob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/transcodingjob.cpp -------------------------------------------------------------------------------- /devices/transcodingjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/transcodingjob.h -------------------------------------------------------------------------------- /devices/umsdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/umsdevice.cpp -------------------------------------------------------------------------------- /devices/umsdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/umsdevice.h -------------------------------------------------------------------------------- /devices/valueslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/valueslider.cpp -------------------------------------------------------------------------------- /devices/valueslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/devices/valueslider.h -------------------------------------------------------------------------------- /gui/apikeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/apikeys.cpp -------------------------------------------------------------------------------- /gui/apikeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/apikeys.h -------------------------------------------------------------------------------- /gui/apikeyssettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/apikeyssettings.cpp -------------------------------------------------------------------------------- /gui/apikeyssettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/apikeyssettings.h -------------------------------------------------------------------------------- /gui/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/application.cpp -------------------------------------------------------------------------------- /gui/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/application.h -------------------------------------------------------------------------------- /gui/application_haiku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/application_haiku.cpp -------------------------------------------------------------------------------- /gui/application_haiku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/application_haiku.h -------------------------------------------------------------------------------- /gui/application_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/application_mac.cpp -------------------------------------------------------------------------------- /gui/application_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/application_mac.h -------------------------------------------------------------------------------- /gui/application_qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/application_qt.cpp -------------------------------------------------------------------------------- /gui/application_qt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/application_qt.h -------------------------------------------------------------------------------- /gui/application_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/application_win.cpp -------------------------------------------------------------------------------- /gui/application_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/application_win.h -------------------------------------------------------------------------------- /gui/avahidiscovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/avahidiscovery.cpp -------------------------------------------------------------------------------- /gui/avahidiscovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/avahidiscovery.h -------------------------------------------------------------------------------- /gui/avahipoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/avahipoll.cpp -------------------------------------------------------------------------------- /gui/avahipoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/avahipoll.h -------------------------------------------------------------------------------- /gui/cachesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/cachesettings.cpp -------------------------------------------------------------------------------- /gui/cachesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/cachesettings.h -------------------------------------------------------------------------------- /gui/coverdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/coverdialog.cpp -------------------------------------------------------------------------------- /gui/coverdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/coverdialog.h -------------------------------------------------------------------------------- /gui/coverdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/coverdialog.ui -------------------------------------------------------------------------------- /gui/covers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/covers.cpp -------------------------------------------------------------------------------- /gui/covers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/covers.h -------------------------------------------------------------------------------- /gui/currentcover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/currentcover.cpp -------------------------------------------------------------------------------- /gui/currentcover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/currentcover.h -------------------------------------------------------------------------------- /gui/customactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/customactions.cpp -------------------------------------------------------------------------------- /gui/customactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/customactions.h -------------------------------------------------------------------------------- /gui/customactionssettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/customactionssettings.cpp -------------------------------------------------------------------------------- /gui/customactionssettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/customactionssettings.h -------------------------------------------------------------------------------- /gui/findmpddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/findmpddialog.cpp -------------------------------------------------------------------------------- /gui/findmpddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/findmpddialog.h -------------------------------------------------------------------------------- /gui/findmpddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/findmpddialog.ui -------------------------------------------------------------------------------- /gui/folderpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/folderpage.cpp -------------------------------------------------------------------------------- /gui/folderpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/folderpage.h -------------------------------------------------------------------------------- /gui/initialsettingswizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/initialsettingswizard.cpp -------------------------------------------------------------------------------- /gui/initialsettingswizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/initialsettingswizard.h -------------------------------------------------------------------------------- /gui/initialsettingswizard.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/initialsettingswizard.ui -------------------------------------------------------------------------------- /gui/interfacesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/interfacesettings.cpp -------------------------------------------------------------------------------- /gui/interfacesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/interfacesettings.h -------------------------------------------------------------------------------- /gui/interfacesettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/interfacesettings.ui -------------------------------------------------------------------------------- /gui/librarypage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/librarypage.cpp -------------------------------------------------------------------------------- /gui/librarypage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/librarypage.h -------------------------------------------------------------------------------- /gui/localfolderpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/localfolderpage.cpp -------------------------------------------------------------------------------- /gui/localfolderpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/localfolderpage.h -------------------------------------------------------------------------------- /gui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/main.cpp -------------------------------------------------------------------------------- /gui/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/mainwindow.cpp -------------------------------------------------------------------------------- /gui/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/mainwindow.h -------------------------------------------------------------------------------- /gui/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/mainwindow.ui -------------------------------------------------------------------------------- /gui/mediakeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/mediakeys.cpp -------------------------------------------------------------------------------- /gui/mediakeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/mediakeys.h -------------------------------------------------------------------------------- /gui/mpdbrowsepage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/mpdbrowsepage.cpp -------------------------------------------------------------------------------- /gui/mpdbrowsepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/mpdbrowsepage.h -------------------------------------------------------------------------------- /gui/multimediakeysinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/multimediakeysinterface.cpp -------------------------------------------------------------------------------- /gui/multimediakeysinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/multimediakeysinterface.h -------------------------------------------------------------------------------- /gui/page.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/page.h -------------------------------------------------------------------------------- /gui/playbacksettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/playbacksettings.cpp -------------------------------------------------------------------------------- /gui/playbacksettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/playbacksettings.h -------------------------------------------------------------------------------- /gui/playbacksettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/playbacksettings.ui -------------------------------------------------------------------------------- /gui/preferencesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/preferencesdialog.cpp -------------------------------------------------------------------------------- /gui/preferencesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/preferencesdialog.h -------------------------------------------------------------------------------- /gui/qxtmediakeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/qxtmediakeys.cpp -------------------------------------------------------------------------------- /gui/qxtmediakeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/qxtmediakeys.h -------------------------------------------------------------------------------- /gui/searchpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/searchpage.cpp -------------------------------------------------------------------------------- /gui/searchpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/searchpage.h -------------------------------------------------------------------------------- /gui/serversettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/serversettings.cpp -------------------------------------------------------------------------------- /gui/serversettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/serversettings.h -------------------------------------------------------------------------------- /gui/serversettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/serversettings.ui -------------------------------------------------------------------------------- /gui/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/settings.cpp -------------------------------------------------------------------------------- /gui/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/settings.h -------------------------------------------------------------------------------- /gui/shortcutssettingspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/shortcutssettingspage.cpp -------------------------------------------------------------------------------- /gui/shortcutssettingspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/shortcutssettingspage.h -------------------------------------------------------------------------------- /gui/singleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/singleapplication.cpp -------------------------------------------------------------------------------- /gui/singleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/singleapplication.h -------------------------------------------------------------------------------- /gui/stdactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/stdactions.cpp -------------------------------------------------------------------------------- /gui/stdactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/stdactions.h -------------------------------------------------------------------------------- /gui/trayitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/trayitem.cpp -------------------------------------------------------------------------------- /gui/trayitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/gui/trayitem.h -------------------------------------------------------------------------------- /http/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/http/httpserver.cpp -------------------------------------------------------------------------------- /http/httpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/http/httpserver.h -------------------------------------------------------------------------------- /http/httpsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/http/httpsocket.cpp -------------------------------------------------------------------------------- /http/httpsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/http/httpsocket.h -------------------------------------------------------------------------------- /icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/CMakeLists.txt -------------------------------------------------------------------------------- /icons/cantata-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata-symbolic.svg -------------------------------------------------------------------------------- /icons/cantata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata.svg -------------------------------------------------------------------------------- /icons/cantata1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata1024.png -------------------------------------------------------------------------------- /icons/cantata128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata128.png -------------------------------------------------------------------------------- /icons/cantata16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata16.png -------------------------------------------------------------------------------- /icons/cantata22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata22.png -------------------------------------------------------------------------------- /icons/cantata24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata24.png -------------------------------------------------------------------------------- /icons/cantata256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata256.png -------------------------------------------------------------------------------- /icons/cantata32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata32.png -------------------------------------------------------------------------------- /icons/cantata48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata48.png -------------------------------------------------------------------------------- /icons/cantata512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata512.png -------------------------------------------------------------------------------- /icons/cantata64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/cantata64.png -------------------------------------------------------------------------------- /icons/consume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/consume.svg -------------------------------------------------------------------------------- /icons/media-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/media-next.svg -------------------------------------------------------------------------------- /icons/media-optical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/media-optical.svg -------------------------------------------------------------------------------- /icons/media-optical32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/media-optical32.svg -------------------------------------------------------------------------------- /icons/media-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/media-pause.svg -------------------------------------------------------------------------------- /icons/media-play-rtl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/media-play-rtl.svg -------------------------------------------------------------------------------- /icons/media-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/media-play.svg -------------------------------------------------------------------------------- /icons/media-prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/media-prev.svg -------------------------------------------------------------------------------- /icons/media-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/media-stop.svg -------------------------------------------------------------------------------- /icons/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/radio.svg -------------------------------------------------------------------------------- /icons/sidebar-devices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/sidebar-devices.svg -------------------------------------------------------------------------------- /icons/sidebar-folders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/sidebar-folders.svg -------------------------------------------------------------------------------- /icons/sidebar-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/sidebar-info.svg -------------------------------------------------------------------------------- /icons/sidebar-library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/sidebar-library.svg -------------------------------------------------------------------------------- /icons/sidebar-online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/sidebar-online.svg -------------------------------------------------------------------------------- /icons/sidebar-playlists.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/sidebar-playlists.svg -------------------------------------------------------------------------------- /icons/sidebar-playqueue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/sidebar-playqueue.svg -------------------------------------------------------------------------------- /icons/sidebar-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/sidebar-search.svg -------------------------------------------------------------------------------- /icons/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/stars.svg -------------------------------------------------------------------------------- /icons/view-media-album.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/view-media-album.svg -------------------------------------------------------------------------------- /icons/view-media-artist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/view-media-artist.svg -------------------------------------------------------------------------------- /icons/view-media-genre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/view-media-genre.svg -------------------------------------------------------------------------------- /icons/yaru/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/CMakeLists.txt -------------------------------------------------------------------------------- /icons/yaru/cantata-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata-16x16.png -------------------------------------------------------------------------------- /icons/yaru/cantata-16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata-16x16@2x.png -------------------------------------------------------------------------------- /icons/yaru/cantata-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata-24x24.png -------------------------------------------------------------------------------- /icons/yaru/cantata-24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata-24x24@2x.png -------------------------------------------------------------------------------- /icons/yaru/cantata-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata-256x256.png -------------------------------------------------------------------------------- /icons/yaru/cantata-256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata-256x256@2x.png -------------------------------------------------------------------------------- /icons/yaru/cantata-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata-32x32.png -------------------------------------------------------------------------------- /icons/yaru/cantata-32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata-32x32@2x.png -------------------------------------------------------------------------------- /icons/yaru/cantata-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata-48x48.png -------------------------------------------------------------------------------- /icons/yaru/cantata-48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata-48x48@2x.png -------------------------------------------------------------------------------- /icons/yaru/cantata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/cantata.svg -------------------------------------------------------------------------------- /icons/yaru/render-bitmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/icons/yaru/render-bitmaps.py -------------------------------------------------------------------------------- /install_dirs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/install_dirs.cmake -------------------------------------------------------------------------------- /mac/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/CMakeLists.txt -------------------------------------------------------------------------------- /mac/Info.plist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/Info.plist.cmake -------------------------------------------------------------------------------- /mac/cantata.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/cantata.icns -------------------------------------------------------------------------------- /mac/createicon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/createicon.sh -------------------------------------------------------------------------------- /mac/dmg/DS_Store.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/dmg/DS_Store.in -------------------------------------------------------------------------------- /mac/dmg/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/dmg/background.png -------------------------------------------------------------------------------- /mac/dmg/background.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/dmg/background.xcf -------------------------------------------------------------------------------- /mac/dmg/create-dmg.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/dmg/create-dmg.sh.in -------------------------------------------------------------------------------- /mac/dockmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/dockmenu.cpp -------------------------------------------------------------------------------- /mac/dockmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/dockmenu.h -------------------------------------------------------------------------------- /mac/macnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/macnotify.h -------------------------------------------------------------------------------- /mac/macnotify.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/macnotify.mm -------------------------------------------------------------------------------- /mac/macnowplaying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/macnowplaying.h -------------------------------------------------------------------------------- /mac/macnowplaying.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/macnowplaying.mm -------------------------------------------------------------------------------- /mac/powermanagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/powermanagement.cpp -------------------------------------------------------------------------------- /mac/powermanagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mac/powermanagement.h -------------------------------------------------------------------------------- /models/actionmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/actionmodel.cpp -------------------------------------------------------------------------------- /models/actionmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/actionmodel.h -------------------------------------------------------------------------------- /models/browsemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/browsemodel.cpp -------------------------------------------------------------------------------- /models/browsemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/browsemodel.h -------------------------------------------------------------------------------- /models/devicesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/devicesmodel.cpp -------------------------------------------------------------------------------- /models/devicesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/devicesmodel.h -------------------------------------------------------------------------------- /models/localbrowsemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/localbrowsemodel.cpp -------------------------------------------------------------------------------- /models/localbrowsemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/localbrowsemodel.h -------------------------------------------------------------------------------- /models/mpdlibrarymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/mpdlibrarymodel.cpp -------------------------------------------------------------------------------- /models/mpdlibrarymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/mpdlibrarymodel.h -------------------------------------------------------------------------------- /models/mpdsearchmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/mpdsearchmodel.cpp -------------------------------------------------------------------------------- /models/mpdsearchmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/mpdsearchmodel.h -------------------------------------------------------------------------------- /models/musiclibraryitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryitem.cpp -------------------------------------------------------------------------------- /models/musiclibraryitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryitem.h -------------------------------------------------------------------------------- /models/musiclibraryitemalbum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryitemalbum.cpp -------------------------------------------------------------------------------- /models/musiclibraryitemalbum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryitemalbum.h -------------------------------------------------------------------------------- /models/musiclibraryitemartist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryitemartist.cpp -------------------------------------------------------------------------------- /models/musiclibraryitemartist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryitemartist.h -------------------------------------------------------------------------------- /models/musiclibraryitemroot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryitemroot.cpp -------------------------------------------------------------------------------- /models/musiclibraryitemroot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryitemroot.h -------------------------------------------------------------------------------- /models/musiclibraryitemsong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryitemsong.h -------------------------------------------------------------------------------- /models/musiclibrarymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibrarymodel.cpp -------------------------------------------------------------------------------- /models/musiclibrarymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibrarymodel.h -------------------------------------------------------------------------------- /models/musiclibraryproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryproxymodel.cpp -------------------------------------------------------------------------------- /models/musiclibraryproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/musiclibraryproxymodel.h -------------------------------------------------------------------------------- /models/playlistsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/playlistsmodel.cpp -------------------------------------------------------------------------------- /models/playlistsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/playlistsmodel.h -------------------------------------------------------------------------------- /models/playlistsproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/playlistsproxymodel.cpp -------------------------------------------------------------------------------- /models/playlistsproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/playlistsproxymodel.h -------------------------------------------------------------------------------- /models/playqueuemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/playqueuemodel.cpp -------------------------------------------------------------------------------- /models/playqueuemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/playqueuemodel.h -------------------------------------------------------------------------------- /models/playqueueproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/playqueueproxymodel.cpp -------------------------------------------------------------------------------- /models/playqueueproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/playqueueproxymodel.h -------------------------------------------------------------------------------- /models/proxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/proxymodel.cpp -------------------------------------------------------------------------------- /models/proxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/proxymodel.h -------------------------------------------------------------------------------- /models/roles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/roles.h -------------------------------------------------------------------------------- /models/searchmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/searchmodel.cpp -------------------------------------------------------------------------------- /models/searchmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/searchmodel.h -------------------------------------------------------------------------------- /models/searchproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/searchproxymodel.cpp -------------------------------------------------------------------------------- /models/searchproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/searchproxymodel.h -------------------------------------------------------------------------------- /models/sqllibrarymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/sqllibrarymodel.cpp -------------------------------------------------------------------------------- /models/sqllibrarymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/sqllibrarymodel.h -------------------------------------------------------------------------------- /models/streamsearchmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/streamsearchmodel.cpp -------------------------------------------------------------------------------- /models/streamsearchmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/streamsearchmodel.h -------------------------------------------------------------------------------- /models/streamsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/streamsmodel.cpp -------------------------------------------------------------------------------- /models/streamsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/streamsmodel.h -------------------------------------------------------------------------------- /models/streamsproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/streamsproxymodel.cpp -------------------------------------------------------------------------------- /models/streamsproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/models/streamsproxymodel.h -------------------------------------------------------------------------------- /mpd-interface/cuefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/cuefile.cpp -------------------------------------------------------------------------------- /mpd-interface/cuefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/cuefile.h -------------------------------------------------------------------------------- /mpd-interface/httpstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/httpstream.cpp -------------------------------------------------------------------------------- /mpd-interface/httpstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/httpstream.h -------------------------------------------------------------------------------- /mpd-interface/mpd.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpd.conf.template -------------------------------------------------------------------------------- /mpd-interface/mpdconnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpdconnection.cpp -------------------------------------------------------------------------------- /mpd-interface/mpdconnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpdconnection.h -------------------------------------------------------------------------------- /mpd-interface/mpdparseutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpdparseutils.cpp -------------------------------------------------------------------------------- /mpd-interface/mpdparseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpdparseutils.h -------------------------------------------------------------------------------- /mpd-interface/mpdstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpdstats.cpp -------------------------------------------------------------------------------- /mpd-interface/mpdstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpdstats.h -------------------------------------------------------------------------------- /mpd-interface/mpdstatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpdstatus.cpp -------------------------------------------------------------------------------- /mpd-interface/mpdstatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpdstatus.h -------------------------------------------------------------------------------- /mpd-interface/mpduser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpduser.cpp -------------------------------------------------------------------------------- /mpd-interface/mpduser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/mpduser.h -------------------------------------------------------------------------------- /mpd-interface/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/output.h -------------------------------------------------------------------------------- /mpd-interface/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/partition.h -------------------------------------------------------------------------------- /mpd-interface/playlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/playlist.h -------------------------------------------------------------------------------- /mpd-interface/song.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/song.cpp -------------------------------------------------------------------------------- /mpd-interface/song.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/song.h -------------------------------------------------------------------------------- /mpd-interface/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/mpd-interface/stream.h -------------------------------------------------------------------------------- /network/networkaccessmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/network/networkaccessmanager.cpp -------------------------------------------------------------------------------- /network/networkaccessmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/network/networkaccessmanager.h -------------------------------------------------------------------------------- /network/networkproxyfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/network/networkproxyfactory.cpp -------------------------------------------------------------------------------- /network/networkproxyfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/network/networkproxyfactory.h -------------------------------------------------------------------------------- /network/proxysettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/network/proxysettings.cpp -------------------------------------------------------------------------------- /network/proxysettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/network/proxysettings.h -------------------------------------------------------------------------------- /network/proxysettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/network/proxysettings.ui -------------------------------------------------------------------------------- /online/icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/icons/CMakeLists.txt -------------------------------------------------------------------------------- /online/icons/bbc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/icons/bbc.svg -------------------------------------------------------------------------------- /online/icons/cbc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/icons/cbc.svg -------------------------------------------------------------------------------- /online/icons/magnatune.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/icons/magnatune.svg -------------------------------------------------------------------------------- /online/icons/podcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/icons/podcasts.png -------------------------------------------------------------------------------- /online/icons/soundcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/icons/soundcloud.png -------------------------------------------------------------------------------- /online/jamendoservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/jamendoservice.cpp -------------------------------------------------------------------------------- /online/jamendoservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/jamendoservice.h -------------------------------------------------------------------------------- /online/jamendosettingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/jamendosettingsdialog.cpp -------------------------------------------------------------------------------- /online/jamendosettingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/jamendosettingsdialog.h -------------------------------------------------------------------------------- /online/magnatuneservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/magnatuneservice.cpp -------------------------------------------------------------------------------- /online/magnatuneservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/magnatuneservice.h -------------------------------------------------------------------------------- /online/magnatunesettingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/magnatunesettingsdialog.cpp -------------------------------------------------------------------------------- /online/magnatunesettingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/magnatunesettingsdialog.h -------------------------------------------------------------------------------- /online/onlinedbservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinedbservice.cpp -------------------------------------------------------------------------------- /online/onlinedbservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinedbservice.h -------------------------------------------------------------------------------- /online/onlinedbwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinedbwidget.cpp -------------------------------------------------------------------------------- /online/onlinedbwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinedbwidget.h -------------------------------------------------------------------------------- /online/onlinesearchservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinesearchservice.cpp -------------------------------------------------------------------------------- /online/onlinesearchservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinesearchservice.h -------------------------------------------------------------------------------- /online/onlinesearchwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinesearchwidget.cpp -------------------------------------------------------------------------------- /online/onlinesearchwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinesearchwidget.h -------------------------------------------------------------------------------- /online/onlineservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlineservice.cpp -------------------------------------------------------------------------------- /online/onlineservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlineservice.h -------------------------------------------------------------------------------- /online/onlineservicespage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlineservicespage.cpp -------------------------------------------------------------------------------- /online/onlineservicespage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlineservicespage.h -------------------------------------------------------------------------------- /online/onlinesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinesettings.cpp -------------------------------------------------------------------------------- /online/onlinesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinesettings.h -------------------------------------------------------------------------------- /online/onlinesettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/onlinesettings.ui -------------------------------------------------------------------------------- /online/opmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/opmlparser.cpp -------------------------------------------------------------------------------- /online/opmlparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/opmlparser.h -------------------------------------------------------------------------------- /online/podcast_directories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/podcast_directories.xml -------------------------------------------------------------------------------- /online/podcastsearchdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/podcastsearchdialog.cpp -------------------------------------------------------------------------------- /online/podcastsearchdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/podcastsearchdialog.h -------------------------------------------------------------------------------- /online/podcastservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/podcastservice.cpp -------------------------------------------------------------------------------- /online/podcastservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/podcastservice.h -------------------------------------------------------------------------------- /online/podcastsettingsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/podcastsettingsdialog.cpp -------------------------------------------------------------------------------- /online/podcastsettingsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/podcastsettingsdialog.h -------------------------------------------------------------------------------- /online/podcastwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/podcastwidget.cpp -------------------------------------------------------------------------------- /online/podcastwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/podcastwidget.h -------------------------------------------------------------------------------- /online/rssparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/rssparser.cpp -------------------------------------------------------------------------------- /online/rssparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/rssparser.h -------------------------------------------------------------------------------- /online/soundcloudservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/soundcloudservice.cpp -------------------------------------------------------------------------------- /online/soundcloudservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/online/soundcloudservice.h -------------------------------------------------------------------------------- /playlists/cantata-dynamic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/cantata-dynamic -------------------------------------------------------------------------------- /playlists/cantata-dynamic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/cantata-dynamic.conf -------------------------------------------------------------------------------- /playlists/cantata-dynamic.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/cantata-dynamic.service -------------------------------------------------------------------------------- /playlists/dynamicplaylists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/dynamicplaylists.cpp -------------------------------------------------------------------------------- /playlists/dynamicplaylists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/dynamicplaylists.h -------------------------------------------------------------------------------- /playlists/dynamicplaylistspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/dynamicplaylistspage.cpp -------------------------------------------------------------------------------- /playlists/dynamicplaylistspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/dynamicplaylistspage.h -------------------------------------------------------------------------------- /playlists/playlistproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/playlistproxymodel.cpp -------------------------------------------------------------------------------- /playlists/playlistproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/playlistproxymodel.h -------------------------------------------------------------------------------- /playlists/playlistrule.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/playlistrule.ui -------------------------------------------------------------------------------- /playlists/playlistruledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/playlistruledialog.cpp -------------------------------------------------------------------------------- /playlists/playlistruledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/playlistruledialog.h -------------------------------------------------------------------------------- /playlists/playlistrules.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/playlistrules.ui -------------------------------------------------------------------------------- /playlists/playlistrulesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/playlistrulesdialog.cpp -------------------------------------------------------------------------------- /playlists/playlistrulesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/playlistrulesdialog.h -------------------------------------------------------------------------------- /playlists/playlistspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/playlistspage.cpp -------------------------------------------------------------------------------- /playlists/playlistspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/playlistspage.h -------------------------------------------------------------------------------- /playlists/rulesplaylists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/rulesplaylists.cpp -------------------------------------------------------------------------------- /playlists/rulesplaylists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/rulesplaylists.h -------------------------------------------------------------------------------- /playlists/smartplaylists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/smartplaylists.cpp -------------------------------------------------------------------------------- /playlists/smartplaylists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/smartplaylists.h -------------------------------------------------------------------------------- /playlists/smartplaylistspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/smartplaylistspage.cpp -------------------------------------------------------------------------------- /playlists/smartplaylistspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/smartplaylistspage.h -------------------------------------------------------------------------------- /playlists/storedplaylistspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/storedplaylistspage.cpp -------------------------------------------------------------------------------- /playlists/storedplaylistspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/playlists/storedplaylistspage.h -------------------------------------------------------------------------------- /replaygain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/CMakeLists.txt -------------------------------------------------------------------------------- /replaygain/albumscanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/albumscanner.cpp -------------------------------------------------------------------------------- /replaygain/albumscanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/albumscanner.h -------------------------------------------------------------------------------- /replaygain/ffmpeginput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/ffmpeginput.cpp -------------------------------------------------------------------------------- /replaygain/ffmpeginput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/ffmpeginput.h -------------------------------------------------------------------------------- /replaygain/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/input.h -------------------------------------------------------------------------------- /replaygain/jobcontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/jobcontroller.cpp -------------------------------------------------------------------------------- /replaygain/jobcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/jobcontroller.h -------------------------------------------------------------------------------- /replaygain/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/main.cpp -------------------------------------------------------------------------------- /replaygain/mpg123input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/mpg123input.cpp -------------------------------------------------------------------------------- /replaygain/mpg123input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/mpg123input.h -------------------------------------------------------------------------------- /replaygain/replaygain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/replaygain.cpp -------------------------------------------------------------------------------- /replaygain/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/replaygain.h -------------------------------------------------------------------------------- /replaygain/rgdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/rgdialog.cpp -------------------------------------------------------------------------------- /replaygain/rgdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/rgdialog.h -------------------------------------------------------------------------------- /replaygain/tagreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/tagreader.cpp -------------------------------------------------------------------------------- /replaygain/tagreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/tagreader.h -------------------------------------------------------------------------------- /replaygain/trackscanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/trackscanner.cpp -------------------------------------------------------------------------------- /replaygain/trackscanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/replaygain/trackscanner.h -------------------------------------------------------------------------------- /screenshots/mainwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/screenshots/mainwindow.png -------------------------------------------------------------------------------- /scrobbling/pausabletimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/scrobbling/pausabletimer.cpp -------------------------------------------------------------------------------- /scrobbling/pausabletimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/scrobbling/pausabletimer.h -------------------------------------------------------------------------------- /scrobbling/scrobbler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/scrobbling/scrobbler.cpp -------------------------------------------------------------------------------- /scrobbling/scrobbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/scrobbling/scrobbler.h -------------------------------------------------------------------------------- /scrobbling/scrobblers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/scrobbling/scrobblers.xml -------------------------------------------------------------------------------- /scrobbling/scrobblinglove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/scrobbling/scrobblinglove.cpp -------------------------------------------------------------------------------- /scrobbling/scrobblinglove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/scrobbling/scrobblinglove.h -------------------------------------------------------------------------------- /scrobbling/scrobblingsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/scrobbling/scrobblingsettings.cpp -------------------------------------------------------------------------------- /scrobbling/scrobblingsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/scrobbling/scrobblingsettings.h -------------------------------------------------------------------------------- /scrobbling/scrobblingsettings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/scrobbling/scrobblingsettings.ui -------------------------------------------------------------------------------- /streams/icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/icons/CMakeLists.txt -------------------------------------------------------------------------------- /streams/icons/shoutcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/icons/shoutcast.svg -------------------------------------------------------------------------------- /streams/icons/station.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/icons/station.svg -------------------------------------------------------------------------------- /streams/icons/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/icons/stream.png -------------------------------------------------------------------------------- /streams/icons/tunein.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/icons/tunein.svg -------------------------------------------------------------------------------- /streams/streamdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/streamdialog.cpp -------------------------------------------------------------------------------- /streams/streamdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/streamdialog.h -------------------------------------------------------------------------------- /streams/streamfetcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/streamfetcher.cpp -------------------------------------------------------------------------------- /streams/streamfetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/streamfetcher.h -------------------------------------------------------------------------------- /streams/streamspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/streamspage.cpp -------------------------------------------------------------------------------- /streams/streamspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/streams/streamspage.h -------------------------------------------------------------------------------- /support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/CMakeLists.txt -------------------------------------------------------------------------------- /support/Cantata-FontAwesome-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/Cantata-FontAwesome-README -------------------------------------------------------------------------------- /support/Cantata-FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/Cantata-FontAwesome.ttf -------------------------------------------------------------------------------- /support/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/OFL.txt -------------------------------------------------------------------------------- /support/acceleratormanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/acceleratormanager.cpp -------------------------------------------------------------------------------- /support/acceleratormanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/acceleratormanager.h -------------------------------------------------------------------------------- /support/acceleratormanager_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/acceleratormanager_private.h -------------------------------------------------------------------------------- /support/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/action.cpp -------------------------------------------------------------------------------- /support/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/action.h -------------------------------------------------------------------------------- /support/actioncollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/actioncollection.cpp -------------------------------------------------------------------------------- /support/actioncollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/actioncollection.h -------------------------------------------------------------------------------- /support/buddylabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/buddylabel.cpp -------------------------------------------------------------------------------- /support/buddylabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/buddylabel.h -------------------------------------------------------------------------------- /support/capacitybar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/capacitybar.h -------------------------------------------------------------------------------- /support/combobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/combobox.cpp -------------------------------------------------------------------------------- /support/combobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/combobox.h -------------------------------------------------------------------------------- /support/configdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/configdialog.cpp -------------------------------------------------------------------------------- /support/configdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/configdialog.h -------------------------------------------------------------------------------- /support/configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/configuration.cpp -------------------------------------------------------------------------------- /support/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/configuration.h -------------------------------------------------------------------------------- /support/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/dialog.cpp -------------------------------------------------------------------------------- /support/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/dialog.h -------------------------------------------------------------------------------- /support/fancytabwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/fancytabwidget.cpp -------------------------------------------------------------------------------- /support/fancytabwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/fancytabwidget.h -------------------------------------------------------------------------------- /support/flattoolbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/flattoolbutton.cpp -------------------------------------------------------------------------------- /support/flattoolbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/flattoolbutton.h -------------------------------------------------------------------------------- /support/globalstatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/globalstatic.h -------------------------------------------------------------------------------- /support/gtkstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/gtkstyle.cpp -------------------------------------------------------------------------------- /support/gtkstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/gtkstyle.h -------------------------------------------------------------------------------- /support/icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/icon.cpp -------------------------------------------------------------------------------- /support/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/icon.h -------------------------------------------------------------------------------- /support/inputdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/inputdialog.cpp -------------------------------------------------------------------------------- /support/inputdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/inputdialog.h -------------------------------------------------------------------------------- /support/keysequencewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/keysequencewidget.cpp -------------------------------------------------------------------------------- /support/keysequencewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/keysequencewidget.h -------------------------------------------------------------------------------- /support/kmessagewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/kmessagewidget.cpp -------------------------------------------------------------------------------- /support/kmessagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/kmessagewidget.h -------------------------------------------------------------------------------- /support/lineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/lineedit.cpp -------------------------------------------------------------------------------- /support/lineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/lineedit.h -------------------------------------------------------------------------------- /support/messagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/messagebox.cpp -------------------------------------------------------------------------------- /support/messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/messagebox.h -------------------------------------------------------------------------------- /support/messagewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/messagewidget.cpp -------------------------------------------------------------------------------- /support/messagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/messagewidget.h -------------------------------------------------------------------------------- /support/monoicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/monoicon.cpp -------------------------------------------------------------------------------- /support/monoicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/monoicon.h -------------------------------------------------------------------------------- /support/osxstyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/osxstyle.cpp -------------------------------------------------------------------------------- /support/osxstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/osxstyle.h -------------------------------------------------------------------------------- /support/pagewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/pagewidget.cpp -------------------------------------------------------------------------------- /support/pagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/pagewidget.h -------------------------------------------------------------------------------- /support/pathrequester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/pathrequester.cpp -------------------------------------------------------------------------------- /support/pathrequester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/pathrequester.h -------------------------------------------------------------------------------- /support/proxystyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/proxystyle.cpp -------------------------------------------------------------------------------- /support/proxystyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/proxystyle.h -------------------------------------------------------------------------------- /support/shortcutsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/shortcutsmodel.cpp -------------------------------------------------------------------------------- /support/shortcutsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/shortcutsmodel.h -------------------------------------------------------------------------------- /support/shortcutssettingswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/shortcutssettingswidget.cpp -------------------------------------------------------------------------------- /support/shortcutssettingswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/shortcutssettingswidget.h -------------------------------------------------------------------------------- /support/shortcutssettingswidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/shortcutssettingswidget.ui -------------------------------------------------------------------------------- /support/spinner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/spinner.cpp -------------------------------------------------------------------------------- /support/spinner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/spinner.h -------------------------------------------------------------------------------- /support/squeezedtextlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/squeezedtextlabel.cpp -------------------------------------------------------------------------------- /support/squeezedtextlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/squeezedtextlabel.h -------------------------------------------------------------------------------- /support/support.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/support.qrc -------------------------------------------------------------------------------- /support/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/thread.cpp -------------------------------------------------------------------------------- /support/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/thread.h -------------------------------------------------------------------------------- /support/urllabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/urllabel.cpp -------------------------------------------------------------------------------- /support/urllabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/urllabel.h -------------------------------------------------------------------------------- /support/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/utils.cpp -------------------------------------------------------------------------------- /support/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/utils.h -------------------------------------------------------------------------------- /support/windowmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/windowmanager.cpp -------------------------------------------------------------------------------- /support/windowmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/support/windowmanager.h -------------------------------------------------------------------------------- /tags/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/CMakeLists.txt -------------------------------------------------------------------------------- /tags/filetyperesolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/filetyperesolver.cpp -------------------------------------------------------------------------------- /tags/filetyperesolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/filetyperesolver.h -------------------------------------------------------------------------------- /tags/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/main.cpp -------------------------------------------------------------------------------- /tags/tag_fixes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/tag_fixes.xml -------------------------------------------------------------------------------- /tags/tageditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/tageditor.cpp -------------------------------------------------------------------------------- /tags/tageditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/tageditor.h -------------------------------------------------------------------------------- /tags/tageditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/tageditor.ui -------------------------------------------------------------------------------- /tags/taghelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/taghelper.cpp -------------------------------------------------------------------------------- /tags/taghelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/taghelper.h -------------------------------------------------------------------------------- /tags/taghelperiface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/taghelperiface.cpp -------------------------------------------------------------------------------- /tags/taghelperiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/taghelperiface.h -------------------------------------------------------------------------------- /tags/tags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/tags.cpp -------------------------------------------------------------------------------- /tags/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/tags.h -------------------------------------------------------------------------------- /tags/trackorganiser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/trackorganiser.cpp -------------------------------------------------------------------------------- /tags/trackorganiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/trackorganiser.h -------------------------------------------------------------------------------- /tags/trackorganiser.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/tags/trackorganiser.ui -------------------------------------------------------------------------------- /translations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/CMakeLists.txt -------------------------------------------------------------------------------- /translations/blank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/blank.ts -------------------------------------------------------------------------------- /translations/cantata_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_cs.ts -------------------------------------------------------------------------------- /translations/cantata_da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_da.ts -------------------------------------------------------------------------------- /translations/cantata_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_de.ts -------------------------------------------------------------------------------- /translations/cantata_en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_en_GB.ts -------------------------------------------------------------------------------- /translations/cantata_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_es.ts -------------------------------------------------------------------------------- /translations/cantata_fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_fi.ts -------------------------------------------------------------------------------- /translations/cantata_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_fr.ts -------------------------------------------------------------------------------- /translations/cantata_hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_hu.ts -------------------------------------------------------------------------------- /translations/cantata_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_it.ts -------------------------------------------------------------------------------- /translations/cantata_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_ja.ts -------------------------------------------------------------------------------- /translations/cantata_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_ko.ts -------------------------------------------------------------------------------- /translations/cantata_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_nl.ts -------------------------------------------------------------------------------- /translations/cantata_pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_pl.ts -------------------------------------------------------------------------------- /translations/cantata_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_pt_BR.ts -------------------------------------------------------------------------------- /translations/cantata_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_ru.ts -------------------------------------------------------------------------------- /translations/cantata_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/cantata_zh_CN.ts -------------------------------------------------------------------------------- /translations/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/translations/update.sh -------------------------------------------------------------------------------- /widgets/actionitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/actionitemdelegate.cpp -------------------------------------------------------------------------------- /widgets/actionitemdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/actionitemdelegate.h -------------------------------------------------------------------------------- /widgets/actionlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/actionlabel.cpp -------------------------------------------------------------------------------- /widgets/actionlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/actionlabel.h -------------------------------------------------------------------------------- /widgets/autohidingsplitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/autohidingsplitter.cpp -------------------------------------------------------------------------------- /widgets/autohidingsplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/autohidingsplitter.h -------------------------------------------------------------------------------- /widgets/basicitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/basicitemdelegate.cpp -------------------------------------------------------------------------------- /widgets/basicitemdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/basicitemdelegate.h -------------------------------------------------------------------------------- /widgets/categorizedview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/categorizedview.cpp -------------------------------------------------------------------------------- /widgets/categorizedview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/categorizedview.h -------------------------------------------------------------------------------- /widgets/completioncombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/completioncombo.h -------------------------------------------------------------------------------- /widgets/coverwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/coverwidget.cpp -------------------------------------------------------------------------------- /widgets/coverwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/coverwidget.h -------------------------------------------------------------------------------- /widgets/emptyspinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/emptyspinbox.h -------------------------------------------------------------------------------- /widgets/genrecombo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/genrecombo.cpp -------------------------------------------------------------------------------- /widgets/genrecombo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/genrecombo.h -------------------------------------------------------------------------------- /widgets/groupedview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/groupedview.cpp -------------------------------------------------------------------------------- /widgets/groupedview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/groupedview.h -------------------------------------------------------------------------------- /widgets/icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/icons.cpp -------------------------------------------------------------------------------- /widgets/icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/icons.h -------------------------------------------------------------------------------- /widgets/itemview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/itemview.cpp -------------------------------------------------------------------------------- /widgets/itemview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/itemview.h -------------------------------------------------------------------------------- /widgets/itemview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/itemview.ui -------------------------------------------------------------------------------- /widgets/listview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/listview.cpp -------------------------------------------------------------------------------- /widgets/listview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/listview.h -------------------------------------------------------------------------------- /widgets/menubutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/menubutton.cpp -------------------------------------------------------------------------------- /widgets/menubutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/menubutton.h -------------------------------------------------------------------------------- /widgets/messageoverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/messageoverlay.cpp -------------------------------------------------------------------------------- /widgets/messageoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/messageoverlay.h -------------------------------------------------------------------------------- /widgets/mirrormenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/mirrormenu.cpp -------------------------------------------------------------------------------- /widgets/mirrormenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/mirrormenu.h -------------------------------------------------------------------------------- /widgets/multipagewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/multipagewidget.cpp -------------------------------------------------------------------------------- /widgets/multipagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/multipagewidget.h -------------------------------------------------------------------------------- /widgets/notelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/notelabel.cpp -------------------------------------------------------------------------------- /widgets/notelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/notelabel.h -------------------------------------------------------------------------------- /widgets/nowplayingwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/nowplayingwidget.cpp -------------------------------------------------------------------------------- /widgets/nowplayingwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/nowplayingwidget.h -------------------------------------------------------------------------------- /widgets/playqueuesearchwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/playqueuesearchwidget.h -------------------------------------------------------------------------------- /widgets/playqueueview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/playqueueview.cpp -------------------------------------------------------------------------------- /widgets/playqueueview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/playqueueview.h -------------------------------------------------------------------------------- /widgets/ratingwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/ratingwidget.cpp -------------------------------------------------------------------------------- /widgets/ratingwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/ratingwidget.h -------------------------------------------------------------------------------- /widgets/searchwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/searchwidget.cpp -------------------------------------------------------------------------------- /widgets/searchwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/searchwidget.h -------------------------------------------------------------------------------- /widgets/selectorlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/selectorlabel.cpp -------------------------------------------------------------------------------- /widgets/selectorlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/selectorlabel.h -------------------------------------------------------------------------------- /widgets/singlepagewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/singlepagewidget.cpp -------------------------------------------------------------------------------- /widgets/singlepagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/singlepagewidget.h -------------------------------------------------------------------------------- /widgets/sizegrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/sizegrip.cpp -------------------------------------------------------------------------------- /widgets/sizegrip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/sizegrip.h -------------------------------------------------------------------------------- /widgets/songdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/songdialog.cpp -------------------------------------------------------------------------------- /widgets/songdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/songdialog.h -------------------------------------------------------------------------------- /widgets/spacerwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/spacerwidget.cpp -------------------------------------------------------------------------------- /widgets/spacerwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/spacerwidget.h -------------------------------------------------------------------------------- /widgets/stackedpagewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/stackedpagewidget.cpp -------------------------------------------------------------------------------- /widgets/stackedpagewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/stackedpagewidget.h -------------------------------------------------------------------------------- /widgets/statelabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/statelabel.h -------------------------------------------------------------------------------- /widgets/stretchheaderview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/stretchheaderview.cpp -------------------------------------------------------------------------------- /widgets/stretchheaderview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/stretchheaderview.h -------------------------------------------------------------------------------- /widgets/tableview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/tableview.cpp -------------------------------------------------------------------------------- /widgets/tableview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/tableview.h -------------------------------------------------------------------------------- /widgets/tagspinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/tagspinbox.cpp -------------------------------------------------------------------------------- /widgets/tagspinbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/tagspinbox.h -------------------------------------------------------------------------------- /widgets/textbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/textbrowser.cpp -------------------------------------------------------------------------------- /widgets/textbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/textbrowser.h -------------------------------------------------------------------------------- /widgets/thinsplitterhandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/thinsplitterhandle.cpp -------------------------------------------------------------------------------- /widgets/thinsplitterhandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/thinsplitterhandle.h -------------------------------------------------------------------------------- /widgets/titlewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/titlewidget.cpp -------------------------------------------------------------------------------- /widgets/titlewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/titlewidget.h -------------------------------------------------------------------------------- /widgets/toolbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/toolbutton.cpp -------------------------------------------------------------------------------- /widgets/toolbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/toolbutton.h -------------------------------------------------------------------------------- /widgets/treeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/treeview.cpp -------------------------------------------------------------------------------- /widgets/treeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/treeview.h -------------------------------------------------------------------------------- /widgets/volumecontrol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/volumecontrol.cpp -------------------------------------------------------------------------------- /widgets/volumecontrol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/volumecontrol.h -------------------------------------------------------------------------------- /widgets/volumeslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/volumeslider.cpp -------------------------------------------------------------------------------- /widgets/volumeslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/volumeslider.h -------------------------------------------------------------------------------- /widgets/wizardpage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/wizardpage.cpp -------------------------------------------------------------------------------- /widgets/wizardpage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/widgets/wizardpage.h -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/Cantata README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/Cantata README.txt -------------------------------------------------------------------------------- /windows/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/LICENSE.txt -------------------------------------------------------------------------------- /windows/cantata.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/cantata.ico -------------------------------------------------------------------------------- /windows/cantata.nsi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/cantata.nsi.cmake -------------------------------------------------------------------------------- /windows/cantataico.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/cantataico.rc -------------------------------------------------------------------------------- /windows/createicon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/createicon.sh -------------------------------------------------------------------------------- /windows/icu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/icu/README -------------------------------------------------------------------------------- /windows/icu/icudt52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/icu/icudt52.dll -------------------------------------------------------------------------------- /windows/thumbnailtoolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/thumbnailtoolbar.cpp -------------------------------------------------------------------------------- /windows/thumbnailtoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenuks/cantata/HEAD/windows/thumbnailtoolbar.h --------------------------------------------------------------------------------