294702d3f1
Cut down on boilerplate by using the (no longer that) new helper macros. We don't care about breaking ABI in private libraries, so use G_DECLARE_FINAL_TYPE even where the class struct used to be exposed in the header, except for types we inherit from ourselves (obviously) or where the class exposes any vfuncs (where changes could affect inheritance in extensions).
23 lines
726 B
C
23 lines
726 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,
|
|
MetaScreen *screen,
|
|
StWidget *theme_widget);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __SHELL_TRAY_MANAGER_H__ */
|