]> Dogcows Code - chaz/openbox/commitdiff
doc _layer.
authorDana Jansens <danakj@orodu.net>
Thu, 13 Feb 2003 07:38:45 +0000 (07:38 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 13 Feb 2003 07:38:45 +0000 (07:38 +0000)
add an Icon struct

src/client.hh

index 8bbe2a918f7490217c4d6b1aa4c4b42438564d1d..6c9b74e5832c62e44f6ca0b5b341c0baa5e0d036 100644 (file)
@@ -29,6 +29,11 @@ namespace ob {
 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 @@ private:
   //! 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
This page took 0.026496 seconds and 4 git commands to generate.