doc _layer.
add an Icon struct
This commit is contained in:
parent
939e7887ce
commit
af27d7b7f0
1 changed files with 7 additions and 0 deletions
|
@ -29,6 +29,11 @@ namespace ob {
|
||||||
class Frame;
|
class Frame;
|
||||||
class Screen;
|
class Screen;
|
||||||
|
|
||||||
|
struct Icon {
|
||||||
|
unsigned long w, h;
|
||||||
|
unsigned long *data;
|
||||||
|
};
|
||||||
|
|
||||||
//! The MWM Hints as retrieved from the window property
|
//! The MWM Hints as retrieved from the window property
|
||||||
/*!
|
/*!
|
||||||
This structure only contains 3 elements, even though the Motif 2.0
|
This structure only contains 3 elements, even though the Motif 2.0
|
||||||
|
@ -313,6 +318,8 @@ private:
|
||||||
//! The window should be underneath other windows of the same type
|
//! The window should be underneath other windows of the same type
|
||||||
bool _below;
|
bool _below;
|
||||||
|
|
||||||
|
//! The layer in which the window will be stacked, windows in lower layers
|
||||||
|
//! are always below windows in higher layers.
|
||||||
StackLayer _layer;
|
StackLayer _layer;
|
||||||
|
|
||||||
//! A bitmask of values in the Client::Decoration enum
|
//! A bitmask of values in the Client::Decoration enum
|
||||||
|
|
Loading…
Reference in a new issue