// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*- /* * Copyright (C) 2011 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: Jason Smith */ #ifndef UNITYSHELL_BFBLAUNCHERICON_H #define UNITYSHELL_BFBLAUNCHERICON_H #include #include #include #include "LauncherOptions.h" #include "SimpleLauncherIcon.h" #include "unity-shared/UBusWrapper.h" namespace unity { namespace launcher { class BFBLauncherIcon : public SimpleLauncherIcon { public: BFBLauncherIcon(); virtual nux::Color BackgroundColor() const; virtual nux::Color GlowColor(); void ActivateLauncherIcon(ActionArg arg); void SetHideMode(LauncherHideMode hide_mode); protected: MenuItemsVector GetMenus(); std::string GetName() const; private: void OnOverlayShown(GVariant *data, bool visible); void OnMenuitemActivated(DbusmenuMenuitem* item, int time, std::string const& scope_id); void UpdateDefaultSearchText(); void UpdateIcon(); nux::Color background_color_; dash::GSettingsScopesReader::Ptr reader_; LauncherHideMode launcher_hide_mode_; UBusManager ubus_manager_; glib::SignalManager signals_; }; } } #endif // UNITYSHELL_BFBLAUNCHERICON_H