X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fframe.h;h=70855b1b8156e79d4c8f5dd6cc856ece627b07aa;hb=c4446bebff57d6e1bc9185d1f03aa5cc1995ddae;hp=f77ff35ada8fca88190b5724bc591df4dc8679f8;hpb=ebe3091560a859996a9904c342c62b512b39bee0;p=chaz%2Fopenbox diff --git a/openbox/frame.h b/openbox/frame.h index f77ff35a..70855b1b 100644 --- a/openbox/frame.h +++ b/openbox/frame.h @@ -1,6 +1,7 @@ /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- frame.h for the Openbox window manager + Copyright (c) 2006 Mikael Magnusson Copyright (c) 2003 Ben Jansens This program is free software; you can redistribute it and/or modify @@ -75,6 +76,7 @@ struct _ObFrame Strut size; Rect area; gboolean visible; + gboolean firstmap; /*! Whether the window is obscured at all or fully visible. */ gboolean obscured; @@ -94,8 +96,12 @@ struct _ObFrame Window lgrip; Window rgrip; - Window tlresize; - Window trresize; + Window tltresize; + Window tllresize; + Window trtresize; + Window trrresize; + + Colormap colormap; RrAppearance *a_unfocused_title; RrAppearance *a_focused_title; @@ -141,7 +147,7 @@ struct _ObFrame GTimeVal flash_end; }; -ObFrame *frame_new(); +ObFrame *frame_new(struct _ObClient *c); void frame_show(ObFrame *self); void frame_hide(ObFrame *self); void frame_adjust_theme(ObFrame *self); @@ -163,13 +169,13 @@ ObFrameContext frame_context(struct _ObClient *self, Window win); be positioned. @return The proper coordinates for the frame, based on the client. */ -void frame_client_gravity(ObFrame *self, int *x, int *y); +void frame_client_gravity(ObFrame *self, gint *x, gint *y); /*! Reversly applies gravity to the frame's position to find where the client should be positioned. @return The proper coordinates for the client, based on the frame. */ -void frame_frame_gravity(ObFrame *self, int *x, int *y); +void frame_frame_gravity(ObFrame *self, gint *x, gint *y); void frame_flash_start(ObFrame *self); void frame_flash_stop(ObFrame *self);