diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-02-16 20:11:02 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-02-16 20:11:02 +0000 |
| commit | 0c2f0e0b5e974bace6b7488541fac0fed23c5bc9 (patch) | |
| tree | 19c3473b8e1d5ced2fc347092d60f6e10be138dc /src/client.cc | |
| parent | 42fbb46a7fbb09bb7ee4d2a159be1a04dbcbe0d4 (diff) | |
keep track of the kwm_win_icon property
Diffstat (limited to 'src/client.cc')
| -rw-r--r-- | src/client.cc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/client.cc b/src/client.cc index 61827734..7bf72645 100644 --- a/src/client.cc +++ b/src/client.cc @@ -77,6 +77,7 @@ Client::Client(int screen, Window window) updateClass(); updateStrut(); updateIcons(); + updateKwmIcon(); // this makes sure that these windows appear on all desktops if (/*_type == Type_Dock ||*/ _type == Type_Desktop) @@ -755,6 +756,22 @@ void Client::updateIcons() if (frame) frame->adjustIcon(); } +void Client::updateKwmIcon() +{ + _kwm_icon = _kwm_icon_mask = None; + + unsigned long num = 2; + Pixmap *data; + if (otk::Property::get(_window, otk::Property::atoms.kwm_win_icon, + otk::Property::atoms.kwm_win_icon, &num, &data)) { + if (num >= 2) { + _kwm_icon = data[0]; + _kwm_icon_mask = data[1]; + } + delete [] data; + } +} + void Client::propertyHandler(const XPropertyEvent &e) { otk::EventHandler::propertyHandler(e); @@ -800,6 +817,8 @@ void Client::propertyHandler(const XPropertyEvent &e) updateStrut(); else if (e.atom == otk::Property::atoms.net_wm_icon) updateIcons(); + else if (e.atom == otk::Property::atoms.kwm_win_icon) + updateKwmIcon(); } void Client::setWMState(long state) |
