summaryrefslogtreecommitdiff
path: root/openbox/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/config.h')
-rw-r--r--openbox/config.h22
1 files changed, 14 insertions, 8 deletions
diff --git a/openbox/config.h b/openbox/config.h
index 77139368..89c4c6f6 100644
--- a/openbox/config.h
+++ b/openbox/config.h
@@ -26,12 +26,11 @@
#include "client.h"
#include "geom.h"
#include "moveresize.h"
-#include "render/render.h"
+#include "obrender/render.h"
+#include "obt/xml.h"
#include <glib.h>
-struct _ObParseInst;
-
typedef struct _ObAppSettings ObAppSettings;
struct _ObAppSettings
@@ -74,6 +73,9 @@ extern gboolean config_focus_last;
/*! Try keep focus on the window under the mouse when the mouse is not moving
*/
extern gboolean config_focus_under_mouse;
+/*! Remove focus from windows when the mouse leaves them
+ */
+extern gboolean config_unfocus_leave;
/*! The algorithm to use for placing new windows */
extern ObPlacePolicy config_place_policy;
@@ -139,6 +141,8 @@ extern gboolean config_theme_keepborder;
extern gchar *config_title_layout;
/*! Animate windows iconifying and restoring */
extern gboolean config_animate_iconify;
+/*! Size of icons in focus switching dialogs */
+extern guint config_theme_window_list_icon_size;
/*! The font for the active window's title */
extern RrFont *config_font_activewindow;
@@ -148,8 +152,10 @@ extern RrFont *config_font_inactivewindow;
extern RrFont *config_font_menutitle;
/*! The font for menu items */
extern RrFont *config_font_menuitem;
-/*! The font for on-screen-displays/popups */
-extern RrFont *config_font_osd;
+/*! The font for on-screen-displays/popups' active text */
+extern RrFont *config_font_activeosd;
+/*! The font for on-screen-displays/popups' inactive text */
+extern RrFont *config_font_inactiveosd;
/*! The number of desktops */
extern guint config_desktops_num;
@@ -196,11 +202,11 @@ extern GSList *config_menu_files;
/*! Per app settings */
extern GSList *config_per_app_settings;
-void config_startup(struct _ObParseInst *i);
-void config_shutdown();
+void config_startup(ObtXmlInst *i);
+void config_shutdown(void);
/*! Create an ObAppSettings structure with the default values */
-ObAppSettings* config_create_app_settings();
+ObAppSettings* config_create_app_settings(void);
/*! Copies any settings in src to dest, if they are their default value in
src. */
void config_app_settings_copy_non_defaults(const ObAppSettings *src,