2010-09-07 22:27:08 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef __SHELL_TRAY_ICON_H__
|
|
|
|
#define __SHELL_TRAY_ICON_H__
|
|
|
|
|
|
|
|
#include "shell-gtk-embed.h"
|
|
|
|
|
2015-09-24 14:07:44 -04:00
|
|
|
#define SHELL_TYPE_TRAY_ICON (shell_tray_icon_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (ShellTrayIcon, shell_tray_icon,
|
|
|
|
SHELL, TRAY_ICON, ShellGtkEmbed)
|
2010-09-07 22:27:08 -04:00
|
|
|
|
|
|
|
ClutterActor *shell_tray_icon_new (ShellEmbeddedWindow *window);
|
|
|
|
|
2011-01-13 15:04:37 -05:00
|
|
|
void shell_tray_icon_click (ShellTrayIcon *icon,
|
|
|
|
ClutterEvent *event);
|
|
|
|
|
2010-09-07 22:27:08 -04:00
|
|
|
#endif /* __SHELL_TRAY_ICON_H__ */
|