// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*- /* * 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: Jason Smith * Tim Penhey */ #ifndef LAUNCHERCONTROLLER_H #define LAUNCHERCONTROLLER_H #include #include #include #include "LauncherOptions.h" #include "SoftwareCenterLauncherIcon.h" namespace unity { namespace launcher { class AbstractLauncherIcon; class Launcher; class LauncherModel; class Controller : public unity::debug::Introspectable, public sigc::trackable { public: typedef std::shared_ptr Ptr; typedef std::vector > LauncherList; nux::Property options; nux::Property multiple_launchers; Controller(Display* display); ~Controller(); Launcher& launcher() const; LauncherList& launchers() const; Window LauncherWindowId(int launcher) const; Window KeyNavLauncherInputWindowId() const; void UpdateNumWorkspaces(int workspaces); std::vector GetAllShortcuts() const; std::vector GetAltTabIcons(bool current) const; void PushToFront(); void SetShowDesktopIcon(bool show_desktop_icon); bool AboutToShowDash(int was_tap, int when) const; void HandleLauncherKeyPress(int when); void HandleLauncherKeyRelease(bool was_tap, int when); bool HandleLauncherKeyEvent(Display *display, unsigned int key_sym, unsigned long key_code, unsigned long key_state, char* key_string); void KeyNavActivate(); void KeyNavGrab(); void KeyNavTerminate(bool activate = true); void KeyNavNext(); void KeyNavPrevious(); bool KeyNavIsActive() const; bool IsOverlayOpen() const; protected: // Introspectable methods std::string GetName() const; void AddProperties(GVariantBuilder* builder); private: class Impl; Impl* pimpl; }; } } #endif // LAUNCHERCONTROLLER_H