~3v1n0/unity/light-shortcuts

« back to all changes in this revision

Viewing changes to launcher/TooltipManager.h

  • Committer: Marco Trevisan (Treviño)
  • Date: 2013-04-26 12:41:09 UTC
  • Revision ID: mail@3v1n0.net-20130426124109-t3b2shjah2omiqa2
Unity: Remove all the views, but the Shortcuts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
2
 
/*
3
 
 * Copyright (C) 2013 Canonical Ltd
4
 
 *
5
 
 * This program is free software: you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License version 3 as
7
 
 * published by the Free Software Foundation.
8
 
 *
9
 
 * This program is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 * GNU General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU General Public License
15
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 
 *
17
 
 * Authored by: Jacob Edwards <j.johan.edwards@gmail.com>
18
 
 *              Andrea Azzarone <andrea.azzarone@canonical.com>
19
 
 */
20
 
 
21
 
#ifndef LAUNCHER_TOOLTIP_MANAGER_H
22
 
#define LAUNCHER_TOOLTIP_MANAGER_H
23
 
 
24
 
#include <boost/noncopyable.hpp>
25
 
#include <UnityCore/GLibSource.h>
26
 
 
27
 
#include "AbstractLauncherIcon.h"
28
 
 
29
 
namespace unity
30
 
{
31
 
namespace launcher
32
 
{
33
 
 
34
 
class TooltipManager : public boost::noncopyable
35
 
{
36
 
public:
37
 
  TooltipManager();
38
 
 
39
 
  void SetHover(bool hovered);
40
 
  void MouseMoved(AbstractLauncherIcon::Ptr const& icon_under_mouse);
41
 
  void IconClicked();
42
 
 
43
 
private:
44
 
  void Reset();
45
 
  void ResetTimer(AbstractLauncherIcon::Ptr const& icon_under_mouse);
46
 
  void StopTimer();
47
 
 
48
 
  bool skip_timeout_;
49
 
  AbstractLauncherIcon::Ptr icon_;
50
 
  glib::Source::UniquePtr hover_timer_;
51
 
};
52
 
 
53
 
}
54
 
}
55
 
 
56
 
#endif