JWM Source Documentation
popup.h
Go to the documentation of this file.
00001 00010 #ifndef POPUP_H 00011 #define POPUP_H 00012 00014 #define POPUP_DELTA 2 00015 00016 struct TimeType; 00017 00019 void InitializePopup(); 00020 void StartupPopup(); 00021 void ShutdownPopup(); 00022 void DestroyPopup(); 00030 void MeasurePopupText(const char *text, int *width, int *height); 00031 00037 void ShowPopup(int x, int y, const char *text); 00038 00042 void SetPopupEnabled(int e); 00043 00047 void SetPopupDelay(const char *str); 00048 00054 void SignalPopup(const struct TimeType *now, int x, int y); 00055 00060 int ProcessPopupEvent(const XEvent *event); 00061 00063 extern int popupDelay; 00064 00065 #endif /* POPUP_H */ 00066