// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*- /* * Copyright (C) 2010-2012 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 * Marco Trevisan (TreviƱo) <3v1n0@ubuntu.com> */ #ifndef PANEL_INDICATOR_OBJECT_ENTRY_VIEW_H #define PANEL_INDICATOR_OBJECT_ENTRY_VIEW_H #include #include #include #include #include #include #include #include #include "unity-shared/EMConverter.h" #include "unity-shared/Introspectable.h" namespace unity { class PanelIndicatorEntryView : public nux::TextureArea, public debug::Introspectable { public: enum IndicatorEntryType { INDICATOR, MENU, DROP_DOWN, OTHER }; typedef nux::ObjectPtr Ptr; PanelIndicatorEntryView(indicator::Entry::Ptr const& proxy, int padding = 5, IndicatorEntryType type = INDICATOR); IndicatorEntryType GetType() const; indicator::Entry::Ptr const& GetEntry() const { return proxy_; } std::string GetEntryID() const; int GetEntryPriority() const; std::string GetLabel() const; bool IsLabelVisible() const; bool IsLabelSensitive() const; bool IsIconVisible() const; bool IsIconSensitive() const; void Activate(int button = 1); void Unactivate(); void GetGeometryForSync(indicator::EntryLocationMap& locations); bool GetShowNow() const; bool IsSensitive() const; bool IsActive() const; bool IsVisible(); void SetDisabled(bool disabled); bool IsDisabled(); void SetOpacity(double alpha); double GetOpacity(); void SetFocusedState(bool focused); bool IsFocused() const; void OverlayShown(); void OverlayHidden(); virtual void SetMonitor(int monitor); sigc::signal active_changed; sigc::signal refreshed; sigc::signal show_now_changed; protected: std::string GetName() const; void AddProperties(debug::IntrospectionData&); virtual void Draw(nux::GraphicsEngine& GfxContext, bool force_draw); virtual void DrawEntryContent(cairo_t* cr, unsigned int width, unsigned int height, glib::Object const& pixbuf, bool scalable, glib::Object const& layout); void Refresh(); void SetActiveState(bool active, int button); virtual void ShowMenu(int button = 1); indicator::Entry::Ptr proxy_; private: void OnMouseDown(int x, int y, long button_flags, long key_flags); void OnMouseUp(int x, int y, long button_flags, long key_flags); void OnMouseWheel(int x, int y, int delta, unsigned long mouse_state, unsigned long key_state); void OnActiveChanged(bool is_active); glib::Object MakePixbuf(int size); IndicatorEntryType type_; nux::ObjectPtr entry_texture_; nux::Geometry cached_geo_; glib::Signal icon_theme_changed_; int monitor_; double opacity_; bool draw_active_; bool overlay_showing_; bool disabled_; bool focused_; int padding_; EMConverter::Ptr cv_; }; } #endif // PANEL_INDICATOR_OBJECT_ENTRY_VIEW_H