X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fclient.h;h=a75c6d2b074c0d0b1a94b100aa368ac8b5a8116c;hb=ff04e2c9a98325e4ae13958ef63b455df303abc9;hp=22a7dd207183d02e381bd35a5ba34a100bb8982b;hpb=829e746b4defb3776050c438fa4fa87e5242eb25;p=chaz%2Fopenbox diff --git a/openbox/client.h b/openbox/client.h index 22a7dd20..a75c6d2b 100644 --- a/openbox/client.h +++ b/openbox/client.h @@ -32,8 +32,9 @@ struct _ObFrame; struct _ObGroup; struct _ObSessionState; -typedef struct _ObClient ObClient; -typedef struct _ObClientIcon ObClientIcon; +typedef struct _ObClient ObClient; +typedef struct _ObClientIcon ObClientIcon; +typedef struct _ObAppSettings ObAppSettings; /* The value in client.transient_for indicating it is a transient for its group instead of for a single window */ @@ -269,6 +270,31 @@ struct _ObClient guint nicons; }; +struct _ObAppSettings +{ + gchar *name; + gchar *role; + + Point position; + gboolean center_x; + gboolean center_y; + gboolean pos_given; + + guint desktop; + 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; void client_startup(gboolean reconfig);