12220a0d59
For a complete documentation of new functionality refer to: http://community.kde.org/KWin/Shadow The current implementation includes a new Shadow class and Toplevel holds a pointer to an instance of this class. The Shadow class reads the data from the X11 Property. There is one extended class located in SceneOpenGL to render the shadow. Compositor is adjusted to include the shadow region into the painting passes. Implementation for XRender still missing and Shadow needs to respond to size changes of the Toplevel to update cached shadow region and WindowQuads.
127 lines
3.5 KiB
C++
127 lines
3.5 KiB
C++
/********************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*********************************************************************/
|
|
|
|
#include "atoms.h"
|
|
#include "utils.h"
|
|
#include <assert.h>
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
Atoms::Atoms()
|
|
{
|
|
|
|
const int max = 50;
|
|
Atom* atoms[max];
|
|
char* names[max];
|
|
Atom atoms_return[max];
|
|
int n = 0;
|
|
|
|
atoms[n] = &kwin_running;
|
|
names[n++] = (char *) "KWIN_RUNNING";
|
|
|
|
atoms[n] = &activities;
|
|
names[n++] = (char *) "_KDE_NET_WM_ACTIVITIES";
|
|
|
|
atoms[n] = &wm_protocols;
|
|
names[n++] = (char *) "WM_PROTOCOLS";
|
|
|
|
atoms[n] = &wm_delete_window;
|
|
names[n++] = (char *) "WM_DELETE_WINDOW";
|
|
|
|
atoms[n] = &wm_take_focus;
|
|
names[n++] = (char *) "WM_TAKE_FOCUS";
|
|
|
|
atoms[n] = &wm_change_state;
|
|
names[n++] = (char *) "WM_CHANGE_STATE";
|
|
|
|
atoms[n] = &wm_client_leader;
|
|
names[n++] = (char *) "WM_CLIENT_LEADER";
|
|
|
|
atoms[n] = &wm_window_role;
|
|
names[n++] = (char *) "WM_WINDOW_ROLE";
|
|
|
|
atoms[n] = &wm_state;
|
|
names[n++] = (char *) "WM_STATE";
|
|
|
|
atoms[n] = &sm_client_id;
|
|
names[n++] = (char *) "SM_CLIENT_ID";
|
|
|
|
atoms[n] = &motif_wm_hints;
|
|
names[n++] = (char *) "_MOTIF_WM_HINTS";
|
|
|
|
atoms[n] = &net_wm_context_help;
|
|
names[n++] = (char *) "_NET_WM_CONTEXT_HELP";
|
|
|
|
atoms[n] = &net_wm_ping;
|
|
names[n++] = (char *) "_NET_WM_PING";
|
|
|
|
atoms[n] = &kde_wm_change_state;
|
|
names[n++] = (char *) "_KDE_WM_CHANGE_STATE";
|
|
|
|
atoms[n] = &net_wm_user_time;
|
|
names[n++] = (char *) "_NET_WM_USER_TIME";
|
|
atoms[n] = &kde_net_wm_user_creation_time;
|
|
names[n++] = (char *) "_KDE_NET_WM_USER_CREATION_TIME";
|
|
|
|
atoms[n] = &kde_system_tray_embedding;
|
|
names[n++] = (char*) "_KDE_SYSTEM_TRAY_EMBEDDING";
|
|
|
|
atoms[n] = &net_wm_take_activity;
|
|
names[n++] = (char*) "_NET_WM_TAKE_ACTIVITY";
|
|
|
|
atoms[n] = &net_wm_window_opacity;
|
|
names[n++] = (char*) "_NET_WM_WINDOW_OPACITY";
|
|
|
|
Atom fake;
|
|
atoms[n] = &fake;
|
|
names[n++] = (char *) "_DT_SM_WINDOW_INFO";
|
|
|
|
atoms[n] = &fake;
|
|
names[n++] = (char *) "_MOTIF_WM_INFO"; // #172028
|
|
|
|
atoms[n] = &xdnd_aware;
|
|
names[n++] = (char*) "XdndAware";
|
|
atoms[n] = &xdnd_position;
|
|
names[n++] = (char*) "XdndPosition";
|
|
|
|
atoms[n] = &net_frame_extents;
|
|
names[n++] = (char*) "_NET_FRAME_EXTENTS";
|
|
atoms[n] = &kde_net_wm_frame_strut;
|
|
names[n++] = (char*) "_KDE_NET_WM_FRAME_STRUT";
|
|
|
|
atoms[n] = &net_wm_sync_request_counter;
|
|
names[n++] = (char*) "_NET_WM_SYNC_REQUEST_COUNTER";
|
|
|
|
atoms[n] = &net_wm_sync_request;
|
|
names[n++] = (char*) "_NET_WM_SYNC_REQUEST";
|
|
|
|
atoms[n] = &kde_net_wm_shadow;
|
|
names[n++] = (char*) "_KDE_NET_WM_SHADOW";
|
|
|
|
assert(n <= max);
|
|
|
|
XInternAtoms(display(), names, n, false, atoms_return);
|
|
for (int i = 0; i < n; i++)
|
|
*atoms[i] = atoms_return[i];
|
|
}
|
|
|
|
} // namespace
|