// -*- 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 WINDOW_BUTTONS_H #define WINDOW_BUTTONS_H #include #include #include "unity-shared/UBusWrapper.h" #include "unity-shared/Introspectable.h" #include "unity-shared/UnitySettings.h" namespace unity { class WindowButtons : public nux::HLayout, public debug::Introspectable { // These are the [close][minimize][restore] buttons on the panel when there // is a maximized window public: WindowButtons(); void SetOpacity(double opacity); double GetOpacity(); void SetFocusedState(bool focused); bool GetFocusedState(); void SetControlledWindow(Window xid); Window GetControlledWindow(); void SetMonitor(int monitor); int GetMonitor(); virtual nux::Area* FindAreaUnderMouse(const nux::Point& mouse_pos, nux::NuxEventType event_type); sigc::signal close_clicked; sigc::signal minimize_clicked; sigc::signal restore_clicked; sigc::signal maximize_clicked; sigc::signal mouse_move; sigc::signal mouse_enter; sigc::signal mouse_leave; protected: std::string GetName() const; void AddProperties(GVariantBuilder* builder); private: void OnCloseClicked(nux::Button *button); void OnMinimizeClicked(nux::Button *button); void OnRestoreClicked(nux::Button *button); void OnMaximizeClicked(nux::Button *button); void OnOverlayShown(GVariant* data); void OnOverlayHidden(GVariant* data); void OnDashSettingsUpdated(FormFactor form_factor); int monitor_; double opacity_; bool focused_; Window window_xid_; std::string active_overlay_; UBusManager ubus_manager_; }; } #endif