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();
|
|
|
|
|
|
|
|
Atom wm_protocols;
|
|
|
|
Atom wm_delete_window;
|
|
|
|
Atom wm_take_focus;
|
1999-11-28 20:10:58 +00:00
|
|
|
Atom wm_change_state;
|
1999-08-19 23:26:42 +00:00
|
|
|
Atom kwm_win_icon; // compatibility
|
1999-12-03 21:08:07 +00:00
|
|
|
Atom kwm_command; // compatibility
|
1999-11-13 03:44:09 +00:00
|
|
|
Atom kwm_running;
|
2000-05-08 21:22:57 +00:00
|
|
|
|
2000-04-06 18:29:04 +00:00
|
|
|
Atom motif_wm_hints;
|
1999-11-11 01:22:41 +00:00
|
|
|
|
1999-11-07 01:43:06 +00:00
|
|
|
Atom net_number_of_desktops;
|
|
|
|
Atom net_current_desktop;
|
|
|
|
Atom net_active_window;
|
|
|
|
Atom net_client_list;
|
|
|
|
Atom net_client_list_stacking;
|
1999-12-01 22:09:32 +00:00
|
|
|
Atom net_wm_context_help;
|
1999-11-13 03:44:09 +00:00
|
|
|
|
1999-11-11 01:22:41 +00:00
|
|
|
Atom net_kde_docking_windows;
|
2000-05-08 21:22:57 +00:00
|
|
|
Atom net_avoid_spec;
|
1999-12-03 21:08:07 +00:00
|
|
|
|
2000-06-08 01:33:53 +00:00
|
|
|
Atom kwin_initial_desktop;
|
|
|
|
|
1999-08-19 23:26:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern Atoms* atoms;
|
|
|
|
|
|
|
|
#endif
|