From a041d9898e6d699bd8c0c25482ec574feb03c547 Mon Sep 17 00:00:00 2001 From: "John Ankarstr\\xf6m" Date: Sat, 29 May 2021 12:54:47 +0200 Subject: First commit This is the original state of the released tarball for JWM 1.8, which will serve as my starting point for further modifications. --- src/popup.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/popup.h (limited to 'src/popup.h') diff --git a/src/popup.h b/src/popup.h new file mode 100644 index 0000000..21e84db --- /dev/null +++ b/src/popup.h @@ -0,0 +1,35 @@ +/** + * @file popup.h + * @author Joe Wingbermuehle + * @date 2004-2006 + * + * @brief Header for popup functions. + * + */ + +#ifndef POPUP_H +#define POPUP_H + +#define POPUP_DELTA 2 + +struct TimeType; + +/*@{*/ +void InitializePopup(); +void StartupPopup(); +void ShutdownPopup(); +void DestroyPopup(); +/*@}*/ + +void ShowPopup(int x, int y, const char *text); + +void SetPopupEnabled(int e); +void SetPopupDelay(const char *str); + +void SignalPopup(const struct TimeType *now, int x, int y); +int ProcessPopupEvent(const XEvent *event); + +extern int popupDelay; + +#endif + -- cgit v1.2.3