93e0265e4e
Once in a while, we receive complaints from other fellow KDE developers about the file organization of kwin. This change addresses some of those complaints by moving all of source code in a separate directory, src/, thus making the project structure more traditional. Things such as tests are kept in their own toplevel directories. This change may wreak havoc on merge requests that add new files to kwin, but if a patch modifies an already existing file, git should be smart enough to figure out that the file has been relocated. We may potentially split the src/ directory further to make navigating the source code easier, but hopefully this is good enough already.
98 lines
2.3 KiB
C++
98 lines
2.3 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
SPDX-FileCopyrightText: 2003 Lubos Lunak <l.lunak@kde.org>
|
|
SPDX-FileCopyrightText: 2013 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KWIN_ATOMS_H
|
|
#define KWIN_ATOMS_H
|
|
|
|
#include "xcbutils.h"
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
class KWIN_EXPORT Atoms
|
|
{
|
|
public:
|
|
Atoms();
|
|
|
|
Xcb::Atom kwin_running;
|
|
Xcb::Atom activities;
|
|
|
|
Xcb::Atom wm_protocols;
|
|
Xcb::Atom wm_delete_window;
|
|
Xcb::Atom wm_take_focus;
|
|
Xcb::Atom wm_change_state;
|
|
Xcb::Atom wm_client_leader;
|
|
Xcb::Atom wm_window_role;
|
|
Xcb::Atom wm_state;
|
|
Xcb::Atom sm_client_id;
|
|
|
|
Xcb::Atom motif_wm_hints;
|
|
Xcb::Atom net_wm_context_help;
|
|
Xcb::Atom net_wm_ping;
|
|
Xcb::Atom net_wm_user_time;
|
|
Xcb::Atom kde_net_wm_user_creation_time;
|
|
Xcb::Atom net_wm_take_activity;
|
|
Xcb::Atom net_wm_window_opacity;
|
|
Xcb::Atom xdnd_selection;
|
|
Xcb::Atom xdnd_aware;
|
|
Xcb::Atom xdnd_enter;
|
|
Xcb::Atom xdnd_type_list;
|
|
Xcb::Atom xdnd_position;
|
|
Xcb::Atom xdnd_status;
|
|
Xcb::Atom xdnd_action_copy;
|
|
Xcb::Atom xdnd_action_move;
|
|
Xcb::Atom xdnd_action_ask;
|
|
Xcb::Atom xdnd_drop;
|
|
Xcb::Atom xdnd_leave;
|
|
Xcb::Atom xdnd_finished;
|
|
Xcb::Atom net_frame_extents;
|
|
Xcb::Atom kde_net_wm_frame_strut;
|
|
Xcb::Atom net_wm_sync_request_counter;
|
|
Xcb::Atom net_wm_sync_request;
|
|
Xcb::Atom kde_net_wm_shadow;
|
|
Xcb::Atom kde_first_in_window_list;
|
|
Xcb::Atom kde_color_sheme;
|
|
Xcb::Atom kde_skip_close_animation;
|
|
Xcb::Atom kde_screen_edge_show;
|
|
Xcb::Atom kwin_dbus_service;
|
|
Xcb::Atom utf8_string;
|
|
Xcb::Atom text;
|
|
Xcb::Atom uri_list;
|
|
Xcb::Atom netscape_url;
|
|
Xcb::Atom moz_url;
|
|
Xcb::Atom wl_surface_id;
|
|
Xcb::Atom kde_net_wm_appmenu_service_name;
|
|
Xcb::Atom kde_net_wm_appmenu_object_path;
|
|
Xcb::Atom clipboard;
|
|
Xcb::Atom timestamp;
|
|
Xcb::Atom targets;
|
|
Xcb::Atom delete_atom;
|
|
Xcb::Atom incr;
|
|
Xcb::Atom wl_selection;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
void retrieveHelpers();
|
|
|
|
private:
|
|
// helper atoms we need to resolve to "announce" support (see #172028)
|
|
Xcb::Atom m_dtSmWindowInfo;
|
|
Xcb::Atom m_motifSupport;
|
|
bool m_helpersRetrieved;
|
|
};
|
|
|
|
|
|
extern KWIN_EXPORT Atoms* atoms;
|
|
|
|
} // namespace
|
|
|
|
#endif
|