X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fframe.h;h=0295a6beb2a32853498327ab242a93cf951aa89c;hb=81af5a8b0caadc0a82ff2304c315f816c9576e93;hp=4f117fae89607b83f9174cc5a98b7a9e86f3fd01;hpb=b0e8e276e451639689ebc9c58c1afe54897bceb2;p=chaz%2Fopenbox diff --git a/openbox/frame.h b/openbox/frame.h index 4f117fae..0295a6be 100644 --- a/openbox/frame.h +++ b/openbox/frame.h @@ -26,6 +26,22 @@ typedef enum { OB_FRAME_NUM_CONTEXTS } ObFrameContext; +/*! The decorations the client window wants to be displayed on it */ +typedef enum { + OB_FRAME_DECOR_TITLEBAR = 1 << 0, /*!< Display a titlebar */ + OB_FRAME_DECOR_HANDLE = 1 << 1, /*!< Display a handle (bottom) */ + OB_FRAME_DECOR_GRIPS = 1 << 2, /*!< Display grips in the handle */ + OB_FRAME_DECOR_BORDER = 1 << 3, /*!< Display a border */ + OB_FRAME_DECOR_ICON = 1 << 4, /*!< Display the window's icon */ + OB_FRAME_DECOR_ICONIFY = 1 << 5, /*!< Display an iconify button */ + OB_FRAME_DECOR_MAXIMIZE = 1 << 6, /*!< Display a maximize button */ + /*! Display a button to toggle the window's placement on + all desktops */ + OB_FRAME_DECOR_ALLDESKTOPS = 1 << 7, + OB_FRAME_DECOR_SHADE = 1 << 8, /*!< Displays a shade button */ + OB_FRAME_DECOR_CLOSE = 1 << 9 /*!< Display a close button */ +} ObFrameDecorations; + struct _ObFrame { struct _ObClient *client; @@ -83,9 +99,6 @@ struct _ObFrame gboolean focused; }; -void frame_startup(); -void frame_shutdown(); - ObFrame *frame_new(); void frame_show(ObFrame *self); void frame_hide(ObFrame *self);