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/theme.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/theme.h (limited to 'src/theme.h') diff --git a/src/theme.h b/src/theme.h new file mode 100644 index 0000000..2dd1400 --- /dev/null +++ b/src/theme.h @@ -0,0 +1,31 @@ +/** + * @file theme.h + * @author Joe Wingbermuehle + * @date 2006 + * + * @brief Header for the theme functions. + * + */ + +#ifndef THEME_H +#define THEME_H + +/*@{*/ +void InitializeThemes(); +void StartupThemes(); +void ShutdownThemes(); +void DestroyThemes(); +/*@}*/ + +/** Add a theme path. + * @param path The path to add. + */ +void AddThemePath(const char *path); + +/** Set the theme to use. + * @param name The name of the theme. + */ +void SetTheme(const char *name); + +#endif + -- cgit v1.2.3