~brandontschaefer/unity/fix-915828

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/SimpleLauncherIcon.cpp

  • Committer: Brandon Schaefer
  • Date: 2012-02-02 04:05:22 UTC
  • mfrom: (1827.1.59 unity)
  • Revision ID: brandontschaefer@gmail.com-20120202040522-r86246d1fxmclh4p
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 * Authored by: Jason Smith <jason.smith@canonical.com>
18
18
 */
19
19
 
 
20
#ifndef UNITY_SIMPLELAUNCHERICON_H
 
21
#define UNITY_SIMPLELAUNCHERICON_H
 
22
 
20
23
#include <NuxCore/Logger.h>
21
24
#include <Nux/Nux.h>
22
25
#include <Nux/BaseWindow.h>
23
26
 
24
27
#include "SimpleLauncherIcon.h"
25
 
#include "Launcher.h"
26
28
#include "PluginAdapter.h"
27
29
 
28
30
#include "ubus-server.h"
38
40
  nux::logging::Logger logger("unity.dash.CategoryViewGrid");
39
41
}
40
42
 
41
 
SimpleLauncherIcon::SimpleLauncherIcon(Launcher* IconManager)
42
 
  : LauncherIcon(IconManager)
 
43
SimpleLauncherIcon::SimpleLauncherIcon()
 
44
  : LauncherIcon()
43
45
  , icon_name("", sigc::mem_fun(this, &SimpleLauncherIcon::SetIconName))
44
46
  , theme_changed_id_(0)
45
47
{
65
67
    g_signal_handler_disconnect(gtk_icon_theme_get_default(), theme_changed_id_);
66
68
}
67
69
 
68
 
void SimpleLauncherIcon::OnMouseDown(int button)
69
 
{
70
 
}
71
 
 
72
 
void SimpleLauncherIcon::OnMouseUp(int button)
73
 
{
74
 
}
75
 
 
76
 
void SimpleLauncherIcon::OnMouseClick(int button)
77
 
{
78
 
}
79
 
 
80
 
void SimpleLauncherIcon::OnMouseEnter()
81
 
{
82
 
}
83
 
 
84
 
void SimpleLauncherIcon::OnMouseLeave()
 
70
void SimpleLauncherIcon::OnMouseDown(int button, int monitor)
 
71
{
 
72
}
 
73
 
 
74
void SimpleLauncherIcon::OnMouseUp(int button, int monitor)
 
75
{
 
76
}
 
77
 
 
78
void SimpleLauncherIcon::OnMouseClick(int button, int monitor)
 
79
{
 
80
}
 
81
 
 
82
void SimpleLauncherIcon::OnMouseEnter(int monitor)
 
83
{
 
84
}
 
85
 
 
86
void SimpleLauncherIcon::OnMouseLeave(int monitor)
85
87
{
86
88
}
87
89
 
142
144
 
143
145
} // namespace launcher
144
146
} // namespace unity
 
147
 
 
148
#endif
 
 
b'\\ No newline at end of file'