]> Dogcows Code - chaz/openbox/blobdiff - openbox/session.h
save the stacking order of the windows, and sort the saved session data based on...
[chaz/openbox] / openbox / session.h
index 5247d69015920e5ac7e51e6df2df43bea3094164..6a7d40c7be34475a21fc2bb436e64add1b449a78 100644 (file)
@@ -9,18 +9,23 @@ typedef struct _ObSessionState ObSessionState;
 
 struct _ObSessionState {
     gchar *id, *name, *class, *role;
+    guint stacking;
     guint desktop;
     gint x, y, w, h;
     gboolean shaded, iconic, skip_pager, skip_taskbar, fullscreen;
     gboolean above, below, max_horz, max_vert;
+
+    gboolean matched;
 };
 
+extern GList *session_saved_state;
 
 void session_load(char *path);
 void session_startup(int argc, char **argv);
 void session_shutdown();
 
-ObSessionState* session_state_find(struct _ObClient *c);
+GList* session_state_find(struct _ObClient *c);
+gboolean session_state_cmp(ObSessionState *s, struct _ObClient *c);
 void session_state_free(ObSessionState *state);
 
 #endif
This page took 0.019531 seconds and 4 git commands to generate.