File: screen-notify.h

package info (click to toggle)
notion 4.0.2%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,676 kB
  • sloc: ansic: 47,508; sh: 2,096; makefile: 603; perl: 270
file content (31 lines) | stat: -rw-r--r-- 886 bytes parent folder | download | duplicates (3)
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 */