all repos — openbox @ af27d7b7f04e1b0e0a587bd6b1b725892112eb6a

openbox fork - make it a bit more like ryudo

doc _layer.
add an Icon struct
Dana Jansens danakj@orodu.net
commit

af27d7b7f04e1b0e0a587bd6b1b725892112eb6a

parent

939e7887ceaee9ec97428ad79d8424bde6e479dd

1 files changed, 7 insertions(+), 0 deletions(-)

jump to
M src/client.hhsrc/client.hh

@@ -29,6 +29,11 @@

class Frame; class Screen; +struct Icon { + unsigned long w, h; + unsigned long *data; +}; + //! The MWM Hints as retrieved from the window property /*! This structure only contains 3 elements, even though the Motif 2.0

@@ -313,6 +318,8 @@ bool _above;

//! The window should be underneath other windows of the same type bool _below; + //! The layer in which the window will be stacked, windows in lower layers + //! are always below windows in higher layers. StackLayer _layer; //! A bitmask of values in the Client::Decoration enum