aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/XLayerItem.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-02-02 16:32:41 (GMT)
committerrathnor <rathnor>2003-02-02 16:32:41 (GMT)
commit1b063dcea92e0a7ac5008518fc5c13f03c055f54 (patch)
tree29d5b622c0870f06a94086ed463ab90e23bc673e /src/FbTk/XLayerItem.hh
parent5244fc32447d2649a52a06dc84d96da94e9fd715 (diff)
downloadfluxbox-1b063dcea92e0a7ac5008518fc5c13f03c055f54.zip
fluxbox-1b063dcea92e0a7ac5008518fc5c13f03c055f54.tar.bz2
Integration of new Layering code, plus updates to the layering code itself
- new KeyActions: Raise/LowerLayer, AlwaysOnTop/Bottom, Top/BottomLayer Added a "Quit" KeyAction
Diffstat (limited to 'src/FbTk/XLayerItem.hh')
-rw-r--r--src/FbTk/XLayerItem.hh7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/FbTk/XLayerItem.hh b/src/FbTk/XLayerItem.hh
index 2fd37e6..14d13e5 100644
--- a/src/FbTk/XLayerItem.hh
+++ b/src/FbTk/XLayerItem.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: XLayerItem.hh,v 1.2 2003/01/29 21:42:53 rathnor Exp $ 23// $Id: XLayerItem.hh,v 1.3 2003/02/02 16:32:41 rathnor Exp $
24 24
25#ifndef FBTK_XLAYERITEM_HH 25#ifndef FBTK_XLAYERITEM_HH
26#define FBTK_XLAYERITEM_HH 26#define FBTK_XLAYERITEM_HH
@@ -38,7 +38,7 @@ public:
38 38
39 XLayerItem(Window win); 39 XLayerItem(Window win);
40 ~XLayerItem(); 40 ~XLayerItem();
41 void setLayer(XLayer &layer); 41 void setLayer(XLayer *layer);
42 XLayer *getLayer() const { return m_layer; } 42 XLayer *getLayer() const { return m_layer; }
43 void raise(); 43 void raise();
44 void lower(); 44 void lower();
@@ -46,7 +46,8 @@ public:
46 void stepDown(); 46 void stepDown();
47 XLayer::iterator getLayerIterator() const { return m_layeriterator; }; 47 XLayer::iterator getLayerIterator() const { return m_layeriterator; };
48 void setLayerIterator(XLayer::iterator it) { m_layeriterator = it; }; 48 void setLayerIterator(XLayer::iterator it) { m_layeriterator = it; };
49 49 bool isEmpty() const { return m_windows.empty(); }
50
50 // not currently implemented 51 // not currently implemented
51 bool visible() { return true; } 52 bool visible() { return true; }
52 53