64acd7375d
Qt snapshot, you will see lovely question marks in the titlebar of dialogs that invoke What's This help. svn path=/trunk/kdebase/kwin/; revision=35618
29 lines
505 B
C++
29 lines
505 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_wm_context_help;
|
|
|
|
Atom net_kde_docking_windows;
|
|
};
|
|
|
|
|
|
extern Atoms* atoms;
|
|
|
|
#endif
|