bd1e4878ba
wm_change_state messages properly svn path=/trunk/kdebase/kwin/; revision=35353
29 lines
476 B
C++
29 lines
476 B
C++
#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 wm_change_state;
|
|
Atom kwm_win_icon; // compatibility
|
|
Atom kwm_running;
|
|
|
|
Atom net_number_of_desktops;
|
|
Atom net_current_desktop;
|
|
Atom net_active_window;
|
|
Atom net_client_list;
|
|
Atom net_client_list_stacking;
|
|
|
|
|
|
Atom net_kde_docking_windows;
|
|
};
|
|
|
|
|
|
extern Atoms* atoms;
|
|
|
|
#endif
|