summaryrefslogtreecommitdiff
path: root/src/xwindow.h
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@gnugeneration.com>2017-03-22 18:36:54 -0700
committerVito Caputo <vcaputo@gnugeneration.com>2017-03-25 16:51:17 -0700
commit36daa7b60f0545a79482d174c778293ec831e03e (patch)
treee5d6b8d93d5ed66db08141c7d24372e808d17d3a /src/xwindow.h
parent3657ce966227e9be0334540178ca578bc8d5ad0d (diff)
overlays: rename overlays->charts
vmon introduces a non-overlay usage, monitors is correct but ambiguous, graphs is also amiguous, charts is short and distinctive. renaming of the files comes in a separate, future commit.
Diffstat (limited to 'src/xwindow.h')
-rw-r--r--src/xwindow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xwindow.h b/src/xwindow.h
index 0d2b322..e17b4db 100644
--- a/src/xwindow.h
+++ b/src/xwindow.h
@@ -21,7 +21,7 @@ typedef struct _vwm_xwindow_t {
Picture picture; /* X picture object representing the window (for compositing) */
Pixmap pixmap; /* X pixmap object representing the window (for compositing) */
- vwm_overlay_t *overlay; /* monitoring overlay state */
+ vwm_chart_t *chart; /* monitoring chart state */
char *name; /* client name */
unsigned int client_mapped:1; /* is the window currently mapped (by client) */
@@ -44,7 +44,7 @@ void vwm_xwin_monitor(vwm_t *vwm, vwm_xwindow_t *xwin);
vwm_xwindow_t * vwm_xwin_create(vwm_t *vwm, Window win, vwm_grab_mode_t grabbed);
void vwm_xwin_destroy(vwm_t *vwm, vwm_xwindow_t *xwin);
void vwm_xwin_restack(vwm_t *vwm, vwm_xwindow_t *xwin, Window new_above);
-void vwm_xwin_setup_overlay(vwm_t *vwm, vwm_xwindow_t *xwin);
+void vwm_xwin_setup_chart(vwm_t *vwm, vwm_xwindow_t *xwin);
int vwm_xwin_create_existing(vwm_t *vwm);
© All Rights Reserved