2000-03-24 22:23:02 +00:00
|
|
|
/*****************************************************************
|
2003-09-16 19:28:03 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2000-04-06 18:29:04 +00:00
|
|
|
|
2000-03-24 22:23:02 +00:00
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
2003-09-16 19:28:03 +00:00
|
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
|
|
License. See the file "COPYING" for the exact licensing terms.
|
2000-03-24 22:23:02 +00:00
|
|
|
******************************************************************/
|
2003-09-16 19:28:03 +00:00
|
|
|
|
2002-07-26 20:30:36 +00:00
|
|
|
#ifndef KWIN_ATOMS_H
|
|
|
|
#define KWIN_ATOMS_H
|
1999-08-19 23:26:42 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
namespace KWinInternal
|
|
|
|
{
|
1999-08-19 23:26:42 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
class Atoms
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Atoms();
|
2000-06-08 17:05:51 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
Atom kwin_running;
|
2000-05-08 21:22:57 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
Atom wm_protocols;
|
|
|
|
Atom wm_delete_window;
|
|
|
|
Atom wm_take_focus;
|
|
|
|
Atom wm_change_state;
|
|
|
|
Atom wm_client_leader;
|
1999-11-13 03:44:09 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
Atom motif_wm_hints;
|
|
|
|
Atom net_wm_context_help;
|
|
|
|
Atom net_wm_ping;
|
|
|
|
Atom kde_wm_change_state;
|
|
|
|
Atom net_wm_user_time;
|
|
|
|
Atom kde_net_wm_user_creation_time;
|
2003-10-30 10:10:54 +00:00
|
|
|
Atom kde_system_tray_embedding;
|
2004-04-16 10:23:42 +00:00
|
|
|
Atom net_wm_take_activity;
|
2005-01-15 17:07:48 +00:00
|
|
|
Atom net_wm_window_opacity;
|
|
|
|
Atom net_wm_window_shadow;
|
|
|
|
Atom net_wm_window_shade;
|
2005-01-21 16:19:10 +00:00
|
|
|
Atom net_wm_window_shapable;
|
2004-11-09 15:38:33 +00:00
|
|
|
Atom xdnd_aware;
|
|
|
|
Atom xdnd_position;
|
2003-09-16 19:28:03 +00:00
|
|
|
};
|
1999-08-19 23:26:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
extern Atoms* atoms;
|
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
} // namespace
|
|
|
|
|
1999-08-19 23:26:42 +00:00
|
|
|
#endif
|