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/outline.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/outline.h (limited to 'src/outline.h') diff --git a/src/outline.h b/src/outline.h new file mode 100644 index 0000000..26a4a5e --- /dev/null +++ b/src/outline.h @@ -0,0 +1,32 @@ +/** + * @file outline.h + * @author Joe Wingbermuehle + * @date 2004-2006 + * + * @brief Outlines for moving and resizing client windows. + * + */ + +#ifndef OUTLINE_H +#define OUTLINE_H + +/*@{*/ +void InitializeOutline(); +void StartupOutline(); +void ShutdownOutline(); +void DestroyOutline(); +/*@}*/ + +/** Draw an outline. + * @param x The x-coordinate. + * @param y The y-coordinate. + * @param width The width of the outline. + * @param height The height of the outline. + */ +void DrawOutline(int x, int y, int width, int height); + +/** Clear an outline. */ +void ClearOutline(); + +#endif + -- cgit v1.2.3