2008-11-14 12:21:56 -05:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
#ifndef __SHELL_TRAY_MANAGER_H__
|
|
|
|
#define __SHELL_TRAY_MANAGER_H__
|
|
|
|
|
|
|
|
#include <clutter/clutter.h>
|
2011-01-31 12:48:18 -05:00
|
|
|
#include "st.h"
|
2008-11-14 12:21:56 -05:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2015-09-24 14:07:44 -04:00
|
|
|
#define SHELL_TYPE_TRAY_MANAGER (shell_tray_manager_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (ShellTrayManager, shell_tray_manager,
|
|
|
|
SHELL, TRAY_MANAGER, GObject)
|
2008-11-14 12:21:56 -05:00
|
|
|
|
|
|
|
ShellTrayManager *shell_tray_manager_new (void);
|
2013-02-12 17:31:38 -05:00
|
|
|
void shell_tray_manager_manage_screen (ShellTrayManager *manager,
|
|
|
|
StWidget *theme_widget);
|
2020-03-04 17:26:15 -05:00
|
|
|
void shell_tray_manager_unmanage_screen (ShellTrayManager *manager);
|
2008-11-14 12:21:56 -05:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __SHELL_TRAY_MANAGER_H__ */
|