~3v1n0/unity/light-shortcuts

« back to all changes in this revision

Viewing changes to launcher/SingleMonitorLauncherIcon.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) 2012 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: Marco Trevisan (Treviño) <3v1n0@ubuntu.com>
18
 
 */
19
 
 
20
 
#ifndef UNITYSHELL_SINGLE_MONITOR_LAUNCHER_ICON_H
21
 
#define UNITYSHELL_SINGLE_MONITOR_LAUNCHER_ICON_H
22
 
 
23
 
#include "SimpleLauncherIcon.h"
24
 
 
25
 
namespace unity
26
 
{
27
 
namespace launcher
28
 
{
29
 
 
30
 
class SingleMonitorLauncherIcon : public SimpleLauncherIcon
31
 
{
32
 
 
33
 
public:
34
 
  SingleMonitorLauncherIcon(IconType type, int monitor);
35
 
 
36
 
void SetMonitor(int monitor);
37
 
int GetMonitor();
38
 
 
39
 
protected:
40
 
  std::string GetName() const;
41
 
  void AddProperties(GVariantBuilder* builder);
42
 
 
43
 
private:
44
 
  void UpdateMonitor();
45
 
 
46
 
  int monitor_;
47
 
};
48
 
 
49
 
}
50
 
}
51
 
 
52
 
#endif // UNITYSHELL_SINGLE_MONITOR_LAUNCHER_ICON_H