// -*- 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/Introspectable.h" #include "unity-shared/UBusWrapper.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(); nux::Property monitor; nux::Property controlled_window; nux::Property opacity; nux::Property focused; bool IsMouseOwner(); void UpdateDPIChanged(); 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(debug::IntrospectionData&); 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 OnSpreadInitiate(); void OnSpreadTerminate(); void OnDashSettingsUpdated(FormFactor form_factor); void OnControlledWindowChanged(Window xid); void ResetNormalButtonState(); bool OpacitySetter(double& target, double new_value); void OnMonitorChanged(int monitor); std::string active_overlay_; UBusManager ubus_manager_; }; } #endif