diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-07-20 09:20:14 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-07-20 09:20:14 +0000 |
| commit | b94699afc339c469534521c44470aa6d19e5b4cc (patch) | |
| tree | 55e705a1ecf2ed51af7ceed723c21ff9ad93d60c /util/epist/window.cc | |
| parent | 5bf463ea955bd7e27b1f04a1eefb28ec52309cb8 (diff) | |
add raising and lowering
Diffstat (limited to 'util/epist/window.cc')
| -rw-r--r-- | util/epist/window.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/util/epist/window.cc b/util/epist/window.cc index c956bdfa..592aa73e 100644 --- a/util/epist/window.cc +++ b/util/epist/window.cc @@ -154,3 +154,13 @@ void XWindow::close() const { _xatom->sendClientMessage(_screen->rootWindow(), XAtom::net_close_window, _window); } + + +void XWindow::raise() const { + XRaiseWindow(_epist->getXDisplay(), _window); +} + + +void XWindow::lower() const { + XLowerWindow(_epist->getXDisplay(), _window); +} |
