Add missing license headers. Some files mentioned only copyright
but not explicitly the license, there I assumed they're licensed under the same license as the rest of KWin, which is GPLv2+ as of now. CC-ing all people mentioned as copyright holders just in case somebody wants some other license, e.g. the X11 license KWin used to be licensed under until KDE3.2. Please check with other relevant contributors and change accordingly in such case. CCMAIL: Karol Szwed <gallium@kde.org> CCMAIL: Luciano Montanaro <mikelima@cirulla.net> CCMAIL: Sandro Giessl <sandro@giessl.com> CCMAIL: Daniel M. Duley <mosfet@kde.org> CCMAIL: Chris Lee <clee@kde.org> svn path=/trunk/KDE/kdebase/workspace/; revision=742990
This commit is contained in:
parent
9621df24f5
commit
fc23037d3a
27 changed files with 556 additions and 166 deletions
|
@ -1,16 +1,30 @@
|
|||
/*********************************************************************
|
||||
B-II KWin Client
|
||||
|
||||
Changes:
|
||||
Customizable button positions by Karol Szwed <gallium@kde.org>
|
||||
|
||||
Thin frame in fixed size windows, titlebar gradient support, accessibility
|
||||
improvements, customizable menu double click action and button hover
|
||||
effects are
|
||||
Copyright (c) 2003, 2004, 2006 Luciano Montanaro <mikelima@cirulla.net>
|
||||
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef CLIENTS_B2_B2CLIENT
|
||||
#define CLIENTS_B2_B2CLIENT
|
||||
/*
|
||||
* B-II KWin Client
|
||||
*
|
||||
* Changes:
|
||||
* Customizable button positions by Karol Szwed <gallium@kde.org>
|
||||
*
|
||||
* Thin frame in fixed size windows, titlebar gradient support, accessibility
|
||||
* improvements, customizable menu double click action and button hover
|
||||
* effects are
|
||||
* Copyright (c) 2003, 2004, 2006 Luciano Montanaro <mikelima@cirulla.net>
|
||||
*/
|
||||
|
||||
#include "b2client.h"
|
||||
|
||||
|
|
|
@ -1,10 +1,23 @@
|
|||
/*
|
||||
* B-II KWin Client
|
||||
*
|
||||
* Changes:
|
||||
* Customizable button positions by Karol Szwed <gallium@kde.org>
|
||||
* Ported to the kde3.2 API by Luciano Montanaro <mikelima@cirulla.net>
|
||||
*/
|
||||
/*********************************************************************
|
||||
B-II KWin Client
|
||||
|
||||
Changes:
|
||||
Customizable button positions by Karol Szwed <gallium@kde.org>
|
||||
Ported to the kde3.2 API by Luciano Montanaro <mikelima@cirulla.net>
|
||||
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef __B2CLIENT_H
|
||||
#define __B2CLIENT_H
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
/********************************************************************
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef __STDCLIENT_BITMAPS_H
|
||||
#define __STDCLIENT_BITMAPS_H
|
||||
|
||||
|
|
|
@ -1,12 +1,25 @@
|
|||
/*
|
||||
* This file contains the B2 configuration widget
|
||||
*
|
||||
* Copyright (c) 2001
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
* http://gallium.n3.net/
|
||||
* Copyright (c) 2007
|
||||
* Luciano Montanaro <mikelima@cirulla.net>
|
||||
*/
|
||||
/********************************************************************
|
||||
This file contains the B2 configuration widget
|
||||
|
||||
Copyright (c) 2001
|
||||
Karol Szwed <gallium@kde.org>
|
||||
http://gallium.n3.net/
|
||||
Copyright (c) 2007
|
||||
Luciano Montanaro <mikelima@cirulla.net>
|
||||
|
||||
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 "config.h"
|
||||
#include <kglobal.h>
|
||||
|
|
|
@ -1,12 +1,25 @@
|
|||
/*
|
||||
* This file contains the B2 configuration widget
|
||||
*
|
||||
* Copyright (c) 2001
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
* http://gallium.n3.net/
|
||||
* Copyright (c) 2007
|
||||
* Luciano Montanaro <mikelima@cirulla.net>
|
||||
*/
|
||||
/********************************************************************
|
||||
This file contains the B2 configuration widget
|
||||
|
||||
Copyright (c) 2001
|
||||
Karol Szwed <gallium@kde.org>
|
||||
http://gallium.n3.net/
|
||||
Copyright (c) 2007
|
||||
Luciano Montanaro <mikelima@cirulla.net>
|
||||
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef _KDE_B2CONFIG_H
|
||||
#define _KDE_B2CONFIG_H
|
||||
|
|
|
@ -1,11 +1,24 @@
|
|||
/*
|
||||
*
|
||||
* KDE2 Default configuration widget
|
||||
*
|
||||
* Copyright (c) 2001
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
* http://gallium.n3.net/
|
||||
*/
|
||||
/*********************************************************************
|
||||
|
||||
KDE2 Default configuration widget
|
||||
|
||||
Copyright (c) 2001
|
||||
Karol Szwed <gallium@kde.org>
|
||||
http://gallium.n3.net/
|
||||
|
||||
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 "config.h"
|
||||
|
||||
|
|
|
@ -1,11 +1,24 @@
|
|||
/*
|
||||
*
|
||||
* KDE2 Default configuration widget
|
||||
*
|
||||
* Copyright (c) 2001
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
* http://gallium.n3.net/
|
||||
*/
|
||||
/*********************************************************************
|
||||
|
||||
KDE2 Default configuration widget
|
||||
|
||||
Copyright (c) 2001
|
||||
Karol Szwed <gallium@kde.org>
|
||||
http://gallium.n3.net/
|
||||
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef KDE2_CONFIG_H
|
||||
#define KDE2_CONFIG_H
|
||||
|
|
|
@ -1,17 +1,30 @@
|
|||
/*
|
||||
*
|
||||
* KDE2 Default KWin client
|
||||
*
|
||||
* Copyright (C) 1999, 2001 Daniel Duley <mosfet@kde.org>
|
||||
* Matthias Ettrich <ettrich@kde.org>
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
*
|
||||
* Draws mini titlebars for tool windows.
|
||||
* Many features are now customizable.
|
||||
*
|
||||
* drawColorBitmaps orignally from kdefx:
|
||||
* Copyright (C) 1999 Daniel M. Duley <mosfet@kde.org>
|
||||
*/
|
||||
/*********************************************************************
|
||||
|
||||
KDE2 Default KWin client
|
||||
|
||||
Copyright (C) 1999, 2001 Daniel Duley <mosfet@kde.org>
|
||||
Matthias Ettrich <ettrich@kde.org>
|
||||
Karol Szwed <gallium@kde.org>
|
||||
|
||||
Draws mini titlebars for tool windows.
|
||||
Many features are now customizable.
|
||||
|
||||
drawColorBitmaps orignally from kdefx:
|
||||
Copyright (C) 1999 Daniel M. Duley <mosfet@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 "kde2.h"
|
||||
|
||||
|
|
|
@ -1,14 +1,27 @@
|
|||
/*
|
||||
*
|
||||
* KDE2 Default KWin client
|
||||
*
|
||||
* Copyright (C) 1999, 2001 Daniel Duley <mosfet@kde.org>
|
||||
* Matthias Ettrich <ettrich@kde.org>
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
*
|
||||
* Draws mini titlebars for tool windows.
|
||||
* Many features are now customizable.
|
||||
*/
|
||||
/*********************************************************************
|
||||
|
||||
KDE2 Default KWin client
|
||||
|
||||
Copyright (C) 1999, 2001 Daniel Duley <mosfet@kde.org>
|
||||
Matthias Ettrich <ettrich@kde.org>
|
||||
Karol Szwed <gallium@kde.org>
|
||||
|
||||
Draws mini titlebars for tool windows.
|
||||
Many features are now customizable.
|
||||
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef KDE2_H
|
||||
#define KDE2_H
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
/********************************************************************
|
||||
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 <QFile>
|
||||
#include <QDir>
|
||||
#include <kapplication.h>
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
/********************************************************************
|
||||
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 "kwmthemeclient.h"
|
||||
|
||||
#include <kconfig.h>
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
/********************************************************************
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef __KWMTHEMECLIENT_H
|
||||
#define __KWMTHEMECLIENT_H
|
||||
|
||||
|
|
|
@ -1,10 +1,23 @@
|
|||
/*
|
||||
* Laptop KWin Decoration
|
||||
*
|
||||
* Copyright (c) 2005 Sandro Giessl <sandro@giessl.com>
|
||||
* Port of this decoration to KDE 3.2, accessibility enhancement are
|
||||
* Copyright (c) 2003 Luciano Montanaro <mikelima@cirulla.net>
|
||||
*/
|
||||
/********************************************************************
|
||||
Laptop KWin Decoration
|
||||
|
||||
Copyright (c) 2005 Sandro Giessl <sandro@giessl.com>
|
||||
Port of this decoration to KDE 3.2, accessibility enhancement are
|
||||
Copyright (c) 2003 Luciano Montanaro <mikelima@cirulla.net>
|
||||
|
||||
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 <kconfig.h> // up here to avoid X11 header conflict :P
|
||||
#include "laptopclient.h"
|
||||
|
|
|
@ -1,9 +1,23 @@
|
|||
/*
|
||||
* Laptop KWin Client
|
||||
*
|
||||
* Copyright (c) 2005 Sandro Giessl <sandro@giessl.com>
|
||||
* Ported to the kde3.2 API by Luciano Montanaro <mikelima@cirulla.net>
|
||||
*/
|
||||
/********************************************************************
|
||||
Laptop KWin Client
|
||||
|
||||
Copyright (c) 2005 Sandro Giessl <sandro@giessl.com>
|
||||
Ported to the kde3.2 API by Luciano Montanaro <mikelima@cirulla.net>
|
||||
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef LAPTOPCLIENT_H
|
||||
#define LAPTOPCLIENT_H
|
||||
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
Copyright (C) 1999 Daniel M. Duley <mosfet@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; see the file COPYING. If not, write to
|
||||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __BTNHIGHCOLOR_H
|
||||
#define __BTNHIGHCOLOR_H
|
||||
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
Copyright (C) 1999 Daniel M. Duley <mosfet@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; see the file COPYING. If not, write to
|
||||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __BUTTONDATA_H
|
||||
#define __BUTTONDATA_H
|
||||
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
/********************************************************************
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
// Melchior FRANZ <mfranz@kde.org> -- 2001-04-22
|
||||
|
||||
#include <kapplication.h>
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
/********************************************************************
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef __KDE_MODSYSTEMCONFIG_H
|
||||
#define __KDE_MODSYSTEMCONFIG_H
|
||||
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
Copyright (C) 1999 Daniel M. Duley <mosfet@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; see the file COPYING. If not, write to
|
||||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __MODERNSYS_H
|
||||
#define __MODERNSYS_H
|
||||
|
||||
|
|
|
@ -1,11 +1,24 @@
|
|||
/*
|
||||
*
|
||||
* This file contains the quartz configuration widget
|
||||
*
|
||||
* Copyright (c) 2001
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
* http://gallium.n3.net/
|
||||
*/
|
||||
/********************************************************************
|
||||
|
||||
This file contains the quartz configuration widget
|
||||
|
||||
Copyright (c) 2001
|
||||
Karol Szwed <gallium@kde.org>
|
||||
http://gallium.n3.net/
|
||||
|
||||
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 "config.h"
|
||||
#include <kglobal.h>
|
||||
|
|
|
@ -1,11 +1,24 @@
|
|||
/*
|
||||
*
|
||||
* This file contains the quartz configuration widget
|
||||
*
|
||||
* Copyright (c) 2001
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
* http://gallium.n3.net/
|
||||
*/
|
||||
/********************************************************************
|
||||
|
||||
This file contains the quartz configuration widget
|
||||
|
||||
Copyright (c) 2001
|
||||
Karol Szwed <gallium@kde.org>
|
||||
http://gallium.n3.net/
|
||||
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef __KDE_QUARTZCONFIG_H
|
||||
#define __KDE_QUARTZCONFIG_H
|
||||
|
|
|
@ -1,20 +1,33 @@
|
|||
/*
|
||||
*
|
||||
* Gallium-Quartz KWin client
|
||||
*
|
||||
* Copyright (C) 2005 Sandro Giessl <sandro@giessl.com>
|
||||
* Copyright 2001
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
* http://gallium.n3.net/
|
||||
*
|
||||
* Based on the KDE default client.
|
||||
*
|
||||
* Includes mini titlebars for ToolWindow Support.
|
||||
* Button positions are now customizable.
|
||||
*
|
||||
* drawColorBitmaps orignally from kdefx:
|
||||
* Copyright (C) 1999 Daniel M. Duley <mosfet@kde.org>
|
||||
*/
|
||||
/********************************************************************
|
||||
|
||||
Gallium-Quartz KWin client
|
||||
|
||||
Copyright (C) 2005 Sandro Giessl <sandro@giessl.com>
|
||||
Copyright 2001
|
||||
Karol Szwed <gallium@kde.org>
|
||||
http://gallium.n3.net/
|
||||
|
||||
Based on the KDE default client.
|
||||
|
||||
Includes mini titlebars for ToolWindow Support.
|
||||
Button positions are now customizable.
|
||||
|
||||
drawColorBitmaps orignally from kdefx:
|
||||
Copyright (C) 1999 Daniel M. Duley <mosfet@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 <kconfiggroup.h>
|
||||
#include <kglobal.h>
|
||||
|
|
|
@ -1,17 +1,29 @@
|
|||
/*
|
||||
* Gallium-Quartz KWin client
|
||||
*
|
||||
* Copyright (C) 2005 Sandro Giessl <sandro@giessl.com>
|
||||
* Copyright 2001
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
* http://gallium.n3.net/
|
||||
*
|
||||
* Based on the KDE default client.
|
||||
*
|
||||
* Includes mini titlebars for ToolWindow Support.
|
||||
* Button positions are now customizable.
|
||||
*
|
||||
*/
|
||||
/********************************************************************
|
||||
Gallium-Quartz KWin client
|
||||
|
||||
Copyright (C) 2005 Sandro Giessl <sandro@giessl.com>
|
||||
Copyright 2001
|
||||
Karol Szwed <gallium@kde.org>
|
||||
http://gallium.n3.net/
|
||||
|
||||
Based on the KDE default client.
|
||||
|
||||
Includes mini titlebars for ToolWindow Support.
|
||||
Button positions are now customizable.
|
||||
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef __KDEGALLIUM_QUARTZ_H
|
||||
#define __KDEGALLIUM_QUARTZ_H
|
||||
|
|
|
@ -1,16 +1,28 @@
|
|||
/*
|
||||
*
|
||||
* Redmond KWin client
|
||||
*
|
||||
* Copyright 2001
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
* http://gallium.n3.net/
|
||||
*
|
||||
* Based on the default KWin client.
|
||||
*
|
||||
* Updated to support toolwindows 3/2001 (KS)
|
||||
*
|
||||
*/
|
||||
/********************************************************************
|
||||
|
||||
Redmond KWin client
|
||||
|
||||
Copyright 2001
|
||||
Karol Szwed <gallium@kde.org>
|
||||
http://gallium.n3.net/
|
||||
|
||||
Based on the default KWin client.
|
||||
|
||||
Updated to support toolwindows 3/2001 (KS)
|
||||
|
||||
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 "redmond.h"
|
||||
|
||||
|
|
|
@ -1,19 +1,31 @@
|
|||
/*
|
||||
*
|
||||
* Redmond KWin client
|
||||
*
|
||||
* Copyright 2001-2003
|
||||
* Ported to kwin_iii by Chris Lee <clee@kde.org>
|
||||
* Karol Szwed <gallium@kde.org>
|
||||
* http://gallium.n3.net/
|
||||
*
|
||||
* Based on the default KWin client.
|
||||
*
|
||||
* Updated to support the new API 9/2003 (CL)
|
||||
* Updated to emulate More Accurately 9/2003 (CL)
|
||||
* Updated to support toolwindows 3/2001 (KS)
|
||||
*
|
||||
*/
|
||||
/********************************************************************
|
||||
|
||||
Redmond KWin client
|
||||
|
||||
Copyright 2001-2003
|
||||
Ported to kwin_iii by Chris Lee <clee@kde.org>
|
||||
Karol Szwed <gallium@kde.org>
|
||||
http://gallium.n3.net/
|
||||
|
||||
Based on the default KWin client.
|
||||
|
||||
Updated to support the new API 9/2003 (CL)
|
||||
Updated to emulate More Accurately 9/2003 (CL)
|
||||
Updated to support toolwindows 3/2001 (KS)
|
||||
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef __KDE_REDMOND_H
|
||||
#define __KDE_REDMOND_H
|
||||
|
|
|
@ -1,3 +1,21 @@
|
|||
/********************************************************************
|
||||
|
||||
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 "test.h"
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,21 @@
|
|||
/********************************************************************
|
||||
|
||||
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/>.
|
||||
*********************************************************************/
|
||||
|
||||
#ifndef KWIN_TEST
|
||||
#define KWIN_TEST
|
||||
|
||||
|
|
Loading…
Reference in a new issue