diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2006-06-09 14:14:17 +0000 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2006-06-09 14:14:17 +0000 |
| commit | ff04e2c9a98325e4ae13958ef63b455df303abc9 (patch) | |
| tree | 317a63c6b5e6dfdb9c3723a3475439f0e893f476 /openbox/client.h | |
| parent | 8af51d8a1be9c3cb9d89d1d8378de72f42599760 (diff) | |
add the rest of the possible states to per app settings, and fix some mem leaks in the code that _set_ the per app list
Diffstat (limited to 'openbox/client.h')
| -rw-r--r-- | openbox/client.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/openbox/client.h b/openbox/client.h index ab1c830c..a75c6d2b 100644 --- a/openbox/client.h +++ b/openbox/client.h @@ -274,9 +274,6 @@ struct _ObAppSettings { gchar *name; gchar *role; - gboolean decor; - gboolean shade; - gboolean focus; Point position; gboolean center_x; @@ -284,9 +281,18 @@ struct _ObAppSettings gboolean pos_given; guint desktop; - guint head; - - guint layer; + gint shade; + gint decor; + gint focus; + gint head; + gint iconic; + gint skip_pager; + gint skip_taskbar; + gint max_horz; + gint max_vert; + gint fullscreen; + + gint layer; }; extern GList *client_list; |
