1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
/*
* ion/ioncore/screen-notify.h
*
* Copyright (c) Tuomo Valkonen 1999-2007.
*
* See the included file LICENSE for details.
*/
#ifndef ION_IONCORE_SCREEN_NOTIFY_H
#define ION_IONCORE_SCREEN_NOTIFY_H
#include "common.h"
#include "region.h"
#include "screen.h"
void screen_unnotify_infowin(WScreen *scr);
void screen_unnotify_notifywin(WScreen *scr);
void screen_unnotify_workspace_indicatorwin(void); // there's just one indicator
void screen_managed_notify(WScreen *scr, WRegion *reg, WRegionNotify how);
void screen_update_infowin(WScreen *scr);
void screen_update_notifywin(WScreen *scr);
void screen_update_workspace_indicatorwin(WRegion* reg_focused);
void screen_unnotify_if_screen( WScreen* reg);
void screen_unnotify_if_workspace( WGroupWS* reg);
extern void ioncore_screen_activity_notify(WRegion *reg, WRegionNotify how);
#endif /* ION_IONCORE_SCREEN_NOTIFY_H */
|