diff options
author | rathnor <rathnor> | 2003-01-29 21:42:53 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-01-29 21:42:53 (GMT) |
commit | 5244fc32447d2649a52a06dc84d96da94e9fd715 (patch) | |
tree | 5ead0b2c1609f5d821ad30030a8220d889200216 /src/FbTk/MultLayers.hh | |
parent | 0f5247ccce2d55d36ba823fe4cc6adcd3801c02d (diff) | |
download | fluxbox_pavel-5244fc32447d2649a52a06dc84d96da94e9fd715.zip fluxbox_pavel-5244fc32447d2649a52a06dc84d96da94e9fd715.tar.bz2 |
restructured layering a little so that a XLayerItem now contains several
windows that are to remain equivalent in depth (e.g. tabs, or grouped
windows) - (Simon)
Diffstat (limited to 'src/FbTk/MultLayers.hh')
-rw-r--r-- | src/FbTk/MultLayers.hh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/FbTk/MultLayers.hh b/src/FbTk/MultLayers.hh index bb9f134..99d765d 100644 --- a/src/FbTk/MultLayers.hh +++ b/src/FbTk/MultLayers.hh | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: MultLayers.hh,v 1.1 2003/01/16 12:41:27 rathnor Exp $ | 23 | // $Id: MultLayers.hh,v 1.2 2003/01/29 21:42:53 rathnor Exp $ |
24 | 24 | ||
25 | #ifndef FBTK_MULTLAYERS_HH | 25 | #ifndef FBTK_MULTLAYERS_HH |
26 | #define FBTK_MULTLAYERS_HH | 26 | #define FBTK_MULTLAYERS_HH |
@@ -38,9 +38,14 @@ public: | |||
38 | ~MultLayers(); | 38 | ~MultLayers(); |
39 | XLayerItem *getLowestItemAboveLayer(int layernum); | 39 | XLayerItem *getLowestItemAboveLayer(int layernum); |
40 | void addToTop(XLayerItem &item, int layernum); | 40 | void addToTop(XLayerItem &item, int layernum); |
41 | void remove(XLayerItem &item); | ||
42 | |||
41 | //void move(XLayerItem &item, int layernum); | 43 | //void move(XLayerItem &item, int layernum); |
44 | |||
45 | // raise/lower the item a whole layer, not just to top of current layer | ||
42 | void raise(XLayerItem &item); | 46 | void raise(XLayerItem &item); |
43 | void lower(XLayerItem &item); | 47 | void lower(XLayerItem &item); |
48 | |||
44 | //void moveToTop(XLayerItem &item); | 49 | //void moveToTop(XLayerItem &item); |
45 | //void moveToBottom(XLayerItem &item); | 50 | //void moveToBottom(XLayerItem &item); |
46 | 51 | ||