2000-03-24 22:23:02 +00:00
|
|
|
/*****************************************************************
|
|
|
|
kwin - the KDE window manager
|
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>
|
|
|
|
******************************************************************/
|
1999-08-19 23:26:42 +00:00
|
|
|
#ifndef ATOMS_H
|
|
|
|
#define ATOMS_H
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
class Atoms {
|
|
|
|
public:
|
|
|
|
Atoms();
|
|
|
|
|
2000-06-08 17:05:51 +00:00
|
|
|
Atom kwin_running;
|
|
|
|
|
1999-08-19 23:26:42 +00:00
|
|
|
Atom wm_protocols;
|
|
|
|
Atom wm_delete_window;
|
|
|
|
Atom wm_take_focus;
|
1999-11-28 20:10:58 +00:00
|
|
|
Atom wm_change_state;
|
2001-03-19 15:35:07 +00:00
|
|
|
Atom wm_client_leader;
|
|
|
|
Atom wm_save_yourself;
|
2000-05-08 21:22:57 +00:00
|
|
|
|
2000-04-06 18:29:04 +00:00
|
|
|
Atom motif_wm_hints;
|
1999-12-01 22:09:32 +00:00
|
|
|
Atom net_wm_context_help;
|
2000-06-24 17:58:10 +00:00
|
|
|
Atom kde_wm_change_state;
|
2002-02-28 22:11:43 +00:00
|
|
|
Atom kde_net_user_time;
|
1999-11-13 03:44:09 +00:00
|
|
|
|
1999-08-19 23:26:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern Atoms* atoms;
|
|
|
|
|
|
|
|
#endif
|