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;
|
|
|
|
Atom kwm_win_icon; // compatibility
|
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-08-19 23:26:42 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern Atoms* atoms;
|
|
|
|
|
|
|
|
#endif
|