47ea10b7c9
Remove any usage of MetaScreen, as it has been removed from libmutter in the API version 3. The corresponding functionality has been moved into three different places: MetaDisplay, MetaX11Display (for X11 specific functionality) and MetaWorkspaceManager. https://bugzilla.gnome.org/show_bug.cgi?id=759538
22 lines
648 B
C
22 lines
648 B
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef __SHELL_TRAY_MANAGER_H__
|
|
#define __SHELL_TRAY_MANAGER_H__
|
|
|
|
#include <clutter/clutter.h>
|
|
#include "st.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define SHELL_TYPE_TRAY_MANAGER (shell_tray_manager_get_type ())
|
|
G_DECLARE_FINAL_TYPE (ShellTrayManager, shell_tray_manager,
|
|
SHELL, TRAY_MANAGER, GObject)
|
|
|
|
ShellTrayManager *shell_tray_manager_new (void);
|
|
void shell_tray_manager_manage_screen (ShellTrayManager *manager,
|
|
StWidget *theme_widget);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __SHELL_TRAY_MANAGER_H__ */
|