You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
431 B
26 lines
431 B
#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 |
|
|
|
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
|
|
|