KWin
atoms.h
Go to the documentation of this file.00001 /******************************************************************** 00002 KWin - the KDE window manager 00003 This file is part of the KDE project. 00004 00005 Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org> 00006 Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org> 00007 00008 This program is free software; you can redistribute it and/or modify 00009 it under the terms of the GNU General Public License as published by 00010 the Free Software Foundation; either version 2 of the License, or 00011 (at your option) any later version. 00012 00013 This program is distributed in the hope that it will be useful, 00014 but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 GNU General Public License for more details. 00017 00018 You should have received a copy of the GNU General Public License 00019 along with this program. If not, see <http://www.gnu.org/licenses/>. 00020 *********************************************************************/ 00021 00022 #ifndef KWIN_ATOMS_H 00023 #define KWIN_ATOMS_H 00024 00025 #include <QApplication> 00026 #include <X11/Xlib.h> 00027 00028 namespace KWin 00029 { 00030 00031 class Atoms 00032 { 00033 public: 00034 Atoms(); 00035 00036 Atom kwin_running; 00037 00038 Atom wm_protocols; 00039 Atom wm_delete_window; 00040 Atom wm_take_focus; 00041 Atom wm_change_state; 00042 Atom wm_client_leader; 00043 Atom wm_window_role; 00044 Atom wm_state; 00045 Atom sm_client_id; 00046 00047 Atom motif_wm_hints; 00048 Atom net_wm_context_help; 00049 Atom net_wm_ping; 00050 Atom kde_wm_change_state; 00051 Atom net_wm_user_time; 00052 Atom kde_net_wm_user_creation_time; 00053 Atom kde_system_tray_embedding; 00054 Atom net_wm_take_activity; 00055 Atom net_wm_window_opacity; 00056 Atom xdnd_aware; 00057 Atom xdnd_position; 00058 Atom net_frame_extents; 00059 Atom kde_net_wm_frame_strut; 00060 Atom net_wm_sync_request_counter; 00061 Atom net_wm_sync_request; 00062 }; 00063 00064 00065 extern Atoms* atoms; 00066 00067 } // namespace 00068 00069 #endif