/* * Copyright (C) 2010 Canonical Ltd * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Authored by: Neil Jagdish Patel * Andrea Azzarone */ #ifndef UNITYSHELL_DEVICE_LAUNCHER_SECTION_H #define UNITYSHELL_DEVICE_LAUNCHER_SECTION_H #include #include #include "AbstractVolumeMonitorWrapper.h" #include "DevicesSettings.h" #include "DeviceNotificationDisplay.h" #include "VolumeLauncherIcon.h" #include "unity-shared/FileManager.h" namespace unity { namespace launcher { class DeviceLauncherSection : public sigc::trackable { public: typedef std::shared_ptr Ptr; DeviceLauncherSection(AbstractVolumeMonitorWrapper::Ptr const& volume_monitor = nullptr, DevicesSettings::Ptr const& devices_settings = nullptr, DeviceNotificationDisplay::Ptr const& notifications = nullptr); virtual ~DeviceLauncherSection() = default; std::vector GetIcons() const; sigc::signal icon_added; private: void PopulateEntries(); void OnVolumeAdded(glib::Object const& volume); void OnVolumeRemoved(glib::Object const& volume); void TryToCreateAndAddIcon(glib::Object volume); std::map map_; AbstractVolumeMonitorWrapper::Ptr monitor_; DevicesSettings::Ptr devices_settings_; FileManager::Ptr file_manager_; DeviceNotificationDisplay::Ptr device_notification_display_; }; } } #endif