aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.h
diff options
context:
space:
mode:
authorokan2019-03-04 19:28:17 +0000
committerokan2019-03-04 19:28:17 +0000
commitf9cc6bc28fcaadc3f0eea32de200c98ed65671e4 (patch)
tree3b59621a6066197982d20408c605078bb092a1d2 /calmwm.h
parent630b170b88810b2ccb695b6f715b9a415525c926 (diff)
downloadcwm-f9cc6bc28fcaadc3f0eea32de200c98ed65671e4.tar.gz
Separate out the menu window from the client resize/move geom window; in each
case, create and destroy on-demand. Isolate more menu specific code.
Diffstat (limited to '')
-rw-r--r--calmwm.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/calmwm.h b/calmwm.h
index 8120cfe..83a3739 100644
--- a/calmwm.h
+++ b/calmwm.h
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: calmwm.h,v 1.367 2019/03/04 14:48:59 okan Exp $
+ * $OpenBSD: calmwm.h,v 1.368 2019/03/04 19:28:17 okan Exp $
*/
#ifndef _CALMWM_H_
@@ -47,9 +47,6 @@
#define BUTTONMASK (ButtonPressMask | ButtonReleaseMask)
#define MOUSEMASK (BUTTONMASK | PointerMotionMask)
-#define MENUMASK (MOUSEMASK | ButtonMotionMask | KeyPressMask | \
- ExposureMask)
-#define MENUGRABMASK (MOUSEMASK | ButtonMotionMask | StructureNotifyMask)
#define IGNOREMODMASK (LockMask | Mod2Mask | 0x2000)
/* direction/amount */
@@ -229,7 +226,7 @@ struct screen_ctx {
struct {
Window win;
XftDraw *xftdraw;
- } menu;
+ } prop;
XftColor xftcolor[CWM_COLOR_NITEMS];
XftFont *xftfont;
};
@@ -484,6 +481,12 @@ void screen_init(int);
void screen_update_geometry(struct screen_ctx *);
void screen_updatestackingorder(struct screen_ctx *);
void screen_assert_clients_within(struct screen_ctx *);
+void screen_prop_win_create(struct screen_ctx *, Window);
+void screen_prop_win_destroy(struct screen_ctx *);
+void screen_prop_win_draw(struct screen_ctx *,
+ const char *, ...)
+ __attribute__((__format__ (printf, 2, 3)))
+ __attribute__((__nonnull__ (2)));
void kbfunc_cwm_status(void *, struct cargs *);
void kbfunc_ptrmove(void *, struct cargs *);
@@ -522,10 +525,6 @@ void kbfunc_exec_cmd(void *, struct cargs *);
void kbfunc_exec_lock(void *, struct cargs *);
void kbfunc_exec_term(void *, struct cargs *);
-void menu_windraw(struct screen_ctx *, Window,
- const char *, ...)
- __attribute__((__format__ (printf, 3, 4)))
- __attribute__((__nonnull__ (3)));
struct menu *menu_filter(struct screen_ctx *, struct menu_q *,
const char *, const char *, int,
void (*)(struct menu_q *, struct menu_q *, char *),