aboutsummaryrefslogtreecommitdiff
path: root/spectrogram.c
diff options
context:
space:
mode:
Diffstat (limited to 'spectrogram.c')
-rw-r--r--spectrogram.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/spectrogram.c b/spectrogram.c
index e00cc5d..a82a2d7 100644
--- a/spectrogram.c
+++ b/spectrogram.c
@@ -47,12 +47,31 @@ struct pixmap {
GC gc;
};
+struct spectrogram {
+ Window win;
+ Pixmap pix;
+ Pixmap bg;
+ GC gc;
+ Pixmap shadow;
+ GC shadowgc;
+}
+
+struct watterfall {
+ Window win;
+ Pixmap pix;
+ GC gc;
+};
+
struct panel {
Window win; /* container */
+ struct watterfall wf;
+
+#if 0
Window wf; /* waterfall */
XRectangle w;
struct pixmap wfbuf;
+#endif
Window sp; /* spectrogram */
XRectangle s;