diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-02-16 21:57:21 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-02-16 21:57:21 +0000 |
| commit | 136c9c078d33e5784881267be03d8ff1adf41bc5 (patch) | |
| tree | 5b9449a318ff53af4ea9fbed8850eb638451288a /src/client.hh | |
| parent | 0c2f0e0b5e974bace6b7488541fac0fed23c5bc9 (diff) | |
support for pixmap icons, kwm_win_icon and the icon in wmhints
Diffstat (limited to 'src/client.hh')
| -rw-r--r-- | src/client.hh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client.hh b/src/client.hh index 8d97bfcc..932bac16 100644 --- a/src/client.hh +++ b/src/client.hh @@ -348,8 +348,8 @@ private: //! The number of icons in _icons int _nicons; - Pixmap _kwm_icon; - Pixmap _kwm_icon_mask; + Pixmap _pixmap_icon; + Pixmap _pixmap_icon_mask; //! Retrieves the window's initial gravity void getGravity(); @@ -665,16 +665,16 @@ BB @param window The window id that the Client class should handle */ const Icon *icon(const otk::Size &s) const; - //! Returns the pixmap for the KWM_WIN_ICON specified on the window (or None) + //! Returns the pixmap for the pixmap icon specified on the window (or None) /*! The icon given by Client::icon should take precedence over this icon/mask. */ - Pixmap kwmIcon() const { return _kwm_icon; } - //! Returns the mask for the KWM_WIN_ICON specified on the window (or None) + Pixmap pixmapIcon() const { return _pixmap_icon; } + //! Returns the mask for the pixmap icon specified on the window (or None) /*! The icon given by Client::icon should take precedence over this icon/mask. */ - Pixmap kwmIconMask() const { return _kwm_icon_mask; } + Pixmap pixmapIconMask() const { return _pixmap_icon_mask; } //! Move the window (actually, its frame) to a position. /*! |
