diff options
Diffstat (limited to 'src/ui')
417 files changed, 1071 insertions, 588 deletions
diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt index 62bf701e1..98991f25e 100644 --- a/src/ui/CMakeLists.txt +++ b/src/ui/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-or-later set(ui_SRC clipboard.cpp contextmenu.cpp diff --git a/src/ui/cache/svg_preview_cache.cpp b/src/ui/cache/svg_preview_cache.cpp index 803f901e4..7262b7dbe 100644 --- a/src/ui/cache/svg_preview_cache.cpp +++ b/src/ui/cache/svg_preview_cache.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * SVGPreview: Preview cache */ @@ -11,7 +12,7 @@ * Copyright (C) 2001 Ximian, Inc. * Copyright (C) 2004 John Cliff * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * */ diff --git a/src/ui/cache/svg_preview_cache.h b/src/ui/cache/svg_preview_cache.h index b04a82350..19c454894 100644 --- a/src/ui/cache/svg_preview_cache.h +++ b/src/ui/cache/svg_preview_cache.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Preview cache */ /* * Copyright (C) 2007 Bryce W. Harrington <bryce@bryceharrington.org> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_UI_SVG_PREVIEW_CACHE_H diff --git a/src/ui/clipboard.cpp b/src/ui/clipboard.cpp index b57179725..7ca50c285 100644 --- a/src/ui/clipboard.cpp +++ b/src/ui/clipboard.cpp @@ -1,24 +1,17 @@ -/** - * @file +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file * System-wide clipboard management - implementation. - */ -/* Authors: + *//* + * Authors: + * see git history * Krzysztof Kosiński <tweenk@o2.pl> * Jon A. Cruz <jon@joncruz.org> * Incorporates some code from selection-chemistry.cpp, see that file for more credits. * Abhishek Sharma * Tavmjong Bah * - * Copyright (C) 2008 authors - * Copyright (C) 2010 Jon A. Cruz - * Copyright (C) 2012 Tavmjong Bah (Symbol additions) - * - * 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. - * - * See the file COPYING for details. + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/clipboard.h> diff --git a/src/ui/clipboard.h b/src/ui/clipboard.h index a05c6c005..d8c78cd69 100644 --- a/src/ui/clipboard.h +++ b/src/ui/clipboard.h @@ -1,24 +1,19 @@ -#ifndef SEEN_INKSCAPE_CLIPBOARD_H -#define SEEN_INKSCAPE_CLIPBOARD_H - +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief System-wide clipboard management - class declaration - */ -/* Authors: + *//* + * Authors: see git history * Krzysztof Kosiński <tweenk@o2.pl> * Jon A. Cruz <jon@joncruz.org> * - * Copyright (C) 2008 authors - * Copyright (C) 2010 Jon A. Cruz * - * 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. - * - * See the file COPYING for details. + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ +#ifndef SEEN_INKSCAPE_CLIPBOARD_H +#define SEEN_INKSCAPE_CLIPBOARD_H + #include <glibmm/ustring.h> // forward declarations diff --git a/src/ui/contextmenu.cpp b/src/ui/contextmenu.cpp index 7686789b4..b1e16abbd 100644 --- a/src/ui/contextmenu.cpp +++ b/src/ui/contextmenu.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Context menu @@ -16,7 +17,7 @@ * Copyright (C) 2004 David Turner * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "contextmenu.h" diff --git a/src/ui/contextmenu.h b/src/ui/contextmenu.h index a940e7f27..aaf041d53 100644 --- a/src/ui/contextmenu.h +++ b/src/ui/contextmenu.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_CONTEXTMENU_H #define SEEN_CONTEXTMENU_H @@ -14,7 +15,7 @@ * Copyright (C) 1999-2002 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/menu.h> diff --git a/src/ui/control-manager.cpp b/src/ui/control-manager.cpp index 1f33ec63e..7ce30e63f 100644 --- a/src/ui/control-manager.cpp +++ b/src/ui/control-manager.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Central facade for accessing and managing on-canvas controls. * @@ -6,7 +7,7 @@ * * Copyright 2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "control-manager.h" diff --git a/src/ui/control-manager.h b/src/ui/control-manager.h index 418591991..12ac19ae7 100644 --- a/src/ui/control-manager.h +++ b/src/ui/control-manager.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Inkscape::ControlManager - Coordinates creation and styling of nodes, handles, etc. * @@ -6,7 +7,7 @@ * * Copyright 2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_CONTROL_MANAGER_H #define SEEN_INKSCAPE_CONTROL_MANAGER_H diff --git a/src/ui/control-types.h b/src/ui/control-types.h index 09160a76c..f8af4fbda 100644 --- a/src/ui/control-types.h +++ b/src/ui/control-types.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_UI_CONTROL_TYPES_H #define SEEN_UI_CONTROL_TYPES_H @@ -7,7 +8,7 @@ * * Copyright (C) 2012 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ namespace Inkscape diff --git a/src/ui/dialog-events.cpp b/src/ui/dialog-events.cpp index 116016bfe..17be2fede 100644 --- a/src/ui/dialog-events.cpp +++ b/src/ui/dialog-events.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Event handler for dialog windows. @@ -8,7 +9,7 @@ * * Copyright (C) 2003-2014 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/entry.h> diff --git a/src/ui/dialog-events.h b/src/ui/dialog-events.h index e00c0560b..7bc748378 100644 --- a/src/ui/dialog-events.h +++ b/src/ui/dialog-events.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Event handler for dialog windows */ @@ -6,7 +7,7 @@ * * Copyright (C) 2003-2014 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_DIALOG_EVENTS_H diff --git a/src/ui/dialog/aboutbox.cpp b/src/ui/dialog/aboutbox.cpp index b86bc02a4..a5fe1dab2 100644 --- a/src/ui/dialog/aboutbox.cpp +++ b/src/ui/dialog/aboutbox.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Inkscape About box - implementation. @@ -14,7 +15,7 @@ * Copyright 2004 Jon Phillips * Copyright 2005 MenTaLguY * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "aboutbox.h" diff --git a/src/ui/dialog/aboutbox.h b/src/ui/dialog/aboutbox.h index 54f8c3ebc..e5b9f278c 100644 --- a/src/ui/dialog/aboutbox.h +++ b/src/ui/dialog/aboutbox.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Inkscape About box * @@ -9,7 +10,7 @@ * * Copyright (C) 2005 Kees Cook * - * Released under GNU GPL v2+. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_ABOUTBOX_H diff --git a/src/ui/dialog/align-and-distribute.cpp b/src/ui/dialog/align-and-distribute.cpp index a11584584..495d2e857 100644 --- a/src/ui/dialog/align-and-distribute.cpp +++ b/src/ui/dialog/align-and-distribute.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Align and Distribute dialog - implementation. @@ -13,7 +14,7 @@ * * Copyright (C) 1999-2004, 2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/dialog/align-and-distribute.h b/src/ui/dialog/align-and-distribute.h index 53b8c1a0f..6259736e0 100644 --- a/src/ui/dialog/align-and-distribute.h +++ b/src/ui/dialog/align-and-distribute.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Align and Distribute dialog */ @@ -9,7 +10,7 @@ * * Copyright (C) 1999-2004, 2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_ALIGN_AND_DISTRIBUTE_H diff --git a/src/ui/dialog/arrange-tab.h b/src/ui/dialog/arrange-tab.h index cbc6cfd4f..42e141ea0 100644 --- a/src/ui/dialog/arrange-tab.h +++ b/src/ui/dialog/arrange-tab.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @brief Arrange tools base class */ @@ -5,7 +6,7 @@ * * Declara Denis * Copyright (C) 2012 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_ARRANGE_TAB_H diff --git a/src/ui/dialog/attrdialog.cpp b/src/ui/dialog/attrdialog.cpp index 65bdf9942..43322b4d3 100644 --- a/src/ui/dialog/attrdialog.cpp +++ b/src/ui/dialog/attrdialog.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A dialog for XML attributes */ diff --git a/src/ui/dialog/attrdialog.h b/src/ui/dialog/attrdialog.h index cbce0c5fb..a290d55c9 100644 --- a/src/ui/dialog/attrdialog.h +++ b/src/ui/dialog/attrdialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A dialog for XML attributes based on Gtk TreeView */ diff --git a/src/ui/dialog/behavior.h b/src/ui/dialog/behavior.h index 28cbf99a2..1b6c7c75f 100644 --- a/src/ui/dialog/behavior.h +++ b/src/ui/dialog/behavior.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Dialog behavior interface */ @@ -6,7 +7,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_BEHAVIOR_H diff --git a/src/ui/dialog/calligraphic-profile-rename.cpp b/src/ui/dialog/calligraphic-profile-rename.cpp index 321df04b0..604ac7f70 100644 --- a/src/ui/dialog/calligraphic-profile-rename.cpp +++ b/src/ui/dialog/calligraphic-profile-rename.cpp @@ -1,16 +1,17 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Dialog for naming calligraphic profiles. * - * @note This file is in the wrong directory because of link order issues - + * @note This file is in the wrong directory because of link order issues - * it is required by widgets/toolbox.cpp, and libspwidgets.a comes after * libinkdialogs.a in the current link order. */ /* Author: - * Aubanel MONNIER + * Aubanel MONNIER * * Copyright (C) 2007 Authors - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "calligraphic-profile-rename.h" diff --git a/src/ui/dialog/calligraphic-profile-rename.h b/src/ui/dialog/calligraphic-profile-rename.h index b8d15b9c6..195275b9b 100644 --- a/src/ui/dialog/calligraphic-profile-rename.h +++ b/src/ui/dialog/calligraphic-profile-rename.h @@ -1,11 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Dialog for naming calligraphic profiles */ /* Author: - * Aubanel MONNIER + * Aubanel MONNIER * * Copyright (C) 2007 Authors - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_DIALOG_CALLIGRAPHIC_PROFILE_H diff --git a/src/ui/dialog/clonetiler.cpp b/src/ui/dialog/clonetiler.cpp index 3b1d8af0b..5505242a7 100644 --- a/src/ui/dialog/clonetiler.cpp +++ b/src/ui/dialog/clonetiler.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file @@ -11,7 +12,7 @@ * Romain de Bossoreille * * Copyright (C) 2004-2011 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "clonetiler.h" diff --git a/src/ui/dialog/clonetiler.h b/src/ui/dialog/clonetiler.h index c2f6fd337..47c20adb9 100644 --- a/src/ui/dialog/clonetiler.h +++ b/src/ui/dialog/clonetiler.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Clone tiling dialog */ @@ -5,7 +6,7 @@ * bulia byak <buliabyak@users.sf.net> * * Copyright (C) 2004 Authors - * Released under the GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __SP_CLONE_TILER_H__ #define __SP_CLONE_TILER_H__ diff --git a/src/ui/dialog/color-item.cpp b/src/ui/dialog/color-item.cpp index 5875a7720..653b18d70 100644 --- a/src/ui/dialog/color-item.cpp +++ b/src/ui/dialog/color-item.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Inkscape color swatch UI item. @@ -8,7 +9,7 @@ * * Copyright (C) 2010 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cerrno> diff --git a/src/ui/dialog/color-item.h b/src/ui/dialog/color-item.h index fea108cb7..fd2206270 100644 --- a/src/ui/dialog/color-item.h +++ b/src/ui/dialog/color-item.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Inkscape color swatch UI item. */ @@ -6,7 +7,7 @@ * * Copyright (C) 2010 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_DIALOGS_COLOR_ITEM_H diff --git a/src/ui/dialog/cssdialog.cpp b/src/ui/dialog/cssdialog.cpp index 13903af70..64868f583 100644 --- a/src/ui/dialog/cssdialog.cpp +++ b/src/ui/dialog/cssdialog.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A dialog for CSS selectors */ @@ -8,7 +9,7 @@ * Copyright (C) Kamalpreet Kaur Grewal 2016 <grewalkamal005@gmail.com> * Copyright (C) Tavmjong Bah 2017 <tavmjong@free.fr> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "cssdialog.h" diff --git a/src/ui/dialog/cssdialog.h b/src/ui/dialog/cssdialog.h index 6b9657599..c34575a1a 100644 --- a/src/ui/dialog/cssdialog.h +++ b/src/ui/dialog/cssdialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A dialog for CSS selectors */ @@ -8,7 +9,7 @@ * Copyright (C) Kamalpreet Kaur Grewal 2016 <grewalkamal005@gmail.com> * Copyright (C) Tavmjong Bah 2017 <tavmjong@free.fr> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef CSSDIALOG_H diff --git a/src/ui/dialog/debug.cpp b/src/ui/dialog/debug.cpp index c449816e7..af2f08bde 100644 --- a/src/ui/dialog/debug.cpp +++ b/src/ui/dialog/debug.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * A dialog that displays log messages. @@ -7,7 +8,7 @@ * Other dudes from The Inkscape Organization * * Copyright (C) 2004 The Inkscape Organization - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/ui/dialog/debug.h b/src/ui/dialog/debug.h index 416959fb3..4520c739f 100644 --- a/src/ui/dialog/debug.h +++ b/src/ui/dialog/debug.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Dialog for displaying Inkscape messages */ @@ -7,7 +8,7 @@ * * Copyright (C) 2004 The Inkscape Organization * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_DIALOGS_DEBUGDIALOG_H diff --git a/src/ui/dialog/desktop-tracker.cpp b/src/ui/dialog/desktop-tracker.cpp index a25243f08..67f2cef0c 100644 --- a/src/ui/dialog/desktop-tracker.cpp +++ b/src/ui/dialog/desktop-tracker.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Jon A. Cruz * * Copyright (C) 2010 Jon A. Cruz - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "widgets/desktop-widget.h" diff --git a/src/ui/dialog/desktop-tracker.h b/src/ui/dialog/desktop-tracker.h index 8cb205a35..b681c9ca1 100644 --- a/src/ui/dialog/desktop-tracker.h +++ b/src/ui/dialog/desktop-tracker.h @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Jon A. Cruz * * Copyright (C) 2010 Jon A. Cruz - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_DIALOG_DESKTOP_TRACKER #define SEEN_DIALOG_DESKTOP_TRACKER diff --git a/src/ui/dialog/dialog-manager.cpp b/src/ui/dialog/dialog-manager.cpp index 28e45d50a..7ff0968d0 100644 --- a/src/ui/dialog/dialog-manager.cpp +++ b/src/ui/dialog/dialog-manager.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Object for managing a set of dialogs, including their signals and @@ -10,7 +11,7 @@ * * Copyright (C) 2004-2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/dialog/dialog-manager.h" diff --git a/src/ui/dialog/dialog-manager.h b/src/ui/dialog/dialog-manager.h index 36e9a12be..5b22189c9 100644 --- a/src/ui/dialog/dialog-manager.h +++ b/src/ui/dialog/dialog-manager.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Object for managing a set of dialogs, including their signals and * construction/caching/destruction of them. @@ -5,10 +6,10 @@ /* Author: * Bryce W. Harrington <bryce@bryceharrington.org> * Jon Phillips <jon@rejon.org> - * + * * Copyright (C) 2004, 2005 Authors - * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_MANAGER_H diff --git a/src/ui/dialog/dialog.cpp b/src/ui/dialog/dialog.cpp index 49268dcb8..2ba2856ff 100644 --- a/src/ui/dialog/dialog.cpp +++ b/src/ui/dialog/dialog.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Base class for dialogs in Inkscape - implementation. @@ -10,7 +11,7 @@ * * Copyright (C) 2004--2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "dialog-manager.h" diff --git a/src/ui/dialog/dialog.h b/src/ui/dialog/dialog.h index c0f0a53bd..404f4f9a3 100644 --- a/src/ui/dialog/dialog.h +++ b/src/ui/dialog/dialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Base class for dialogs in Inkscape */ @@ -8,7 +9,7 @@ * * Copyright (C) 2004--2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_DIALOG_H diff --git a/src/ui/dialog/dock-behavior.cpp b/src/ui/dialog/dock-behavior.cpp index 5b3d2854c..a3681a19c 100644 --- a/src/ui/dialog/dock-behavior.cpp +++ b/src/ui/dialog/dock-behavior.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * A dockable dialog implementation. @@ -7,7 +8,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "dock-behavior.h" diff --git a/src/ui/dialog/dock-behavior.h b/src/ui/dialog/dock-behavior.h index e64297955..85b8244db 100644 --- a/src/ui/dialog/dock-behavior.h +++ b/src/ui/dialog/dock-behavior.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A dockable dialog implementation. */ @@ -6,7 +7,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/dialog/document-metadata.cpp b/src/ui/dialog/document-metadata.cpp index 6eeafbc39..8513e94a6 100644 --- a/src/ui/dialog/document-metadata.cpp +++ b/src/ui/dialog/document-metadata.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Document metadata dialog, Gtkmm-style. @@ -11,7 +12,7 @@ * * Copyright (C) 2000 - 2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "document-metadata.h" diff --git a/src/ui/dialog/document-metadata.h b/src/ui/dialog/document-metadata.h index 34f5bf5a3..7004dcaba 100644 --- a/src/ui/dialog/document-metadata.h +++ b/src/ui/dialog/document-metadata.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * \brief Document Metadata dialog */ @@ -7,7 +8,7 @@ * * Copyright (C) 2004, 2005, 2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_DOCUMENT_METADATA_H diff --git a/src/ui/dialog/document-properties.cpp b/src/ui/dialog/document-properties.cpp index 6a1797310..54277234c 100644 --- a/src/ui/dialog/document-properties.cpp +++ b/src/ui/dialog/document-properties.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Document properties dialog, Gtkmm-style. @@ -15,7 +16,7 @@ * Copyright (C) 2006-2008 Johan Engelen <johan@shouraizou.nl> * Copyright (C) 2000 - 2008 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/ui/dialog/document-properties.h b/src/ui/dialog/document-properties.h index 8c96d7517..1d365f555 100644 --- a/src/ui/dialog/document-properties.h +++ b/src/ui/dialog/document-properties.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * \brief Document Properties dialog */ @@ -8,7 +9,7 @@ * Copyright (C) 2006-2008 Johan Engelen <johan@shouraizou.nl> * Copyright (C) 2004, 2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_DOCUMENT_PREFERENCES_H diff --git a/src/ui/dialog/export.cpp b/src/ui/dialog/export.cpp index 3176323ba..255ecec9d 100644 --- a/src/ui/dialog/export.cpp +++ b/src/ui/dialog/export.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Lauris Kaplinski <lauris@kaplinski.com> * bulia byak <buliabyak@users.sf.net> @@ -10,7 +11,7 @@ * Copyright (C) 1999-2007, 2012 Authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ // This has to be included prior to anything that includes setjmp.h, it croaks otherwise diff --git a/src/ui/dialog/export.h b/src/ui/dialog/export.h index 281131cca..7f4a46afe 100644 --- a/src/ui/dialog/export.h +++ b/src/ui/dialog/export.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Lauris Kaplinski <lauris@kaplinski.com> * bulia byak <buliabyak@users.sf.net> @@ -6,7 +7,7 @@ * Copyright (C) 1999-2007 Authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SP_EXPORT_H diff --git a/src/ui/dialog/extension-editor.cpp b/src/ui/dialog/extension-editor.cpp index 33ca5f5d9..6606f1cf6 100644 --- a/src/ui/dialog/extension-editor.cpp +++ b/src/ui/dialog/extension-editor.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Extension editor dialog. @@ -8,7 +9,7 @@ * * Copyright (C) 2004-2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extension-editor.h" diff --git a/src/ui/dialog/extension-editor.h b/src/ui/dialog/extension-editor.h index a0949dcd3..e9c45e209 100644 --- a/src/ui/dialog/extension-editor.h +++ b/src/ui/dialog/extension-editor.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Extension editor dialog */ @@ -7,7 +8,7 @@ * * Copyright (C) 2004-2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_EXTENSION_EDITOR_H diff --git a/src/ui/dialog/extensions.cpp b/src/ui/dialog/extensions.cpp index ffea6395f..f39c7d549 100644 --- a/src/ui/dialog/extensions.cpp +++ b/src/ui/dialog/extensions.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * A simple dialog with information about extensions. @@ -7,7 +8,7 @@ * * Copyright (C) 2005 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "extensions.h" diff --git a/src/ui/dialog/extensions.h b/src/ui/dialog/extensions.h index b5b025fae..16d2e919a 100644 --- a/src/ui/dialog/extensions.h +++ b/src/ui/dialog/extensions.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * A simple dialog with information about extensions */ @@ -5,9 +6,9 @@ * Jon A. Cruz * * Copyright (C) 2005 The Inkscape Organization - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ - + #ifndef SEEN_EXTENSIONS_H #define SEEN_EXTENSIONS_H diff --git a/src/ui/dialog/filedialog.cpp b/src/ui/dialog/filedialog.cpp index fd192a6fb..683a66106 100644 --- a/src/ui/dialog/filedialog.cpp +++ b/src/ui/dialog/filedialog.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Implementation of the file dialog interfaces defined in filedialog.h. @@ -12,7 +13,7 @@ * Copyright (C) 2007-2008 Joel Holdsworth * Copyright (C) 2004-2008 The Inkscape Organization * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef _WIN32 diff --git a/src/ui/dialog/filedialog.h b/src/ui/dialog/filedialog.h index 41101d204..db50fbdc9 100644 --- a/src/ui/dialog/filedialog.h +++ b/src/ui/dialog/filedialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Virtual base definitions for native file dialogs */ @@ -10,7 +11,7 @@ * Copyright (C) 2007-2008 Joel Holdsworth * Copyright (C) 2004-2008, Inkscape Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __FILE_DIALOG_H__ diff --git a/src/ui/dialog/filedialogimpl-gtkmm.cpp b/src/ui/dialog/filedialogimpl-gtkmm.cpp index 72036d444..a3ff0cf35 100644 --- a/src/ui/dialog/filedialogimpl-gtkmm.cpp +++ b/src/ui/dialog/filedialogimpl-gtkmm.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Implementation of the file dialog interfaces defined in filedialogimpl.h. @@ -14,7 +15,7 @@ * Copyright (C) 2007-2008 Joel Holdsworth * Copyright (C) 2004-2007 The Inkscape Organization * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <iostream> diff --git a/src/ui/dialog/filedialogimpl-gtkmm.h b/src/ui/dialog/filedialogimpl-gtkmm.h index f4625c5f8..82f56d311 100644 --- a/src/ui/dialog/filedialogimpl-gtkmm.h +++ b/src/ui/dialog/filedialogimpl-gtkmm.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Implementation of the file dialog interfaces defined in filedialogimpl.h */ @@ -11,7 +12,7 @@ * Copyright (C) 2004-2008 Authors * Copyright (C) 2004-2007 The Inkscape Organization * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __FILE_DIALOGIMPL_H__ diff --git a/src/ui/dialog/filedialogimpl-win32.cpp b/src/ui/dialog/filedialogimpl-win32.cpp index 4cccffccb..4380eebfd 100644 --- a/src/ui/dialog/filedialogimpl-win32.cpp +++ b/src/ui/dialog/filedialogimpl-win32.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Implementation of native file dialogs for Win32. @@ -9,12 +10,12 @@ * * Copyright (C) 2004-2008 The Inkscape Organization * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef _WIN32 #include "filedialogimpl-win32.h" -//General includes +// General includes #include <cairomm/win32_surface.h> #include <gdk/gdkwin32.h> #include <gdkmm/general.h> diff --git a/src/ui/dialog/filedialogimpl-win32.h b/src/ui/dialog/filedialogimpl-win32.h index 5c9043a30..a086962b7 100644 --- a/src/ui/dialog/filedialogimpl-win32.h +++ b/src/ui/dialog/filedialogimpl-win32.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Implementation of native file dialogs for Win32 */ @@ -7,7 +8,7 @@ * * Copyright (C) 2004-2008 The Inkscape Organization * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm.h> @@ -17,7 +18,7 @@ #include "filedialogimpl-gtkmm.h" #include "inkgc/gc-core.h" - // define WINVER high enough so we get the correct OPENFILENAMEW size +// define WINVER high enough so we get the correct OPENFILENAMEW size #ifndef WINVER #define WINVER 0x0500 #endif diff --git a/src/ui/dialog/fill-and-stroke.cpp b/src/ui/dialog/fill-and-stroke.cpp index b9c53e7f2..eea45cc5b 100644 --- a/src/ui/dialog/fill-and-stroke.cpp +++ b/src/ui/dialog/fill-and-stroke.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Fill and Stroke dialog - implementation. @@ -12,7 +13,7 @@ * Copyright (C) 2004--2007 Authors * Copyright (C) 2010 Jon A. Cruz * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/dialog/fill-and-stroke.h b/src/ui/dialog/fill-and-stroke.h index 76bec9083..f4259698b 100644 --- a/src/ui/dialog/fill-and-stroke.h +++ b/src/ui/dialog/fill-and-stroke.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Fill and Stroke dialog */ @@ -9,7 +10,7 @@ * Copyright (C) 2004--2007 Authors * Copyright (C) 2010 Jon A. Cruz * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_FILL_AND_STROKE_H diff --git a/src/ui/dialog/filter-editor.cpp b/src/ui/dialog/filter-editor.cpp index 533402cd7..6ad9dca61 100644 --- a/src/ui/dialog/filter-editor.cpp +++ b/src/ui/dialog/filter-editor.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Filter Effects dialog. @@ -7,7 +8,7 @@ * * Copyright (C) 2017 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <string> diff --git a/src/ui/dialog/filter-editor.h b/src/ui/dialog/filter-editor.h index 8f18a0d45..e20ecbf73 100644 --- a/src/ui/dialog/filter-editor.h +++ b/src/ui/dialog/filter-editor.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Filter Editor dialog */ @@ -6,7 +7,7 @@ * * Copyright (C) 2017 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_FILTER_EDITOR_H diff --git a/src/ui/dialog/filter-effects-dialog.cpp b/src/ui/dialog/filter-effects-dialog.cpp index 42380aaa4..d49f6d08c 100644 --- a/src/ui/dialog/filter-effects-dialog.cpp +++ b/src/ui/dialog/filter-effects-dialog.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Filter Effects dialog. @@ -12,7 +13,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/imagemenuitem.h> diff --git a/src/ui/dialog/filter-effects-dialog.h b/src/ui/dialog/filter-effects-dialog.h index bae224964..4f67148b0 100644 --- a/src/ui/dialog/filter-effects-dialog.h +++ b/src/ui/dialog/filter-effects-dialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Filter Effects dialog */ @@ -8,7 +9,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_FILTER_EFFECTS_H diff --git a/src/ui/dialog/find.cpp b/src/ui/dialog/find.cpp index 9620382ea..af7241ef2 100644 --- a/src/ui/dialog/find.cpp +++ b/src/ui/dialog/find.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Bryce W. Harrington <bryce@bryceharrington.org> @@ -7,7 +8,7 @@ * * Copyright (C) 2004-2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "find.h" diff --git a/src/ui/dialog/find.h b/src/ui/dialog/find.h index 397f8b587..4f305b8c8 100644 --- a/src/ui/dialog/find.h +++ b/src/ui/dialog/find.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Find dialog */ @@ -6,7 +7,7 @@ * * Copyright (C) 2004, 2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_FIND_H diff --git a/src/ui/dialog/floating-behavior.cpp b/src/ui/dialog/floating-behavior.cpp index 27e5f70d2..90b02c4c7 100644 --- a/src/ui/dialog/floating-behavior.cpp +++ b/src/ui/dialog/floating-behavior.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Floating dialog implementation. @@ -7,7 +8,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/dialog.h> diff --git a/src/ui/dialog/floating-behavior.h b/src/ui/dialog/floating-behavior.h index 015ddfa27..d6d8952c3 100644 --- a/src/ui/dialog/floating-behavior.h +++ b/src/ui/dialog/floating-behavior.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A floating dialog implementation. */ @@ -6,7 +7,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/dialog/font-substitution.cpp b/src/ui/dialog/font-substitution.cpp index a75515227..549c3d665 100644 --- a/src/ui/dialog/font-substitution.cpp +++ b/src/ui/dialog/font-substitution.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * * Copyright (C) 2012 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <set> diff --git a/src/ui/dialog/font-substitution.h b/src/ui/dialog/font-substitution.h index 3d42c01f2..107c53470 100644 --- a/src/ui/dialog/font-substitution.h +++ b/src/ui/dialog/font-substitution.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief FontSubstitution dialog */ @@ -6,7 +7,7 @@ * * Copyright (C) 2012 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_FONT_SUBSTITUTION_H diff --git a/src/ui/dialog/glyphs.cpp b/src/ui/dialog/glyphs.cpp index a41eb41e5..f080315ec 100644 --- a/src/ui/dialog/glyphs.cpp +++ b/src/ui/dialog/glyphs.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Jon A. Cruz * Abhishek Sharma * Tavmjong Bah * * Copyright (C) 2010 Jon A. Cruz - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <vector> diff --git a/src/ui/dialog/glyphs.h b/src/ui/dialog/glyphs.h index 76d26eac8..33076833e 100644 --- a/src/ui/dialog/glyphs.h +++ b/src/ui/dialog/glyphs.h @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Jon A. Cruz * * Copyright (C) 2010 Jon A. Cruz - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_DIALOGS_GLYPHS_H #define SEEN_DIALOGS_GLYPHS_H diff --git a/src/ui/dialog/grid-arrange-tab.cpp b/src/ui/dialog/grid-arrange-tab.cpp index 4b3dce298..ba3df005e 100644 --- a/src/ui/dialog/grid-arrange-tab.cpp +++ b/src/ui/dialog/grid-arrange-tab.cpp @@ -1,19 +1,20 @@ - /* - * A simple dialog for creating grid type arrangements of selected objects - * - * Authors: - * Bob Jamison ( based off trace dialog) - * John Cliff - * Other dudes from The Inkscape Organization - * Abhishek Sharma - * Declara Denis - * - * Copyright (C) 2004 Bob Jamison - * Copyright (C) 2004 John Cliff - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ - //#define DEBUG_GRID_ARRANGE 1 +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * A simple dialog for creating grid type arrangements of selected objects + * + * Authors: + * Bob Jamison ( based off trace dialog) + * John Cliff + * Other dudes from The Inkscape Organization + * Abhishek Sharma + * Declara Denis + * + * Copyright (C) 2004 Bob Jamison + * Copyright (C) 2004 John Cliff + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ +//#define DEBUG_GRID_ARRANGE 1 #include "ui/dialog/grid-arrange-tab.h" #include <glibmm/i18n.h> @@ -29,7 +30,7 @@ #include "document.h" #include "document-undo.h" #include "desktop.h" - //#include "sp-item-transform.h" FIXME +//#include "sp-item-transform.h" FIXME #include "ui/dialog/tile.h" // for Inkscape::UI::Dialog::ArrangeDialog /* diff --git a/src/ui/dialog/grid-arrange-tab.h b/src/ui/dialog/grid-arrange-tab.h index c908d74bf..ff6afb862 100644 --- a/src/ui/dialog/grid-arrange-tab.h +++ b/src/ui/dialog/grid-arrange-tab.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @brief Arranges Objects into a Grid */ @@ -11,7 +12,7 @@ * Copyright (C) 2004 Bob Jamison * Copyright (C) 2004 John Cliff * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_GRID_ARRANGE_TAB_H diff --git a/src/ui/dialog/guides.cpp b/src/ui/dialog/guides.cpp index ab7758b04..a4027832a 100644 --- a/src/ui/dialog/guides.cpp +++ b/src/ui/dialog/guides.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Simple guideline dialog. @@ -10,7 +11,7 @@ * * Copyright (C) 1999-2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "guides.h" diff --git a/src/ui/dialog/guides.h b/src/ui/dialog/guides.h index e1dc397a2..2da8b4911 100644 --- a/src/ui/dialog/guides.h +++ b/src/ui/dialog/guides.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Andrius R. <knutux@gmail.com> @@ -5,7 +6,7 @@ * * Copyright (C) 2006-2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_DIALOG_GUIDELINE_H diff --git a/src/ui/dialog/icon-preview.cpp b/src/ui/dialog/icon-preview.cpp index 5d4014cb7..e3f157a2b 100644 --- a/src/ui/dialog/icon-preview.cpp +++ b/src/ui/dialog/icon-preview.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * A simple dialog for previewing icon representation. @@ -11,7 +12,7 @@ * Copyright (C) 2004 Bob Jamison * Copyright (C) 2005,2010 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/dialog/icon-preview.h b/src/ui/dialog/icon-preview.h index ac8b47d34..8e243d802 100644 --- a/src/ui/dialog/icon-preview.h +++ b/src/ui/dialog/icon-preview.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A simple dialog for previewing icon representation. */ @@ -9,7 +10,7 @@ * Copyright (C) 2004,2005 The Inkscape Organization * Copyright (C) 2010 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_ICON_PREVIEW_H diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index ce77bf0a5..5b1bcc9d0 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Inkscape Preferences dialog - implementation. @@ -10,7 +11,7 @@ * * Copyright (C) 2004-2013 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/ui/dialog/inkscape-preferences.h b/src/ui/dialog/inkscape-preferences.h index fbdb8748e..f55680223 100644 --- a/src/ui/dialog/inkscape-preferences.h +++ b/src/ui/dialog/inkscape-preferences.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Inkscape Preferences dialog */ @@ -9,7 +10,7 @@ * * Copyright (C) 2004-2013 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_INKSCAPE_PREFERENCES_H diff --git a/src/ui/dialog/input.cpp b/src/ui/dialog/input.cpp index 012b76a38..b1578d6dc 100644 --- a/src/ui/dialog/input.cpp +++ b/src/ui/dialog/input.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Input devices dialog (new) - implementation. @@ -6,7 +7,7 @@ * Jon A. Cruz * * Copyright (C) 2008 Author - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <map> diff --git a/src/ui/dialog/input.h b/src/ui/dialog/input.h index bd102d8d1..08ad19cb7 100644 --- a/src/ui/dialog/input.h +++ b/src/ui/dialog/input.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Input devices dialog (new) */ @@ -5,7 +6,7 @@ * Jon A. Cruz * * Copyright (C) 2008 Author - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_INPUT_H diff --git a/src/ui/dialog/knot-properties.cpp b/src/ui/dialog/knot-properties.cpp index 4409b5186..708c90ea7 100644 --- a/src/ui/dialog/knot-properties.cpp +++ b/src/ui/dialog/knot-properties.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Dialog for renaming layers. @@ -10,7 +11,7 @@ * Copyright (C) 2004 Bryce Harrington * Copyright (C) 2006 Andrius R. * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/dialog/knot-properties.h" diff --git a/src/ui/dialog/knot-properties.h b/src/ui/dialog/knot-properties.h index 4cf94a79a..fb88fade5 100644 --- a/src/ui/dialog/knot-properties.h +++ b/src/ui/dialog/knot-properties.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief */ @@ -6,7 +7,7 @@ * * Copyright (C) 2004 Bryce Harrington * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_DIALOG_KNOT_PROPERTIES_H diff --git a/src/ui/dialog/layer-properties.cpp b/src/ui/dialog/layer-properties.cpp index 256360cf9..ddd0fcf7e 100644 --- a/src/ui/dialog/layer-properties.cpp +++ b/src/ui/dialog/layer-properties.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Dialog for renaming layers. @@ -10,7 +11,7 @@ * Copyright (C) 2004 Bryce Harrington * Copyright (C) 2006 Andrius R. * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "layer-properties.h" diff --git a/src/ui/dialog/layer-properties.h b/src/ui/dialog/layer-properties.h index 8d3500910..7cdd130bc 100644 --- a/src/ui/dialog/layer-properties.h +++ b/src/ui/dialog/layer-properties.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Dialog for renaming layers */ @@ -6,7 +7,7 @@ * * Copyright (C) 2004 Bryce Harrington * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_DIALOG_LAYER_PROPERTIES_H diff --git a/src/ui/dialog/layers.cpp b/src/ui/dialog/layers.cpp index d9f495152..2a08a4355 100644 --- a/src/ui/dialog/layers.cpp +++ b/src/ui/dialog/layers.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple panel for layers * @@ -7,7 +8,7 @@ * * Copyright (C) 2006,2010 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "layers.h" diff --git a/src/ui/dialog/layers.h b/src/ui/dialog/layers.h index eb115d5e4..99c504e90 100644 --- a/src/ui/dialog/layers.h +++ b/src/ui/dialog/layers.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple dialog for layer UI. * @@ -6,7 +7,7 @@ * * Copyright (C) 2006,2010 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_LAYERS_PANEL_H diff --git a/src/ui/dialog/livepatheffect-add.cpp b/src/ui/dialog/livepatheffect-add.cpp index b64961d05..1fae9a513 100644 --- a/src/ui/dialog/livepatheffect-add.cpp +++ b/src/ui/dialog/livepatheffect-add.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Dialog for adding a live path effect. @@ -5,7 +6,7 @@ * Author: * * Copyright (C) 2012 Authors - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/ui/dialog/livepatheffect-add.h b/src/ui/dialog/livepatheffect-add.h index 7bfb1ab5d..84901385c 100644 --- a/src/ui/dialog/livepatheffect-add.h +++ b/src/ui/dialog/livepatheffect-add.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Dialog for adding a live path effect. @@ -5,7 +6,7 @@ * Author: * * Copyright (C) 2012 Authors - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_DIALOG_LIVEPATHEFFECT_ADD_H diff --git a/src/ui/dialog/livepatheffect-editor.cpp b/src/ui/dialog/livepatheffect-editor.cpp index d6fe43b67..4ea6b737f 100644 --- a/src/ui/dialog/livepatheffect-editor.cpp +++ b/src/ui/dialog/livepatheffect-editor.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Live Path Effect editing dialog - implementation. @@ -9,7 +10,7 @@ * Abhishek Sharma * * Copyright (C) 2007 Authors - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "livepatheffect-editor.h" diff --git a/src/ui/dialog/livepatheffect-editor.h b/src/ui/dialog/livepatheffect-editor.h index 31513d2f9..fdcb49145 100644 --- a/src/ui/dialog/livepatheffect-editor.h +++ b/src/ui/dialog/livepatheffect-editor.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Live Path Effect editing dialog */ @@ -5,7 +6,7 @@ * Johan Engelen <j.b.c.engelen@ewi.utwente.nl> * * Copyright (C) 2007 Author - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_LIVE_PATH_EFFECT_H diff --git a/src/ui/dialog/lpe-fillet-chamfer-properties.cpp b/src/ui/dialog/lpe-fillet-chamfer-properties.cpp index e992d86ce..bbf4b31dc 100644 --- a/src/ui/dialog/lpe-fillet-chamfer-properties.cpp +++ b/src/ui/dialog/lpe-fillet-chamfer-properties.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * From the code of Liam P.White from his Power Stroke Knot dialog * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/ui/dialog/lpe-fillet-chamfer-properties.h b/src/ui/dialog/lpe-fillet-chamfer-properties.h index 0d9d7da0d..26a0569ab 100644 --- a/src/ui/dialog/lpe-fillet-chamfer-properties.h +++ b/src/ui/dialog/lpe-fillet-chamfer-properties.h @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * * From the code of Liam P.White from his Power Stroke Knot dialog * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_DIALOG_FILLET_CHAMFER_PROPERTIES_H diff --git a/src/ui/dialog/lpe-powerstroke-properties.cpp b/src/ui/dialog/lpe-powerstroke-properties.cpp index 8cf0a04fc..1e5d1b125 100644 --- a/src/ui/dialog/lpe-powerstroke-properties.cpp +++ b/src/ui/dialog/lpe-powerstroke-properties.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Dialog for renaming layers. @@ -10,7 +11,7 @@ * Copyright (C) 2004 Bryce Harrington * Copyright (C) 2006 Andrius R. * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "lpe-powerstroke-properties.h" diff --git a/src/ui/dialog/lpe-powerstroke-properties.h b/src/ui/dialog/lpe-powerstroke-properties.h index c7e70b298..0bf6539af 100644 --- a/src/ui/dialog/lpe-powerstroke-properties.h +++ b/src/ui/dialog/lpe-powerstroke-properties.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Dialog for renaming layers */ @@ -6,7 +7,7 @@ * * Copyright (C) 2004 Bryce Harrington * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_DIALOG_POWERSTROKE_PROPERTIES_H diff --git a/src/ui/dialog/memory.cpp b/src/ui/dialog/memory.cpp index 454034cc5..a4210ca0c 100644 --- a/src/ui/dialog/memory.cpp +++ b/src/ui/dialog/memory.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Memory statistics dialog. @@ -5,9 +6,9 @@ /* Authors: * MenTaLguY <mental@rydia.net> * - * Copyright (C) 2005 + * Copyright (C) 2005 * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/dialog/memory.h" diff --git a/src/ui/dialog/memory.h b/src/ui/dialog/memory.h index 3353dc440..5e6a91765 100644 --- a/src/ui/dialog/memory.h +++ b/src/ui/dialog/memory.h @@ -1,11 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Memory statistics dialog */ /* Authors: * MenTaLguY <mental@rydia.net> - * + * * Copyright 2005 Authors - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_UI_DIALOG_MEMORY_H diff --git a/src/ui/dialog/messages.cpp b/src/ui/dialog/messages.cpp index 5b0a11349..85ba840f5 100644 --- a/src/ui/dialog/messages.cpp +++ b/src/ui/dialog/messages.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Messages dialog - implementation. @@ -8,7 +9,7 @@ * * Copyright (C) 2004, 2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "messages.h" diff --git a/src/ui/dialog/messages.h b/src/ui/dialog/messages.h index d105ab46b..b3ad39320 100644 --- a/src/ui/dialog/messages.h +++ b/src/ui/dialog/messages.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Messages dialog * @@ -10,7 +11,7 @@ * Other dudes from The Inkscape Organization * * Copyright (C) 2004, 2005 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_MESSAGES_H diff --git a/src/ui/dialog/new-from-template.cpp b/src/ui/dialog/new-from-template.cpp index 7f30560d5..69423d988 100644 --- a/src/ui/dialog/new-from-template.cpp +++ b/src/ui/dialog/new-from-template.cpp @@ -1,11 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief New From Template main dialog - implementation */ /* Authors: - * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński + * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "new-from-template.h" diff --git a/src/ui/dialog/new-from-template.h b/src/ui/dialog/new-from-template.h index 35c0b5aba..a308fe4f7 100644 --- a/src/ui/dialog/new-from-template.h +++ b/src/ui/dialog/new-from-template.h @@ -1,11 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief New From Template main dialog */ /* Authors: - * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński + * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_SEEN_UI_DIALOG_NEW_FROM_TEMPLATE_H diff --git a/src/ui/dialog/object-attributes.cpp b/src/ui/dialog/object-attributes.cpp index 6801afa9c..f129854ca 100644 --- a/src/ui/dialog/object-attributes.cpp +++ b/src/ui/dialog/object-attributes.cpp @@ -1,24 +1,15 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Generic object attribute editor + *//* + * Authors: + * see git history + * Kris De Gussem <Kris.DeGussem@gmail.com> + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ -/* - * Inkscape, an Open Source vector graphics editor - * Copyright (C) 2012 Kris De Gussem <Kris.DeGussem@gmail.com> - * - * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ + #include <glibmm/i18n.h> diff --git a/src/ui/dialog/object-attributes.h b/src/ui/dialog/object-attributes.h index a1264b8cf..ad718ead4 100644 --- a/src/ui/dialog/object-attributes.h +++ b/src/ui/dialog/object-attributes.h @@ -1,23 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Generic object attribute editor - */ -/* - * Inkscape, an Open Source vector graphics editor - * Copyright (C) 2012 Kris De Gussem <Kris.DeGussem@gmail.com> - * - * 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, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + *//* + * Authors: + * see git history + * Kris De Gussem <Kris.DeGussem@gmail.com> + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_DIALOGS_OBJECT_ATTRIBUTES_H diff --git a/src/ui/dialog/object-properties.cpp b/src/ui/dialog/object-properties.cpp index 238b79a1a..b43a73c18 100644 --- a/src/ui/dialog/object-properties.cpp +++ b/src/ui/dialog/object-properties.cpp @@ -1,19 +1,20 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file Object properties dialog. */ -/* +/* * Inkscape, an Open Source vector graphics editor - * + * * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/ui/dialog/object-properties.h b/src/ui/dialog/object-properties.h index bc501c68e..a1974c02d 100644 --- a/src/ui/dialog/object-properties.h +++ b/src/ui/dialog/object-properties.h @@ -1,19 +1,20 @@ -/** +// SPDX-License-Identifier: GPL-2.0-or-later +/** * @file Object properties dialog. */ -/* +/* * Inkscape, an Open Source vector graphics editor - * + * * 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/ui/dialog/objects.cpp b/src/ui/dialog/objects.cpp index e95dfc05b..4d9fcc16d 100644 --- a/src/ui/dialog/objects.cpp +++ b/src/ui/dialog/objects.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple panel for objects * @@ -9,7 +10,7 @@ * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * Tavmjong Bah 2017 * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "objects.h" diff --git a/src/ui/dialog/objects.h b/src/ui/dialog/objects.h index 95e9863a9..79fb92509 100644 --- a/src/ui/dialog/objects.h +++ b/src/ui/dialog/objects.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple dialog for objects UI. * @@ -8,7 +9,7 @@ * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * Tavmjong Bah 2017 * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_OBJECTS_PANEL_H diff --git a/src/ui/dialog/ocaldialogs.cpp b/src/ui/dialog/ocaldialogs.cpp index f1f31c553..279773def 100644 --- a/src/ui/dialog/ocaldialogs.cpp +++ b/src/ui/dialog/ocaldialogs.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Open Clip Art Library integration dialogs - implementation. @@ -9,7 +10,7 @@ * * Copyright (C) 2007 Bruno Dilly <bruno.dilly@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ocaldialogs.h" diff --git a/src/ui/dialog/ocaldialogs.h b/src/ui/dialog/ocaldialogs.h index 15513bd26..8d2694095 100644 --- a/src/ui/dialog/ocaldialogs.h +++ b/src/ui/dialog/ocaldialogs.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Open Clip Art Library integration dialogs */ @@ -7,9 +8,9 @@ * Andrew Higginson * * Copyright (C) 2007 Bruno Dilly <bruno.dilly@gmail.com> - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ - + #ifndef __OCAL_DIALOG_H__ #define __OCAL_DIALOG_H__ diff --git a/src/ui/dialog/panel-dialog.h b/src/ui/dialog/panel-dialog.h index 9faa8b69d..d644d0577 100644 --- a/src/ui/dialog/panel-dialog.h +++ b/src/ui/dialog/panel-dialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A panel holding dialog */ @@ -5,7 +6,7 @@ * C 2007 Gustav Broberg <broberg@kth.se> * C 2012 Kris De Gussem <Kris.DeGussem@gmail.com> * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_PANEL_DIALOG_H diff --git a/src/ui/dialog/pixelartdialog.cpp b/src/ui/dialog/pixelartdialog.cpp index 9901be38c..7a79a44e1 100644 --- a/src/ui/dialog/pixelartdialog.cpp +++ b/src/ui/dialog/pixelartdialog.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Pixel art tracing settings dialog - implementation. @@ -10,7 +11,7 @@ * * Copyright (C) 2004-2013 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/ui/dialog/pixelartdialog.h b/src/ui/dialog/pixelartdialog.h index a0add2e94..56795fd94 100644 --- a/src/ui/dialog/pixelartdialog.h +++ b/src/ui/dialog/pixelartdialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Bitmap tracing settings dialog */ @@ -7,7 +8,7 @@ * Other dudes from The Inkscape Organization * * Copyright (C) 2004, 2005 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __PIXELARTDIALOG_H__ diff --git a/src/ui/dialog/polar-arrange-tab.cpp b/src/ui/dialog/polar-arrange-tab.cpp index a44218f07..821e75ea8 100644 --- a/src/ui/dialog/polar-arrange-tab.cpp +++ b/src/ui/dialog/polar-arrange-tab.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @brief Arranges Objects into a Circle/Ellipse */ /* Authors: * Declara Denis * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/dialog/polar-arrange-tab.h b/src/ui/dialog/polar-arrange-tab.h index 32f7c8ab3..0c5acdee9 100644 --- a/src/ui/dialog/polar-arrange-tab.h +++ b/src/ui/dialog/polar-arrange-tab.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @brief Arranges Objects into a Circle/Ellipse */ /* Authors: * Declara Denis * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_POLAR_ARRANGE_TAB_H diff --git a/src/ui/dialog/print-colors-preview-dialog.cpp b/src/ui/dialog/print-colors-preview-dialog.cpp index b53591a9a..6371af9d4 100644 --- a/src/ui/dialog/print-colors-preview-dialog.cpp +++ b/src/ui/dialog/print-colors-preview-dialog.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Print Colors Preview dialog - implementation. @@ -6,7 +7,7 @@ * Felipe C. da S. Sanches <juca@members.fsf.org> * * Copyright (C) 2009 Authors - * Released under GNU GPLv2 (or later). Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /* #include "desktop.h" @@ -19,7 +20,7 @@ namespace UI { namespace Dialog { //Yes, I know we shouldn't hardcode CMYK. This class needs to be refactored -// in order to accommodate spot colors and color components defined using +// in order to accommodate spot colors and color components defined using // ICC colors. --Juca void PrintColorsPreviewDialog::toggle_cyan(){ diff --git a/src/ui/dialog/print-colors-preview-dialog.h b/src/ui/dialog/print-colors-preview-dialog.h index 11798d00a..e40f987fa 100644 --- a/src/ui/dialog/print-colors-preview-dialog.h +++ b/src/ui/dialog/print-colors-preview-dialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Print Colors Preview dialog */ @@ -5,7 +6,7 @@ * Felipe Corrêa da Silva Sanches <juca@members.fsf.org> * * Copyright (C) 2009 Authors - * Released under GNU GPLv2 (or later). Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_PRINT_COLORS_PREVIEW_H diff --git a/src/ui/dialog/print.cpp b/src/ui/dialog/print.cpp index a3c4a2ce2..65f1297d5 100644 --- a/src/ui/dialog/print.cpp +++ b/src/ui/dialog/print.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Print dialog. @@ -9,7 +10,7 @@ * * Copyright (C) 2007 Kees Cook * Copyright (C) 2017 Patrick McDermott - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cmath> diff --git a/src/ui/dialog/print.h b/src/ui/dialog/print.h index 1eda9043f..d0152100a 100644 --- a/src/ui/dialog/print.h +++ b/src/ui/dialog/print.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Print dialog */ @@ -5,7 +6,7 @@ * Kees Cook <kees@outflux.net> * * Copyright (C) 2007 Kees Cook - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_PRINT_H diff --git a/src/ui/dialog/prototype.cpp b/src/ui/dialog/prototype.cpp index ee0cbe1ab..fc5fe3c02 100644 --- a/src/ui/dialog/prototype.cpp +++ b/src/ui/dialog/prototype.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A bare minimum example of deriving from Inkscape::UI:Widget::Panel. * @@ -6,7 +7,7 @@ * * Copyright (C) Tavmjong Bah <tavmjong@free.fr> * - * Released under the GNU GPL, read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "prototype.h" diff --git a/src/ui/dialog/prototype.h b/src/ui/dialog/prototype.h index 001e3d39f..ea90bd496 100644 --- a/src/ui/dialog/prototype.h +++ b/src/ui/dialog/prototype.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A bare minimum example of deriving from Inkscape::UI:Widget::Panel. * @@ -6,7 +7,7 @@ * * Copyright (C) Tavmjong Bah <tavmjong@free.fr> * - * Released under the GNU GPL, read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_PROTOTYPE_PANEL_H diff --git a/src/ui/dialog/save-template-dialog.cpp b/src/ui/dialog/save-template-dialog.cpp index e16bf45f7..74e156eaa 100644 --- a/src/ui/dialog/save-template-dialog.cpp +++ b/src/ui/dialog/save-template-dialog.cpp @@ -1,3 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + #include "save-template-dialog.h" #include "file.h" #include "io/resource.h" diff --git a/src/ui/dialog/save-template-dialog.h b/src/ui/dialog/save-template-dialog.h index 3f2cbddc1..8cf2d8e08 100644 --- a/src/ui/dialog/save-template-dialog.h +++ b/src/ui/dialog/save-template-dialog.h @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2017 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifndef INKSCAPE_SEEN_UI_DIALOG_SAVE_TEMPLATE_H #define INKSCAPE_SEEN_UI_DIALOG_SAVE_TEMPLATE_H diff --git a/src/ui/dialog/spellcheck.cpp b/src/ui/dialog/spellcheck.cpp index 653c1d9b0..2f485bcce 100644 --- a/src/ui/dialog/spellcheck.cpp +++ b/src/ui/dialog/spellcheck.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Spellcheck dialog. @@ -9,7 +10,7 @@ * * Copyright (C) 2009 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/ui/dialog/spellcheck.h b/src/ui/dialog/spellcheck.h index 3fbb28afe..6726cf417 100644 --- a/src/ui/dialog/spellcheck.h +++ b/src/ui/dialog/spellcheck.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Spellcheck dialog */ @@ -6,7 +7,7 @@ * * Copyright (C) 2009 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_SPELLCHECK_H diff --git a/src/ui/dialog/styledialog.cpp b/src/ui/dialog/styledialog.cpp index 15f713591..bd2cacafe 100644 --- a/src/ui/dialog/styledialog.cpp +++ b/src/ui/dialog/styledialog.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A dialog for CSS selectors */ @@ -8,7 +9,7 @@ * Copyright (C) Kamalpreet Kaur Grewal 2016 <grewalkamal005@gmail.com> * Copyright (C) Tavmjong Bah 2017 <tavmjong@free.fr> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "styledialog.h" diff --git a/src/ui/dialog/styledialog.h b/src/ui/dialog/styledialog.h index d3e49ea17..521c319f2 100644 --- a/src/ui/dialog/styledialog.h +++ b/src/ui/dialog/styledialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A dialog for CSS selectors */ @@ -8,7 +9,7 @@ * Copyright (C) Kamalpreet Kaur Grewal 2016 <grewalkamal005@gmail.com> * Copyright (C) Tavmjong Bah 2017 <tavmjong@free.fr> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef STYLEDIALOG_H diff --git a/src/ui/dialog/svg-fonts-dialog.cpp b/src/ui/dialog/svg-fonts-dialog.cpp index 3e42c99e6..dfe8482ea 100644 --- a/src/ui/dialog/svg-fonts-dialog.cpp +++ b/src/ui/dialog/svg-fonts-dialog.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * SVG Fonts dialog - implementation. @@ -8,7 +9,7 @@ * Abhishek Sharma * * Copyright (C) 2008 Authors - * Released under GNU GPLv2 (or later). Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <message-stack.h> diff --git a/src/ui/dialog/svg-fonts-dialog.h b/src/ui/dialog/svg-fonts-dialog.h index 87c98e569..ae07d7fb1 100644 --- a/src/ui/dialog/svg-fonts-dialog.h +++ b/src/ui/dialog/svg-fonts-dialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief SVG Fonts dialog */ @@ -5,7 +6,7 @@ * Felipe Corrêa da Silva Sanches <juca@members.fsf.org> * * Copyright (C) 2008 Authors - * Released under GNU GPLv2 (or later). Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_SVG_FONTS_H diff --git a/src/ui/dialog/swatches.cpp b/src/ui/dialog/swatches.cpp index 90f661eb8..141f11ae0 100644 --- a/src/ui/dialog/swatches.cpp +++ b/src/ui/dialog/swatches.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Jon A. Cruz * John Bintz @@ -6,7 +7,7 @@ * Copyright (C) 2005 Jon A. Cruz * Copyright (C) 2008 John Bintz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <map> diff --git a/src/ui/dialog/swatches.h b/src/ui/dialog/swatches.h index b742896bf..a6e26256b 100644 --- a/src/ui/dialog/swatches.h +++ b/src/ui/dialog/swatches.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Color swatches dialog */ @@ -5,7 +6,7 @@ * Jon A. Cruz * * Copyright (C) 2005 Jon A. Cruz - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_DIALOGS_SWATCHES_H #define SEEN_DIALOGS_SWATCHES_H diff --git a/src/ui/dialog/symbols.cpp b/src/ui/dialog/symbols.cpp index ce1e4863b..8ed9ee516 100644 --- a/src/ui/dialog/symbols.cpp +++ b/src/ui/dialog/symbols.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Symbols dialog. @@ -5,7 +6,7 @@ /* Authors: * Copyright (C) 2012 Tavmjong Bah * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/ui/dialog/symbols.h b/src/ui/dialog/symbols.h index e6970c801..d4a26ee14 100644 --- a/src/ui/dialog/symbols.h +++ b/src/ui/dialog/symbols.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Symbols dialog */ @@ -8,7 +9,7 @@ * 2013 Martin Owens * 2017 Jabiertxo Arraiza * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_SYMBOLS_H diff --git a/src/ui/dialog/tags.cpp b/src/ui/dialog/tags.cpp index 3306ba432..f2f856758 100644 --- a/src/ui/dialog/tags.cpp +++ b/src/ui/dialog/tags.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple panel for tags * @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "tags.h" diff --git a/src/ui/dialog/tags.h b/src/ui/dialog/tags.h index 68a041b32..17c24271b 100644 --- a/src/ui/dialog/tags.h +++ b/src/ui/dialog/tags.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple dialog for tags UI. * @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_TAGS_PANEL_H diff --git a/src/ui/dialog/template-load-tab.cpp b/src/ui/dialog/template-load-tab.cpp index 9e710f0fb..c4b5b5254 100644 --- a/src/ui/dialog/template-load-tab.cpp +++ b/src/ui/dialog/template-load-tab.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief New From Template abstract tab implementation */ @@ -5,7 +6,7 @@ * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "template-widget.h" diff --git a/src/ui/dialog/template-load-tab.h b/src/ui/dialog/template-load-tab.h index dd5d7e22e..037d7782c 100644 --- a/src/ui/dialog/template-load-tab.h +++ b/src/ui/dialog/template-load-tab.h @@ -1,11 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief New From Template abstract tab class */ /* Authors: - * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński + * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_SEEN_UI_DIALOG_TEMPLATE_LOAD_TAB_H diff --git a/src/ui/dialog/template-widget.cpp b/src/ui/dialog/template-widget.cpp index 978cadb53..532ac2cdb 100644 --- a/src/ui/dialog/template-widget.cpp +++ b/src/ui/dialog/template-widget.cpp @@ -1,11 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief New From Template - templates widget - implementation */ /* Authors: - * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński + * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "template-widget.h" diff --git a/src/ui/dialog/template-widget.h b/src/ui/dialog/template-widget.h index 13488089c..8384be329 100644 --- a/src/ui/dialog/template-widget.h +++ b/src/ui/dialog/template-widget.h @@ -1,11 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief New From Template - template widget */ /* Authors: - * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński + * Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_SEEN_UI_DIALOG_TEMPLATE_WIDGET_H diff --git a/src/ui/dialog/text-edit.cpp b/src/ui/dialog/text-edit.cpp index 775d9a88e..a0c814dfd 100644 --- a/src/ui/dialog/text-edit.cpp +++ b/src/ui/dialog/text-edit.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Text editing dialog. @@ -13,7 +14,7 @@ * Copyright (C) 1999-2013 Authors * Copyright (C) 2000-2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/ui/dialog/text-edit.h b/src/ui/dialog/text-edit.h index f95b44eda..0d09e24b5 100644 --- a/src/ui/dialog/text-edit.h +++ b/src/ui/dialog/text-edit.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Text-edit */ @@ -12,7 +13,7 @@ * Copyright (C) 1999-2013 Authors * Copyright (C) 2000-2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_TEXT_EDIT_H diff --git a/src/ui/dialog/tile.cpp b/src/ui/dialog/tile.cpp index 0f0e3f8b3..ba980cb65 100644 --- a/src/ui/dialog/tile.cpp +++ b/src/ui/dialog/tile.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple dialog for creating grid type arrangements of selected objects * @@ -11,7 +12,7 @@ * Copyright (C) 2004 Bob Jamison * Copyright (C) 2004 John Cliff * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/dialog/grid-arrange-tab.h" diff --git a/src/ui/dialog/tile.h b/src/ui/dialog/tile.h index 765bc9652..26836e168 100644 --- a/src/ui/dialog/tile.h +++ b/src/ui/dialog/tile.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Dialog for creating grid type arrangements of selected objects */ @@ -10,7 +11,7 @@ * Copyright (C) 2004 Bob Jamison * Copyright (C) 2004 John Cliff * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_DIALOG_TILE_H diff --git a/src/ui/dialog/tracedialog.cpp b/src/ui/dialog/tracedialog.cpp index 3d3a49daf..eb7343454 100644 --- a/src/ui/dialog/tracedialog.cpp +++ b/src/ui/dialog/tracedialog.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Bitmap tracing settings dialog - implementation. @@ -9,7 +10,7 @@ * * Copyright (C) 2004-2006 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "tracedialog.h" diff --git a/src/ui/dialog/tracedialog.h b/src/ui/dialog/tracedialog.h index 9d7138d08..d02e705d5 100644 --- a/src/ui/dialog/tracedialog.h +++ b/src/ui/dialog/tracedialog.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Bitmap tracing settings dialog */ @@ -6,7 +7,7 @@ * Other dudes from The Inkscape Organization * * Copyright (C) 2004, 2005 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __TRACEDIALOG_H__ diff --git a/src/ui/dialog/transformation.cpp b/src/ui/dialog/transformation.cpp index a239fc72c..9edac0688 100644 --- a/src/ui/dialog/transformation.cpp +++ b/src/ui/dialog/transformation.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Transform dialog - implementation. @@ -8,7 +9,7 @@ * Abhishek Sharma * * Copyright (C) 2004, 2005 Authors - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/dialog.h> diff --git a/src/ui/dialog/transformation.h b/src/ui/dialog/transformation.h index 32a24c17f..98c0bab17 100644 --- a/src/ui/dialog/transformation.h +++ b/src/ui/dialog/transformation.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Transform dialog */ @@ -5,7 +6,7 @@ * Bryce W. Harrington <bryce@bryceharrington.org> * * Copyright (C) 2004, 2005 Authors - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_TRANSFORMATION_H diff --git a/src/ui/dialog/undo-history.cpp b/src/ui/dialog/undo-history.cpp index 012adb5d3..7ecb982f3 100644 --- a/src/ui/dialog/undo-history.cpp +++ b/src/ui/dialog/undo-history.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Undo History dialog - implementation. @@ -8,7 +9,7 @@ * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2014 Authors - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "undo-history.h" diff --git a/src/ui/dialog/undo-history.h b/src/ui/dialog/undo-history.h index 294479816..244980be6 100644 --- a/src/ui/dialog/undo-history.h +++ b/src/ui/dialog/undo-history.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Undo History dialog */ @@ -6,7 +7,7 @@ * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2014 Authors - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_DIALOG_UNDO_HISTORY_H diff --git a/src/ui/dialog/xml-tree.cpp b/src/ui/dialog/xml-tree.cpp index 2e53ebf32..7baccba6f 100644 --- a/src/ui/dialog/xml-tree.cpp +++ b/src/ui/dialog/xml-tree.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * XML editor. @@ -12,7 +13,7 @@ * Abhishek Sharma * * Copyright (C) 1999-2006 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * */ diff --git a/src/ui/dialog/xml-tree.h b/src/ui/dialog/xml-tree.h index e7f260b4b..09f90b0c4 100644 --- a/src/ui/dialog/xml-tree.h +++ b/src/ui/dialog/xml-tree.h @@ -1,13 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file - * @brief XML tree editing dialog for Inkscape - */ -/* Copyright Lauris Kaplinski, 2000 - * - * Released under GNU General Public License. - * * This is XML tree editor, which allows direct modifying of all elements * of Inkscape document, including foreign ones. + *//* + * Authors: see git history + * Lauris Kaplinski, 2000 * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_DIALOGS_XML_TREE_H diff --git a/src/ui/draw-anchor.cpp b/src/ui/draw-anchor.cpp index f21803b52..1b3252505 100644 --- a/src/ui/draw-anchor.cpp +++ b/src/ui/draw-anchor.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Anchors implementation. */ @@ -9,7 +10,7 @@ * Copyright (C) 2002 Lauris Kaplinski * Copyright (C) 2004 Monash University * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/draw-anchor.h b/src/ui/draw-anchor.h index 1f7b55920..5542b3bf6 100644 --- a/src/ui/draw-anchor.h +++ b/src/ui/draw-anchor.h @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2014 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifndef SEEN_DRAW_ANCHOR_H #define SEEN_DRAW_ANCHOR_H diff --git a/src/ui/event-debug.h b/src/ui/event-debug.h index dd33ca0e3..c6f979c1f 100644 --- a/src/ui/event-debug.h +++ b/src/ui/event-debug.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_UI_EVENT_DEBUG_H #define SEEN_UI_EVENT_DEBUG_H @@ -6,7 +7,7 @@ * Dump event data. */ /* - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtk/gtk.h> diff --git a/src/ui/icon-names.h b/src/ui/icon-names.h index f83d42174..2ec0dce5e 100644 --- a/src/ui/icon-names.h +++ b/src/ui/icon-names.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Macro for icon names used in Inkscape */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_ICON_NAMES_H diff --git a/src/ui/interface.cpp b/src/ui/interface.cpp index 723cd4659..5c0e44b44 100644 --- a/src/ui/interface.cpp +++ b/src/ui/interface.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Main UI stuff. @@ -16,7 +17,7 @@ * Copyright (C) 2004 David Turner * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/radiomenuitem.h> diff --git a/src/ui/interface.h b/src/ui/interface.h index d509ff82c..3ab88fbd4 100644 --- a/src/ui/interface.h +++ b/src/ui/interface.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_SP_INTERFACE_H #define SEEN_SP_INTERFACE_H @@ -14,7 +15,7 @@ * Copyright (C) 1999-2002 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/ustring.h> diff --git a/src/ui/monitor.cpp b/src/ui/monitor.cpp index af14d797d..1a15c015e 100644 --- a/src/ui/monitor.cpp +++ b/src/ui/monitor.cpp @@ -1,26 +1,13 @@ -/** - * \file +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file * \brief helper functions for retrieving monitor geometry, etc. *//* * Authors: + * see git history * Eduard Braun <eduard.braun2@gmx.de> * - * Copyright 2018 Authors - * - * This file is part of Inkscape. - * - * Inkscape 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. - * - * Inkscape 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 Inkscape. If not, see <http://www.gnu.org/licenses/>. + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gdkmm/rectangle.h> diff --git a/src/ui/monitor.h b/src/ui/monitor.h index 696a8ed73..df87fcbc8 100644 --- a/src/ui/monitor.h +++ b/src/ui/monitor.h @@ -1,26 +1,13 @@ -/** - * \file +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file * \brief helper functions for retrieving monitor geometry, etc. *//* * Authors: + * see git history * Eduard Braun <eduard.braun2@gmx.de> * - * Copyright 2018 Authors - * - * This file is part of Inkscape. - * - * Inkscape 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. - * - * Inkscape 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 Inkscape. If not, see <http://www.gnu.org/licenses/>. + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_MONITOR_H diff --git a/src/ui/previewable.h b/src/ui/previewable.h index f1282b0bc..76be394bb 100644 --- a/src/ui/previewable.h +++ b/src/ui/previewable.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_PREVIEWABLE_H #define SEEN_PREVIEWABLE_H @@ -9,7 +10,7 @@ * * Copyright (C) 2005 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/previewholder.cpp b/src/ui/previewholder.cpp index a39eb7ca6..236612ab3 100644 --- a/src/ui/previewholder.cpp +++ b/src/ui/previewholder.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A simple interface for previewing representations. * @@ -6,7 +7,7 @@ * * Copyright (C) 2005 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/previewholder.h b/src/ui/previewholder.h index 63273d3b0..325e9aa9f 100644 --- a/src/ui/previewholder.h +++ b/src/ui/previewholder.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_PREVIEW_HOLDER_H #define SEEN_PREVIEW_HOLDER_H @@ -10,7 +11,7 @@ * * Copyright (C) 2005 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/bin.h> diff --git a/src/ui/selected-color.cpp b/src/ui/selected-color.cpp index bdcfd9837..54b931be5 100644 --- a/src/ui/selected-color.cpp +++ b/src/ui/selected-color.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Color selected in color selector widget. * This file was created during the refactoring of SPColorSelector @@ -8,7 +9,7 @@ * Tomasz Boczkowski <penginsbacon@gmail.com> * * Copyright (C) 2014 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/ustring.h> diff --git a/src/ui/selected-color.h b/src/ui/selected-color.h index 36d5e5233..f2dae7735 100644 --- a/src/ui/selected-color.h +++ b/src/ui/selected-color.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Color selected in color selector widget. * This file was created during the refactoring of SPColorSelector @@ -8,7 +9,7 @@ * Tomasz Boczkowski <penginsbacon@gmail.com> * * Copyright (C) 2014 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_SELECTED_COLOR #define SEEN_SELECTED_COLOR diff --git a/src/ui/shape-editor-knotholders.cpp b/src/ui/shape-editor-knotholders.cpp index 9383ac117..2f865504a 100644 --- a/src/ui/shape-editor-knotholders.cpp +++ b/src/ui/shape-editor-knotholders.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Node editing extension to objects * @@ -8,7 +9,7 @@ * Abhishek Sharma * Jon A. Cruz <jon@joncruz.org> * - * Licensed under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/shape-editor.cpp b/src/ui/shape-editor.cpp index 34127dc66..c975eb6cc 100644 --- a/src/ui/shape-editor.cpp +++ b/src/ui/shape-editor.cpp @@ -1,10 +1,15 @@ -/* +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file * Inkscape::ShapeEditor - * - * Authors: + * This is a container class which contains a knotholder for shapes. + * It is attached to a single item. + *//* + * Authors: see git history * bulia byak <buliabyak@users.sf.net> * Krzysztof Kosiński <tweenk.pl@gmail.com> * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "desktop.h" diff --git a/src/ui/shape-editor.h b/src/ui/shape-editor.h index 4618d13e1..d867ad921 100644 --- a/src/ui/shape-editor.h +++ b/src/ui/shape-editor.h @@ -1,16 +1,17 @@ -#ifndef SEEN_SHAPE_EDITOR_H -#define SEEN_SHAPE_EDITOR_H - -/* +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file * Inkscape::ShapeEditor - * * This is a container class which contains a knotholder for shapes. * It is attached to a single item. - * - * Authors: + *//* + * Authors: see git history * bulia byak <buliabyak@users.sf.net> * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ +#ifndef SEEN_SHAPE_EDITOR_H +#define SEEN_SHAPE_EDITOR_H class KnotHolder; class LivePathEffectObject; diff --git a/src/ui/tool-factory.cpp b/src/ui/tool-factory.cpp index 189ff21df..eb41edd5b 100644 --- a/src/ui/tool-factory.cpp +++ b/src/ui/tool-factory.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Factory for ToolBase tree * @@ -5,7 +6,7 @@ * Markus Engel * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "tool-factory.h" diff --git a/src/ui/tool-factory.h b/src/ui/tool-factory.h index 3b041fec5..e6dcbd29d 100644 --- a/src/ui/tool-factory.h +++ b/src/ui/tool-factory.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Factory for ToolBase tree * @@ -5,7 +6,7 @@ * Markus Engel * * Copyright (C) 2013 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef TOOL_FACTORY_SEEN diff --git a/src/ui/tool/commit-events.h b/src/ui/tool/commit-events.h index 110564ba3..37fb86164 100644 --- a/src/ui/tool/commit-events.h +++ b/src/ui/tool/commit-events.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Commit events. */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_COMMIT_EVENTS_H diff --git a/src/ui/tool/control-point-selection.cpp b/src/ui/tool/control-point-selection.cpp index 27105b8cf..915ed2a78 100644 --- a/src/ui/tool/control-point-selection.cpp +++ b/src/ui/tool/control-point-selection.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Node selection - implementation. @@ -6,7 +7,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <boost/none.hpp> diff --git a/src/ui/tool/control-point-selection.h b/src/ui/tool/control-point-selection.h index 046b98649..40959fc8e 100644 --- a/src/ui/tool/control-point-selection.h +++ b/src/ui/tool/control-point-selection.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Control point selection - stores a set of control points and applies transformations * to them @@ -6,7 +7,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_CONTROL_POINT_SELECTION_H diff --git a/src/ui/tool/control-point.cpp b/src/ui/tool/control-point.cpp index 54fc4718f..dfa165804 100644 --- a/src/ui/tool/control-point.cpp +++ b/src/ui/tool/control-point.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Krzysztof Kosiński <tweenk.pl@gmail.com> * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <iostream> diff --git a/src/ui/tool/control-point.h b/src/ui/tool/control-point.h index 9b71522e3..b97f3cbcb 100644 --- a/src/ui/tool/control-point.h +++ b/src/ui/tool/control-point.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Krzysztof Kosiński <tweenk.pl@gmail.com> * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2012 Authors * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_CONTROL_POINT_H diff --git a/src/ui/tool/curve-drag-point.cpp b/src/ui/tool/curve-drag-point.cpp index 685823aaa..931726275 100644 --- a/src/ui/tool/curve-drag-point.cpp +++ b/src/ui/tool/curve-drag-point.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Krzysztof Kosiński <tweenk.pl@gmail.com> * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/tool/curve-drag-point.h" diff --git a/src/ui/tool/curve-drag-point.h b/src/ui/tool/curve-drag-point.h index 925d8d05d..bfe0ad74c 100644 --- a/src/ui/tool/curve-drag-point.h +++ b/src/ui/tool/curve-drag-point.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Krzysztof Kosiński <tweenk.pl@gmail.com> * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_CURVE_DRAG_POINT_H diff --git a/src/ui/tool/event-utils.cpp b/src/ui/tool/event-utils.cpp index 99e861240..33a196df0 100644 --- a/src/ui/tool/event-utils.cpp +++ b/src/ui/tool/event-utils.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Collection of shorthands to deal with GDK events. */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstring> diff --git a/src/ui/tool/event-utils.h b/src/ui/tool/event-utils.h index de29c3dda..3fd8f16a2 100644 --- a/src/ui/tool/event-utils.h +++ b/src/ui/tool/event-utils.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Collection of shorthands to deal with GDK events. */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_EVENT_UTILS_H diff --git a/src/ui/tool/manipulator.cpp b/src/ui/tool/manipulator.cpp index 82ff014e4..a68de5e98 100644 --- a/src/ui/tool/manipulator.cpp +++ b/src/ui/tool/manipulator.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Manipulator base class and manipulator group - implementation */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ //#include "ui/tool/node.h" diff --git a/src/ui/tool/manipulator.h b/src/ui/tool/manipulator.h index 0e6c1ae4e..161d36bc1 100644 --- a/src/ui/tool/manipulator.h +++ b/src/ui/tool/manipulator.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Manipulator - edits something on-canvas */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_MANIPULATOR_H diff --git a/src/ui/tool/modifier-tracker.cpp b/src/ui/tool/modifier-tracker.cpp index f502acab2..70c85a6a5 100644 --- a/src/ui/tool/modifier-tracker.cpp +++ b/src/ui/tool/modifier-tracker.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Fine-grained modifier tracker for event handling. */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gdk/gdk.h> diff --git a/src/ui/tool/modifier-tracker.h b/src/ui/tool/modifier-tracker.h index 8c8787e87..c5762e589 100644 --- a/src/ui/tool/modifier-tracker.h +++ b/src/ui/tool/modifier-tracker.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Fine-grained modifier tracker for event handling. */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_MODIFIER_TRACKER_H diff --git a/src/ui/tool/multi-path-manipulator.cpp b/src/ui/tool/multi-path-manipulator.cpp index a92b129e9..b107ab359 100644 --- a/src/ui/tool/multi-path-manipulator.cpp +++ b/src/ui/tool/multi-path-manipulator.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Multi path manipulator - implementation. @@ -7,7 +8,7 @@ * Abhishek Sharma * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <unordered_set> diff --git a/src/ui/tool/multi-path-manipulator.h b/src/ui/tool/multi-path-manipulator.h index 3e5667591..102f85dff 100644 --- a/src/ui/tool/multi-path-manipulator.h +++ b/src/ui/tool/multi-path-manipulator.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Multi path manipulator - a tool component that edits multiple paths at once */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_MULTI_PATH_MANIPULATOR_H diff --git a/src/ui/tool/node-types.h b/src/ui/tool/node-types.h index e4921fa8d..ee2d27fc9 100644 --- a/src/ui/tool/node-types.h +++ b/src/ui/tool/node-types.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Node types and other small enums. * This file exists to reduce the number of includes pulled in by toolbox.cpp. @@ -6,7 +7,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_NODE_TYPES_H diff --git a/src/ui/tool/node.cpp b/src/ui/tool/node.cpp index 49ee0cb1d..4321963b9 100644 --- a/src/ui/tool/node.cpp +++ b/src/ui/tool/node.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Krzysztof Kosiński <tweenk.pl@gmail.com> * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <iostream> diff --git a/src/ui/tool/node.h b/src/ui/tool/node.h index f8c99dde0..26678a304 100644 --- a/src/ui/tool/node.h +++ b/src/ui/tool/node.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Editable node and associated data structures. */ @@ -6,7 +7,7 @@ * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_NODE_H diff --git a/src/ui/tool/path-manipulator.cpp b/src/ui/tool/path-manipulator.cpp index 05e691f07..a2390f3a9 100644 --- a/src/ui/tool/path-manipulator.cpp +++ b/src/ui/tool/path-manipulator.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Path manipulator - implementation. @@ -7,7 +8,7 @@ * Abhishek Sharma * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <2geom/bezier-utils.h> diff --git a/src/ui/tool/path-manipulator.h b/src/ui/tool/path-manipulator.h index cf5142600..49fab1bdc 100644 --- a/src/ui/tool/path-manipulator.h +++ b/src/ui/tool/path-manipulator.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Path manipulator - a component that edits a single path on-canvas */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_PATH_MANIPULATOR_H diff --git a/src/ui/tool/selectable-control-point.cpp b/src/ui/tool/selectable-control-point.cpp index 83ed7d38b..02480ec10 100644 --- a/src/ui/tool/selectable-control-point.cpp +++ b/src/ui/tool/selectable-control-point.cpp @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Krzysztof Kosiński <tweenk.pl@gmail.com> * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/tool/selectable-control-point.h" diff --git a/src/ui/tool/selectable-control-point.h b/src/ui/tool/selectable-control-point.h index b083516c4..919988a75 100644 --- a/src/ui/tool/selectable-control-point.h +++ b/src/ui/tool/selectable-control-point.h @@ -1,9 +1,10 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* Authors: * Krzysztof Kosiński <tweenk.pl@gmail.com> * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_SELECTABLE_CONTROL_POINT_H diff --git a/src/ui/tool/selector.cpp b/src/ui/tool/selector.cpp index 376de399e..e7ed5305c 100644 --- a/src/ui/tool/selector.cpp +++ b/src/ui/tool/selector.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Selector component (click and rubberband) */ @@ -6,7 +7,7 @@ * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "control-point.h" diff --git a/src/ui/tool/selector.h b/src/ui/tool/selector.h index 450e318f6..6881a63fd 100644 --- a/src/ui/tool/selector.h +++ b/src/ui/tool/selector.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Selector component (click and rubberband) */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_SELECTOR_H diff --git a/src/ui/tool/shape-record.h b/src/ui/tool/shape-record.h index 646e6f4f6..737daf4de 100644 --- a/src/ui/tool/shape-record.h +++ b/src/ui/tool/shape-record.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Structures that store data needed for shape editing which are not contained * directly in the XML node @@ -6,7 +7,7 @@ * Krzysztof Kosiński <tweenk.pl@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_SHAPE_RECORD_H diff --git a/src/ui/tool/transform-handle-set.cpp b/src/ui/tool/transform-handle-set.cpp index b0da4f026..781675a99 100644 --- a/src/ui/tool/transform-handle-set.cpp +++ b/src/ui/tool/transform-handle-set.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Affine transform handles component */ @@ -6,7 +7,7 @@ * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cmath> diff --git a/src/ui/tool/transform-handle-set.h b/src/ui/tool/transform-handle-set.h index 023e4f855..803e27c49 100644 --- a/src/ui/tool/transform-handle-set.h +++ b/src/ui/tool/transform-handle-set.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Affine transform handles component */ @@ -6,7 +7,7 @@ * Jon A. Cruz <jon@joncruz.org> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_TRANSFORM_HANDLE_SET_H diff --git a/src/ui/toolbar/arc-toolbar.cpp b/src/ui/toolbar/arc-toolbar.cpp index 8d1548919..4f31d0ea8 100644 --- a/src/ui/toolbar/arc-toolbar.cpp +++ b/src/ui/toolbar/arc-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Arc aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "arc-toolbar.h" diff --git a/src/ui/toolbar/arc-toolbar.h b/src/ui/toolbar/arc-toolbar.h index ca1319631..821db6dd7 100644 --- a/src/ui/toolbar/arc-toolbar.h +++ b/src/ui/toolbar/arc-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_ARC_TOOLBAR_H #define SEEN_ARC_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/box3d-toolbar.cpp b/src/ui/toolbar/box3d-toolbar.cpp index 32a5f2462..fb59b13b9 100644 --- a/src/ui/toolbar/box3d-toolbar.cpp +++ b/src/ui/toolbar/box3d-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * 3d box aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtk/gtk.h> diff --git a/src/ui/toolbar/box3d-toolbar.h b/src/ui/toolbar/box3d-toolbar.h index cba9ca2d8..962a43c25 100644 --- a/src/ui/toolbar/box3d-toolbar.h +++ b/src/ui/toolbar/box3d-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_BOX3D_TOOLBAR_H #define SEEN_BOX3D_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/toolbar/calligraphy-toolbar.cpp b/src/ui/toolbar/calligraphy-toolbar.cpp index b34329437..85afa9872 100644 --- a/src/ui/toolbar/calligraphy-toolbar.cpp +++ b/src/ui/toolbar/calligraphy-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Calligraphy aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/dialog/calligraphic-profile-rename.h" diff --git a/src/ui/toolbar/calligraphy-toolbar.h b/src/ui/toolbar/calligraphy-toolbar.h index e3caa19ee..ea9804d2e 100644 --- a/src/ui/toolbar/calligraphy-toolbar.h +++ b/src/ui/toolbar/calligraphy-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_CALLIGRAPHY_TOOLBAR_H #define SEEN_CALLIGRAPHY_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/connector-toolbar.cpp b/src/ui/toolbar/connector-toolbar.cpp index 3f8db155e..9a1261aba 100644 --- a/src/ui/toolbar/connector-toolbar.cpp +++ b/src/ui/toolbar/connector-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Connector aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/connector-toolbar.h b/src/ui/toolbar/connector-toolbar.h index 180c11e0f..bc75f6bfe 100644 --- a/src/ui/toolbar/connector-toolbar.h +++ b/src/ui/toolbar/connector-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_CONNECTOR_TOOLBAR_H #define SEEN_CONNECTOR_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/dropper-toolbar.cpp b/src/ui/toolbar/dropper-toolbar.cpp index 4e6aa2322..de247b5bd 100644 --- a/src/ui/toolbar/dropper-toolbar.cpp +++ b/src/ui/toolbar/dropper-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Dropper aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/dropper-toolbar.h b/src/ui/toolbar/dropper-toolbar.h index 3ce8cb089..c8aa42f30 100644 --- a/src/ui/toolbar/dropper-toolbar.h +++ b/src/ui/toolbar/dropper-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_DROPPER_TOOLBAR_H #define SEEN_DROPPER_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "toolbar.h" diff --git a/src/ui/toolbar/eraser-toolbar.cpp b/src/ui/toolbar/eraser-toolbar.cpp index e41817e63..ee28c127b 100644 --- a/src/ui/toolbar/eraser-toolbar.cpp +++ b/src/ui/toolbar/eraser-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Erasor aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/eraser-toolbar.h b/src/ui/toolbar/eraser-toolbar.h index 3c88d344e..2f837e5d7 100644 --- a/src/ui/toolbar/eraser-toolbar.h +++ b/src/ui/toolbar/eraser-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_ERASOR_TOOLBAR_H #define SEEN_ERASOR_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/gradient-toolbar.cpp b/src/ui/toolbar/gradient-toolbar.cpp index de374035a..be23d9e98 100644 --- a/src/ui/toolbar/gradient-toolbar.cpp +++ b/src/ui/toolbar/gradient-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Gradient aux toolbar * @@ -9,7 +10,7 @@ * Copyright (C) 2007 Johan Engelen * Copyright (C) 2005 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/gradient-toolbar.h b/src/ui/toolbar/gradient-toolbar.h index 38afb743b..242086758 100644 --- a/src/ui/toolbar/gradient-toolbar.h +++ b/src/ui/toolbar/gradient-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_GRADIENT_TOOLBAR_H #define SEEN_GRADIENT_TOOLBAR_H @@ -9,7 +10,7 @@ * * Copyright (C) 2005 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/lpe-toolbar.cpp b/src/ui/toolbar/lpe-toolbar.cpp index e0a15eda8..8ed30d9ac 100644 --- a/src/ui/toolbar/lpe-toolbar.cpp +++ b/src/ui/toolbar/lpe-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * LPE aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "live_effects/lpe-line_segment.h" diff --git a/src/ui/toolbar/lpe-toolbar.h b/src/ui/toolbar/lpe-toolbar.h index 3db2bcb65..4ceada774 100644 --- a/src/ui/toolbar/lpe-toolbar.h +++ b/src/ui/toolbar/lpe-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_LPE_TOOLBAR_H #define SEEN_LPE_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/measure-toolbar.cpp b/src/ui/toolbar/measure-toolbar.cpp index 67c523692..eca4cf911 100644 --- a/src/ui/toolbar/measure-toolbar.cpp +++ b/src/ui/toolbar/measure-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Measure aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/measure-toolbar.h b/src/ui/toolbar/measure-toolbar.h index aff0a209b..9a03bb8c3 100644 --- a/src/ui/toolbar/measure-toolbar.h +++ b/src/ui/toolbar/measure-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_MEASURE_TOOLBAR_H #define SEEN_MEASURE_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/mesh-toolbar.cpp b/src/ui/toolbar/mesh-toolbar.cpp index eb64f4010..af0e1e5ea 100644 --- a/src/ui/toolbar/mesh-toolbar.cpp +++ b/src/ui/toolbar/mesh-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Gradient aux toolbar * @@ -11,7 +12,7 @@ * Copyright (C) 2007 Johan Engelen * Copyright (C) 2005 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/mesh-toolbar.h b/src/ui/toolbar/mesh-toolbar.h index fd3f4b4b7..34ccc844e 100644 --- a/src/ui/toolbar/mesh-toolbar.h +++ b/src/ui/toolbar/mesh-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_MESH_TOOLBAR_H #define SEEN_MESH_TOOLBAR_H @@ -11,7 +12,7 @@ * Copyright (C) 2012 authors * Copyright (C) 2005 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/node-toolbar.cpp b/src/ui/toolbar/node-toolbar.cpp index 1e8fcaba0..1026aff59 100644 --- a/src/ui/toolbar/node-toolbar.cpp +++ b/src/ui/toolbar/node-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Node aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/node-toolbar.h b/src/ui/toolbar/node-toolbar.h index 1f2a3f6b7..9cbd6ba6c 100644 --- a/src/ui/toolbar/node-toolbar.h +++ b/src/ui/toolbar/node-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_NODE_TOOLBAR_H #define SEEN_NODE_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/paintbucket-toolbar.cpp b/src/ui/toolbar/paintbucket-toolbar.cpp index 3b0a6b3f4..b23c9561a 100644 --- a/src/ui/toolbar/paintbucket-toolbar.cpp +++ b/src/ui/toolbar/paintbucket-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Paint bucket aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/paintbucket-toolbar.h b/src/ui/toolbar/paintbucket-toolbar.h index 9e6d6194a..8b530a50d 100644 --- a/src/ui/toolbar/paintbucket-toolbar.h +++ b/src/ui/toolbar/paintbucket-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_PAINTBUCKET_TOOLBAR_H #define SEEN_PAINTBUCKET_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/pencil-toolbar.cpp b/src/ui/toolbar/pencil-toolbar.cpp index 00be88490..8002969ee 100644 --- a/src/ui/toolbar/pencil-toolbar.cpp +++ b/src/ui/toolbar/pencil-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Pencil aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/ui/toolbar/pencil-toolbar.h b/src/ui/toolbar/pencil-toolbar.h index c01b7d591..33a56aed2 100644 --- a/src/ui/toolbar/pencil-toolbar.h +++ b/src/ui/toolbar/pencil-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_PENCIL_TOOLBAR_H #define SEEN_PENCIL_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/rect-toolbar.cpp b/src/ui/toolbar/rect-toolbar.cpp index 092cc1222..cc615a35d 100644 --- a/src/ui/toolbar/rect-toolbar.cpp +++ b/src/ui/toolbar/rect-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Rect aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtk/gtk.h> diff --git a/src/ui/toolbar/rect-toolbar.h b/src/ui/toolbar/rect-toolbar.h index f89903c6c..9976d8a43 100644 --- a/src/ui/toolbar/rect-toolbar.h +++ b/src/ui/toolbar/rect-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_RECT_TOOLBAR_H #define SEEN_RECT_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/select-toolbar.cpp b/src/ui/toolbar/select-toolbar.cpp index 6eac48e21..9da07b43d 100644 --- a/src/ui/toolbar/select-toolbar.cpp +++ b/src/ui/toolbar/select-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Selector aux toolbar * @@ -9,7 +10,7 @@ * * Copyright (C) 2003-2005 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/select-toolbar.h b/src/ui/toolbar/select-toolbar.h index b900a0615..d4862600e 100644 --- a/src/ui/toolbar/select-toolbar.h +++ b/src/ui/toolbar/select-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_SELECT_TOOLBAR_H #define SEEN_SELECT_TOOLBAR_H @@ -11,7 +12,7 @@ * * Copyright (C) 2003 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/spiral-toolbar.cpp b/src/ui/toolbar/spiral-toolbar.cpp index c64e83488..289dbfee6 100644 --- a/src/ui/toolbar/spiral-toolbar.cpp +++ b/src/ui/toolbar/spiral-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Spiral aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtk/gtk.h> diff --git a/src/ui/toolbar/spiral-toolbar.h b/src/ui/toolbar/spiral-toolbar.h index 3372ea224..d57b4fa09 100644 --- a/src/ui/toolbar/spiral-toolbar.h +++ b/src/ui/toolbar/spiral-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_SPIRAL_TOOLBAR_H #define SEEN_SPIRAL_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/spray-toolbar.cpp b/src/ui/toolbar/spray-toolbar.cpp index c5f7feae0..a8bfabac9 100644 --- a/src/ui/toolbar/spray-toolbar.cpp +++ b/src/ui/toolbar/spray-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Spray aux toolbar @@ -22,7 +23,7 @@ * Copyright (C) 1999-2015 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/ui/toolbar/spray-toolbar.h b/src/ui/toolbar/spray-toolbar.h index 30d8233ca..9133575d1 100644 --- a/src/ui/toolbar/spray-toolbar.h +++ b/src/ui/toolbar/spray-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_SPRAY_TOOLBAR_H #define SEEN_SPRAY_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2015 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/star-toolbar.cpp b/src/ui/toolbar/star-toolbar.cpp index 66acbf03c..2fa354f42 100644 --- a/src/ui/toolbar/star-toolbar.cpp +++ b/src/ui/toolbar/star-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Star aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/star-toolbar.h b/src/ui/toolbar/star-toolbar.h index aa0db785c..7ac306d86 100644 --- a/src/ui/toolbar/star-toolbar.h +++ b/src/ui/toolbar/star-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_STAR_TOOLBAR_H #define SEEN_STAR_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/text-toolbar.cpp b/src/ui/toolbar/text-toolbar.cpp index 01e259795..341188fb2 100644 --- a/src/ui/toolbar/text-toolbar.cpp +++ b/src/ui/toolbar/text-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Text aux toolbar @@ -23,7 +24,7 @@ * Copyright (C) 1999-2013 authors * Copyright (C) 2017 Tavmjong Bah * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/text-toolbar.h b/src/ui/toolbar/text-toolbar.h index 86a1cad21..9c988217d 100644 --- a/src/ui/toolbar/text-toolbar.h +++ b/src/ui/toolbar/text-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_TEXT_TOOLBAR_H #define SEEN_TEXT_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/toolbar.cpp b/src/ui/toolbar/toolbar.cpp index 8a17dcbea..445f5b7e8 100644 --- a/src/ui/toolbar/toolbar.cpp +++ b/src/ui/toolbar/toolbar.cpp @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #include "toolbar.h" #include <gtkmm/label.h> diff --git a/src/ui/toolbar/toolbar.h b/src/ui/toolbar/toolbar.h index 63d762b51..18c0510b1 100644 --- a/src/ui/toolbar/toolbar.h +++ b/src/ui/toolbar/toolbar.h @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifndef SEEN_TOOLBAR_H #define SEEN_TOOLBAR_H diff --git a/src/ui/toolbar/tweak-toolbar.cpp b/src/ui/toolbar/tweak-toolbar.cpp index 525df419f..3b275601e 100644 --- a/src/ui/toolbar/tweak-toolbar.cpp +++ b/src/ui/toolbar/tweak-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Tweak aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/toolbar/tweak-toolbar.h b/src/ui/toolbar/tweak-toolbar.h index 1a65a0844..d6015d918 100644 --- a/src/ui/toolbar/tweak-toolbar.h +++ b/src/ui/toolbar/tweak-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_TWEAK_TOOLBAR_H #define SEEN_TWEAK_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ class SPDesktop; diff --git a/src/ui/toolbar/zoom-toolbar.cpp b/src/ui/toolbar/zoom-toolbar.cpp index aeb16374a..5cabcb03f 100644 --- a/src/ui/toolbar/zoom-toolbar.cpp +++ b/src/ui/toolbar/zoom-toolbar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Zoom aux toolbar @@ -21,7 +22,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "zoom-toolbar.h" diff --git a/src/ui/toolbar/zoom-toolbar.h b/src/ui/toolbar/zoom-toolbar.h index 6be5856eb..b5d34de40 100644 --- a/src/ui/toolbar/zoom-toolbar.h +++ b/src/ui/toolbar/zoom-toolbar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_ZOOM_TOOLBAR_H #define SEEN_ZOOM_TOOLBAR_H @@ -24,7 +25,7 @@ * Copyright (C) 1999-2011 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "toolbar.h" diff --git a/src/ui/tools-switch.cpp b/src/ui/tools-switch.cpp index d89844686..a2ec6cfbe 100644 --- a/src/ui/tools-switch.cpp +++ b/src/ui/tools-switch.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Utility functions for switching tools (= contexts) * @@ -8,7 +9,7 @@ * * Copyright (C) 2003-2007 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> // prevents deprecation warnings diff --git a/src/ui/tools-switch.h b/src/ui/tools-switch.h index 1bf785aca..804918a7f 100644 --- a/src/ui/tools-switch.h +++ b/src/ui/tools-switch.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Utility functions for switching tools (= contexts) * @@ -6,7 +7,7 @@ * * Copyright (C) 2003 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_TOOLS_SWITCH_H diff --git a/src/ui/tools/arc-tool.cpp b/src/ui/tools/arc-tool.cpp index bd3567df7..18bd36361 100644 --- a/src/ui/tools/arc-tool.cpp +++ b/src/ui/tools/arc-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Ellipse drawing context. @@ -13,7 +14,7 @@ * Copyright (C) 2000-2006 Authors * Copyright (C) 2000-2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> #include <gdk/gdkkeysyms.h> diff --git a/src/ui/tools/arc-tool.h b/src/ui/tools/arc-tool.h index 2cb2768eb..6af99e0f9 100644 --- a/src/ui/tools/arc-tool.h +++ b/src/ui/tools/arc-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_ARC_CONTEXT_H #define SEEN_ARC_CONTEXT_H @@ -12,7 +13,7 @@ * Copyright (C) 2000-2001 Ximian, Inc. * Copyright (C) 2002 Mitsuru Oka * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstddef> diff --git a/src/ui/tools/box3d-tool.cpp b/src/ui/tools/box3d-tool.cpp index 7314046b2..76dba4eea 100644 --- a/src/ui/tools/box3d-tool.cpp +++ b/src/ui/tools/box3d-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * 3D box drawing context * @@ -12,7 +13,7 @@ * Copyright (C) 2000-2005 authors * Copyright (C) 2000-2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gdk/gdkkeysyms.h> diff --git a/src/ui/tools/box3d-tool.h b/src/ui/tools/box3d-tool.h index 513d6d25f..1ae63a0ad 100644 --- a/src/ui/tools/box3d-tool.h +++ b/src/ui/tools/box3d-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_BOX3D_CONTEXT_H__ #define __SP_BOX3D_CONTEXT_H__ @@ -12,7 +13,7 @@ * Copyright (C) 2002 Lauris Kaplinski * Copyright (C) 2007 Maximilian Albert <Anhalter42@gmx.de> * - * Released under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstddef> diff --git a/src/ui/tools/calligraphic-tool.cpp b/src/ui/tools/calligraphic-tool.cpp index 779cf29d9..80031cffc 100644 --- a/src/ui/tools/calligraphic-tool.cpp +++ b/src/ui/tools/calligraphic-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Handwriting-like drawing mode * @@ -18,7 +19,7 @@ * Copyright (C) 2005-2007 bulia byak * Copyright (C) 2006 MenTaLguY * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #define noDYNA_DRAW_VERBOSE diff --git a/src/ui/tools/calligraphic-tool.h b/src/ui/tools/calligraphic-tool.h index ac8a7436b..924d018f1 100644 --- a/src/ui/tools/calligraphic-tool.h +++ b/src/ui/tools/calligraphic-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SP_DYNA_DRAW_CONTEXT_H_SEEN #define SP_DYNA_DRAW_CONTEXT_H_SEEN @@ -15,7 +16,7 @@ * Copyright (C) 1999-2002 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <list> diff --git a/src/ui/tools/connector-tool.cpp b/src/ui/tools/connector-tool.cpp index d41e1b3eb..4b2340913 100644 --- a/src/ui/tools/connector-tool.cpp +++ b/src/ui/tools/connector-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Connector creation tool * @@ -11,7 +12,7 @@ * Copyright (C) 2009 Monash University * Copyright (C) 2012 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * * TODO: * o Show a visual indicator for objects with the 'avoid' property set. diff --git a/src/ui/tools/connector-tool.h b/src/ui/tools/connector-tool.h index 241a59dca..c71e15458 100644 --- a/src/ui/tools/connector-tool.h +++ b/src/ui/tools/connector-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_CONNECTOR_CONTEXT_H #define SEEN_CONNECTOR_CONTEXT_H @@ -9,7 +10,7 @@ * * Copyright (C) 2005 Michael Wybrow * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <map> diff --git a/src/ui/tools/dropper-tool.cpp b/src/ui/tools/dropper-tool.cpp index 19eef6c7d..499398688 100644 --- a/src/ui/tools/dropper-tool.cpp +++ b/src/ui/tools/dropper-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Tool for picking colors from drawing * @@ -8,7 +9,7 @@ * * Copyright (C) 1999-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/tools/dropper-tool.h b/src/ui/tools/dropper-tool.h index 049244b66..d52049ca2 100644 --- a/src/ui/tools/dropper-tool.h +++ b/src/ui/tools/dropper-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_DROPPER_CONTEXT_H__ #define __SP_DROPPER_CONTEXT_H__ @@ -9,7 +10,7 @@ * * Copyright (C) 1999-2002 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <2geom/point.h> diff --git a/src/ui/tools/dynamic-base.cpp b/src/ui/tools/dynamic-base.cpp index 8bc1ddb97..92eba3f09 100644 --- a/src/ui/tools/dynamic-base.cpp +++ b/src/ui/tools/dynamic-base.cpp @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #include "ui/tools/dynamic-base.h" diff --git a/src/ui/tools/dynamic-base.h b/src/ui/tools/dynamic-base.h index 4b78ee416..d9c1f9804 100644 --- a/src/ui/tools/dynamic-base.h +++ b/src/ui/tools/dynamic-base.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef COMMON_CONTEXT_H_SEEN #define COMMON_CONTEXT_H_SEEN @@ -16,7 +17,7 @@ * Copyright (C) 2001-2002 Ximian, Inc. * Copyright (C) 2008 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/tools/tool-base.h" diff --git a/src/ui/tools/eraser-tool.cpp b/src/ui/tools/eraser-tool.cpp index 4a655ea19..4f9e3de08 100644 --- a/src/ui/tools/eraser-tool.cpp +++ b/src/ui/tools/eraser-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Eraser drawing mode * @@ -19,7 +20,7 @@ * Copyright (C) 2006 MenTaLguY * Copyright (C) 2008 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #define noERASER_VERBOSE diff --git a/src/ui/tools/eraser-tool.h b/src/ui/tools/eraser-tool.h index 8a196d360..6da1fa370 100644 --- a/src/ui/tools/eraser-tool.h +++ b/src/ui/tools/eraser-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SP_ERASER_CONTEXT_H_SEEN #define SP_ERASER_CONTEXT_H_SEEN @@ -16,7 +17,7 @@ * Copyright (C) 2001-2002 Ximian, Inc. * Copyright (C) 2008 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <2geom/point.h> diff --git a/src/ui/tools/flood-tool.cpp b/src/ui/tools/flood-tool.cpp index 8ea64dce8..37091ea01 100644 --- a/src/ui/tools/flood-tool.cpp +++ b/src/ui/tools/flood-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Bucket fill drawing context, works by bitmap filling an area on a rendered version @@ -14,7 +15,7 @@ * Copyright (C) 2000-2005 authors * Copyright (C) 2000-2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "flood-tool.h" diff --git a/src/ui/tools/flood-tool.h b/src/ui/tools/flood-tool.h index f6f49b9c4..877db980a 100644 --- a/src/ui/tools/flood-tool.h +++ b/src/ui/tools/flood-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_FLOOD_CONTEXT_H__ #define __SP_FLOOD_CONTEXT_H__ @@ -8,7 +9,7 @@ * Lauris Kaplinski <lauris@kaplinski.com> * John Bintz <jcoswell@coswellproductions.org> * - * Released under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <vector> diff --git a/src/ui/tools/freehand-base.cpp b/src/ui/tools/freehand-base.cpp index 51da7f201..c211fc8ec 100644 --- a/src/ui/tools/freehand-base.cpp +++ b/src/ui/tools/freehand-base.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Generic drawing context * @@ -11,7 +12,7 @@ * Copyright (C) 2002 Lauris Kaplinski * Copyright (C) 2012 Johan Engelen * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #define DRAW_VERBOSE diff --git a/src/ui/tools/freehand-base.h b/src/ui/tools/freehand-base.h index ffc4b738f..7dc960a0e 100644 --- a/src/ui/tools/freehand-base.h +++ b/src/ui/tools/freehand-base.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_SP_DRAW_CONTEXT_H #define SEEN_SP_DRAW_CONTEXT_H @@ -11,7 +12,7 @@ * Copyright (C) 2000-2001 Ximian, Inc. * Copyright (C) 2002 Lauris Kaplinski * - * Released under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <sigc++/connection.h> diff --git a/src/ui/tools/gradient-tool.cpp b/src/ui/tools/gradient-tool.cpp index 8b85f8854..4ca214fb0 100644 --- a/src/ui/tools/gradient-tool.cpp +++ b/src/ui/tools/gradient-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Gradient drawing and editing tool * @@ -9,7 +10,7 @@ * Copyright (C) 2007 Johan Engelen * Copyright (C) 2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/tools/gradient-tool.h b/src/ui/tools/gradient-tool.h index 6421e75ad..5de281afa 100644 --- a/src/ui/tools/gradient-tool.h +++ b/src/ui/tools/gradient-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_GRADIENT_CONTEXT_H__ #define __SP_GRADIENT_CONTEXT_H__ @@ -12,7 +13,7 @@ * Copyright (C) 2007 Johan Engelen * Copyright (C) 2005,2010 Authors * - * Released under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstddef> diff --git a/src/ui/tools/lpe-tool.cpp b/src/ui/tools/lpe-tool.cpp index a61e6dfaa..55ec014ab 100644 --- a/src/ui/tools/lpe-tool.cpp +++ b/src/ui/tools/lpe-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * LPEToolContext: a context for a generic tool composed of subtools that are given by LPEs * @@ -11,7 +12,7 @@ * Copyright (C) 2001-2002 Ximian, Inc. * Copyright (C) 2008 Maximilian Albert * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/tools/lpe-tool.h b/src/ui/tools/lpe-tool.h index ead4095a8..789aaf3cd 100644 --- a/src/ui/tools/lpe-tool.h +++ b/src/ui/tools/lpe-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SP_LPETOOL_CONTEXT_H_SEEN #define SP_LPETOOL_CONTEXT_H_SEEN @@ -12,7 +13,7 @@ * Copyright (C) 2001-2002 Ximian, Inc. * Copyright (C) 2008 Maximilian Albert * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/tools/pen-tool.h" diff --git a/src/ui/tools/measure-tool.cpp b/src/ui/tools/measure-tool.cpp index 17ae52a81..ac9c36222 100644 --- a/src/ui/tools/measure-tool.cpp +++ b/src/ui/tools/measure-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Our nice measuring tool * @@ -8,7 +9,7 @@ * * Copyright (C) 2011 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/ui/tools/measure-tool.h b/src/ui/tools/measure-tool.h index 022989973..a6ca39ec7 100644 --- a/src/ui/tools/measure-tool.h +++ b/src/ui/tools/measure-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_SP_MEASURING_CONTEXT_H #define SEEN_SP_MEASURING_CONTEXT_H @@ -9,7 +10,7 @@ * Jabiertxo Arraiza <jabier.arraiza@marker.es> * Copyright (C) 2011 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstddef> diff --git a/src/ui/tools/mesh-tool.cpp b/src/ui/tools/mesh-tool.cpp index 41f2938c2..9dde149d9 100644 --- a/src/ui/tools/mesh-tool.cpp +++ b/src/ui/tools/mesh-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Mesh drawing and editing tool * @@ -11,7 +12,7 @@ * Copyright (C) 2007 Johan Engelen * Copyright (C) 2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ //#define DEBUG_MESH diff --git a/src/ui/tools/mesh-tool.h b/src/ui/tools/mesh-tool.h index df3389b9b..4964a022a 100644 --- a/src/ui/tools/mesh-tool.h +++ b/src/ui/tools/mesh-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_SP_MESH_CONTEXT_H #define SEEN_SP_MESH_CONTEXT_H @@ -14,7 +15,7 @@ * Copyright (C) 2007 Johan Engelen * Copyright (C) 2005,2010 Authors * - * Released under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstddef> diff --git a/src/ui/tools/node-tool.cpp b/src/ui/tools/node-tool.cpp index 4f5ed44be..99f5e4bcf 100644 --- a/src/ui/tools/node-tool.cpp +++ b/src/ui/tools/node-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * New node tool - implementation. @@ -7,7 +8,7 @@ * Abhishek Sharma * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glib/gi18n.h> diff --git a/src/ui/tools/node-tool.h b/src/ui/tools/node-tool.h index a05eb5850..523ed5da2 100644 --- a/src/ui/tools/node-tool.h +++ b/src/ui/tools/node-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief New node tool with support for multiple path editing */ @@ -5,7 +6,7 @@ * Krzysztof Kosiński <tweenk@gmail.com> * * Copyright (C) 2009 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_UI_TOOL_NODE_TOOL_H diff --git a/src/ui/tools/pen-tool.cpp b/src/ui/tools/pen-tool.cpp index 7fbc08d33..d9feb89c2 100644 --- a/src/ui/tools/pen-tool.cpp +++ b/src/ui/tools/pen-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Pen event context implementation. */ @@ -13,7 +14,7 @@ * Copyright (C) 2002 Lauris Kaplinski * Copyright (C) 2004 Monash University * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstring> diff --git a/src/ui/tools/pen-tool.h b/src/ui/tools/pen-tool.h index 7d442bfca..6897e02d0 100644 --- a/src/ui/tools/pen-tool.h +++ b/src/ui/tools/pen-tool.h @@ -1,9 +1,16 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** \file + * PenTool: a context for pen tool events. + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifndef SEEN_PEN_CONTEXT_H #define SEEN_PEN_CONTEXT_H -/** \file - * PenTool: a context for pen tool events. - */ + #include "ui/tools/freehand-base.h" #include "live_effects/effect.h" diff --git a/src/ui/tools/pencil-tool.cpp b/src/ui/tools/pencil-tool.cpp index b5257cecb..eac7c585f 100644 --- a/src/ui/tools/pencil-tool.cpp +++ b/src/ui/tools/pencil-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Pencil event context implementation. */ @@ -13,7 +14,7 @@ * Copyright (C) 2002 Lauris Kaplinski * Copyright (C) 2004 Monash University * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gdk/gdkkeysyms.h> diff --git a/src/ui/tools/pencil-tool.h b/src/ui/tools/pencil-tool.h index 58b449c98..f58a72a4b 100644 --- a/src/ui/tools/pencil-tool.h +++ b/src/ui/tools/pencil-tool.h @@ -1,9 +1,16 @@ -#ifndef SEEN_PENCIL_CONTEXT_H -#define SEEN_PENCIL_CONTEXT_H - +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * PencilTool: a context for pencil tool events + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ +#ifndef SEEN_PENCIL_CONTEXT_H +#define SEEN_PENCIL_CONTEXT_H + + #include "ui/tools/freehand-base.h" diff --git a/src/ui/tools/rect-tool.cpp b/src/ui/tools/rect-tool.cpp index 3edbf4f5c..f6387d6dc 100644 --- a/src/ui/tools/rect-tool.cpp +++ b/src/ui/tools/rect-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Rectangle drawing context * @@ -11,7 +12,7 @@ * Copyright (C) 2000-2005 authors * Copyright (C) 2000-2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstring> diff --git a/src/ui/tools/rect-tool.h b/src/ui/tools/rect-tool.h index 02760c757..703b7c220 100644 --- a/src/ui/tools/rect-tool.h +++ b/src/ui/tools/rect-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_RECT_CONTEXT_H__ #define __SP_RECT_CONTEXT_H__ @@ -12,7 +13,7 @@ * Copyright (C) 2000-2001 Ximian, Inc. * Copyright (C) 2002 Lauris Kaplinski * - * Released under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstddef> diff --git a/src/ui/tools/select-tool.cpp b/src/ui/tools/select-tool.cpp index 459708456..a630f06a7 100644 --- a/src/ui/tools/select-tool.cpp +++ b/src/ui/tools/select-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Selection and transformation context * @@ -11,7 +12,7 @@ * Copyright (C) 2006 Johan Engelen <johan@shouraizou.nl> * Copyright (C) 1999-2005 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/ui/tools/select-tool.h b/src/ui/tools/select-tool.h index f198686f2..12e4b1aa7 100644 --- a/src/ui/tools/select-tool.h +++ b/src/ui/tools/select-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_SELECT_CONTEXT_H__ #define __SP_SELECT_CONTEXT_H__ @@ -9,7 +10,7 @@ * * Copyright (C) 1999-2002 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/tools/tool-base.h" diff --git a/src/ui/tools/spiral-tool.cpp b/src/ui/tools/spiral-tool.cpp index 29cf408b8..f05f54fca 100644 --- a/src/ui/tools/spiral-tool.cpp +++ b/src/ui/tools/spiral-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Spiral drawing context * @@ -11,7 +12,7 @@ * Copyright (C) 1999-2001 Lauris Kaplinski * Copyright (C) 2001-2002 Mitsuru Oka * - * Released under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstring> diff --git a/src/ui/tools/spiral-tool.h b/src/ui/tools/spiral-tool.h index ca5acccd2..03c3ae2d0 100644 --- a/src/ui/tools/spiral-tool.h +++ b/src/ui/tools/spiral-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_SPIRAL_CONTEXT_H__ #define __SP_SPIRAL_CONTEXT_H__ @@ -12,7 +13,7 @@ * Copyright (C) 1999-2001 Lauris Kaplinski * Copyright (C) 2001-2002 Mitsuru Oka * - * Released under GNU GPL + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <sigc++/connection.h> diff --git a/src/ui/tools/spray-tool.cpp b/src/ui/tools/spray-tool.cpp index f590be059..fd13b4d3d 100644 --- a/src/ui/tools/spray-tool.cpp +++ b/src/ui/tools/spray-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Spray Tool * @@ -17,7 +18,7 @@ * * Copyright (C) 2009 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <numeric> diff --git a/src/ui/tools/spray-tool.h b/src/ui/tools/spray-tool.h index 06fba80a9..a4d5d927c 100644 --- a/src/ui/tools/spray-tool.h +++ b/src/ui/tools/spray-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_SPRAY_CONTEXT_H__ #define __SP_SPRAY_CONTEXT_H__ @@ -7,7 +8,7 @@ * Authors: * Pierre-Antoine MARC * Pierre CACLIN - * Aurel-Aimé MARMION + * Aurel-Aimé MARMION * Julien LERAY * Benoît LAVORATA * Vincent MONTAGNE @@ -17,7 +18,7 @@ * * Copyright (C) 2009 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <2geom/point.h> diff --git a/src/ui/tools/star-tool.cpp b/src/ui/tools/star-tool.cpp index d19cc1b27..ce0fa9aef 100644 --- a/src/ui/tools/star-tool.cpp +++ b/src/ui/tools/star-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Star drawing context * @@ -11,7 +12,7 @@ * Copyright (C) 1999-2002 Lauris Kaplinski * Copyright (C) 2001-2002 Mitsuru Oka * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstring> diff --git a/src/ui/tools/star-tool.h b/src/ui/tools/star-tool.h index 6d448bf7f..08f0d9d55 100644 --- a/src/ui/tools/star-tool.h +++ b/src/ui/tools/star-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_STAR_CONTEXT_H__ #define __SP_STAR_CONTEXT_H__ @@ -11,7 +12,7 @@ * Copyright (C) 1999-2002 Lauris Kaplinski * Copyright (C) 2001-2002 Mitsuru Oka * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstddef> diff --git a/src/ui/tools/text-tool.cpp b/src/ui/tools/text-tool.cpp index 6f4acc367..491154fb4 100644 --- a/src/ui/tools/text-tool.cpp +++ b/src/ui/tools/text-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * TextTool * @@ -10,7 +11,7 @@ * Copyright (C) 1999-2005 authors * Copyright (C) 2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gdk/gdkkeysyms.h> diff --git a/src/ui/tools/text-tool.h b/src/ui/tools/text-tool.h index d8968544b..96c97c418 100644 --- a/src/ui/tools/text-tool.h +++ b/src/ui/tools/text-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_TEXT_CONTEXT_H__ #define __SP_TEXT_CONTEXT_H__ @@ -11,7 +12,7 @@ * Copyright (C) 1999-2005 authors * Copyright (C) 2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <sigc++/connection.h> diff --git a/src/ui/tools/tool-base.cpp b/src/ui/tools/tool-base.cpp index 20aad1424..a10165554 100644 --- a/src/ui/tools/tool-base.cpp +++ b/src/ui/tools/tool-base.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Main event handling, and related helper functions. * @@ -11,7 +12,7 @@ * Copyright (C) 1999-2012 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gdk/gdkkeysyms.h> diff --git a/src/ui/tools/tool-base.h b/src/ui/tools/tool-base.h index 2d743ec67..e43b347f0 100644 --- a/src/ui/tools/tool-base.h +++ b/src/ui/tools/tool-base.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_SP_EVENT_CONTEXT_H #define SEEN_SP_EVENT_CONTEXT_H @@ -9,7 +10,7 @@ * Copyright (C) 1999-2002 authors * Copyright (C) 2001-2002 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstddef> diff --git a/src/ui/tools/tweak-tool.cpp b/src/ui/tools/tweak-tool.cpp index 4f5834836..3f530c278 100644 --- a/src/ui/tools/tweak-tool.cpp +++ b/src/ui/tools/tweak-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * tweaking paths without node editing * @@ -8,7 +9,7 @@ * * Copyright (C) 2007 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <numeric> diff --git a/src/ui/tools/tweak-tool.h b/src/ui/tools/tweak-tool.h index 51f32daa9..677cc0bd0 100644 --- a/src/ui/tools/tweak-tool.h +++ b/src/ui/tools/tweak-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_TWEAK_CONTEXT_H__ #define __SP_TWEAK_CONTEXT_H__ @@ -5,11 +6,11 @@ * tweaking paths without node editing * * Authors: - * bulia byak + * bulia byak * * Copyright (C) 2007 authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/tools/tool-base.h" diff --git a/src/ui/tools/zoom-tool.cpp b/src/ui/tools/zoom-tool.cpp index ad86d767d..4f6627d82 100644 --- a/src/ui/tools/zoom-tool.cpp +++ b/src/ui/tools/zoom-tool.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Handy zooming tool * @@ -8,7 +9,7 @@ * * Copyright (C) 1999-2002 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/tools/zoom-tool.h b/src/ui/tools/zoom-tool.h index 6a656eec4..003b6be5d 100644 --- a/src/ui/tools/zoom-tool.h +++ b/src/ui/tools/zoom-tool.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __SP_ZOOM_CONTEXT_H__ #define __SP_ZOOM_CONTEXT_H__ @@ -10,7 +11,7 @@ * * Copyright (C) 1999-2002 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/tools/tool-base.h" diff --git a/src/ui/util.cpp b/src/ui/util.cpp index f37a9ea78..1832cf7d8 100644 --- a/src/ui/util.cpp +++ b/src/ui/util.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Utility functions for UI * @@ -6,7 +7,7 @@ * John Smith * * Copyright (C) 2004, 2013, 2018 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "util.h" diff --git a/src/ui/util.h b/src/ui/util.h index 11999e310..94803718a 100644 --- a/src/ui/util.h +++ b/src/ui/util.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Utility functions for UI * @@ -6,7 +7,7 @@ * John Smith * * Copyright (C) 2013, 2018 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef UI_UTIL_SEEN diff --git a/src/ui/uxmanager.cpp b/src/ui/uxmanager.cpp index 5550e00c8..28f84dd63 100644 --- a/src/ui/uxmanager.cpp +++ b/src/ui/uxmanager.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** \file * Desktop widget implementation. */ @@ -6,7 +7,7 @@ * * Copyright (C) 2010 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "widgets/desktop-widget.h" diff --git a/src/ui/uxmanager.h b/src/ui/uxmanager.h index 669d8c5a1..f7d39f59d 100644 --- a/src/ui/uxmanager.h +++ b/src/ui/uxmanager.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_UI_UXMANAGER_H #define SEEN_UI_UXMANAGER_H /* @@ -8,7 +9,7 @@ * * Copyright (C) 2010 Jon A. Cruz * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <vector> diff --git a/src/ui/view/edit-widget-interface.h b/src/ui/view/edit-widget-interface.h index 7004fea95..1bbbbc8bd 100644 --- a/src/ui/view/edit-widget-interface.h +++ b/src/ui/view/edit-widget-interface.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ralf Stephan <ralf@ark.in-berlin.de> @@ -6,7 +7,7 @@ * Copyright (C) 2006 John Bintz * Copyright (C) 2005 Ralf Stephan * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_VIEW_EDIT_WIDGET_IFACE_H diff --git a/src/ui/view/svg-view-widget.cpp b/src/ui/view/svg-view-widget.cpp index e5bd8b866..c696a3ad2 100644 --- a/src/ui/view/svg-view-widget.cpp +++ b/src/ui/view/svg-view-widget.cpp @@ -1,10 +1,17 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** + * @file + * A light-weight widget containing an SPCanvas with a View for rendering an SVG. + */ /* - * Author: + * Authors: * Tavmjong Bah <tavmjong@free.fr> * - * Copyright (C) 2018 Tavmong Bah + * Copyright (C) 2018 Authors + * + * The contents of this file may be used under the GNU General Public License Version 2 or later. + * Read the file 'COPYING' for more information. * - * Released under GNU GPL. Read the file 'COPYING' for more information. */ #include "svg-view-widget.h" diff --git a/src/ui/view/svg-view-widget.h b/src/ui/view/svg-view-widget.h index 11bbba827..718e164cd 100644 --- a/src/ui/view/svg-view-widget.h +++ b/src/ui/view/svg-view-widget.h @@ -1,10 +1,17 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** + * @file + * A light-weight widget containing an SPCanvas with a View for rendering an SVG. + */ /* - * Author: + * Authors: * Tavmjong Bah <tavmjong@free.fr> * - * Copyright (C) 2018 Tavmong Bah + * Copyright (C) 2018 Authors + * + * The contents of this file may be used under the GNU General Public License Version 2 or later. + * Read the file 'COPYING' for more information. * - * Released under GNU GPL. Read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_SVG_VIEW_WIDGET_VARIATIONS_H diff --git a/src/ui/view/svg-view.cpp b/src/ui/view/svg-view.cpp index 6b90e8ccd..6db3fa2a4 100644 --- a/src/ui/view/svg-view.cpp +++ b/src/ui/view/svg-view.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Functions and callbacks for generic SVG view and widget. * @@ -10,7 +11,7 @@ * Copyright (C) 2001-2002 Lauris Kaplinski * Copyright (C) 2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <2geom/transforms.h> diff --git a/src/ui/view/svg-view.h b/src/ui/view/svg-view.h index 23698eb36..8ec452ede 100644 --- a/src/ui/view/svg-view.h +++ b/src/ui/view/svg-view.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_SVG_VIEW_H #define SEEN_SVG_VIEW_H /* @@ -8,7 +9,7 @@ * Copyright (C) 2001-2002 Lauris Kaplinski * Copyright (C) 2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/view/view.h" diff --git a/src/ui/view/view-widget.cpp b/src/ui/view/view-widget.cpp index fec18845b..ce9745d1b 100644 --- a/src/ui/view/view-widget.cpp +++ b/src/ui/view/view-widget.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Lauris Kaplinski <lauris@kaplinski.com> @@ -6,7 +7,7 @@ * Copyright (C) 2001-2002 Lauris Kaplinski * Copyright (C) 2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "view.h" diff --git a/src/ui/view/view-widget.h b/src/ui/view/view-widget.h index 7c299972a..410edeb7b 100644 --- a/src/ui/view/view-widget.h +++ b/src/ui/view/view-widget.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_UI_VIEW_VIEWWIDGET_H #define INKSCAPE_UI_VIEW_VIEWWIDGET_H @@ -9,7 +10,7 @@ * Copyright (C) 2001-2002 Lauris Kaplinski * Copyright (C) 2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtk/gtk.h> diff --git a/src/ui/view/view.cpp b/src/ui/view/view.cpp index a265ed918..e8c3e32db 100644 --- a/src/ui/view/view.cpp +++ b/src/ui/view/view.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Lauris Kaplinski <lauris@kaplinski.com> @@ -7,7 +8,7 @@ * Copyright (C) 2001-2002 Lauris Kaplinski * Copyright (C) 2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <2geom/point.h> diff --git a/src/ui/view/view.h b/src/ui/view/view.h index 31b43d12c..fa28ec72e 100644 --- a/src/ui/view/view.h +++ b/src/ui/view/view.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INKSCAPE_UI_VIEW_VIEW_H #define INKSCAPE_UI_VIEW_VIEW_H /* @@ -8,7 +9,7 @@ * Copyright (C) 2001-2002 Lauris Kaplinski * Copyright (C) 2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gdk/gdk.h> diff --git a/src/ui/widget/alignment-selector.cpp b/src/ui/widget/alignment-selector.cpp index 9256a08bd..25b1b7ec6 100644 --- a/src/ui/widget/alignment-selector.cpp +++ b/src/ui/widget/alignment-selector.cpp @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * anchor-selector.cpp * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/alignment-selector.h" diff --git a/src/ui/widget/alignment-selector.h b/src/ui/widget/alignment-selector.h index 67d6941f1..5bcf0fa4f 100644 --- a/src/ui/widget/alignment-selector.h +++ b/src/ui/widget/alignment-selector.h @@ -1,7 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * anchor-selector.h * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef ANCHOR_SELECTOR_H_ diff --git a/src/ui/widget/anchor-selector.cpp b/src/ui/widget/anchor-selector.cpp index a92dbd68e..f57f419e0 100644 --- a/src/ui/widget/anchor-selector.cpp +++ b/src/ui/widget/anchor-selector.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * anchor-selector.cpp * * Created on: Mar 22, 2012 * Author: denis * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/anchor-selector.h" #include "helper/icon-loader.h" diff --git a/src/ui/widget/anchor-selector.h b/src/ui/widget/anchor-selector.h index 03f070154..49ce0b29f 100644 --- a/src/ui/widget/anchor-selector.h +++ b/src/ui/widget/anchor-selector.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * anchor-selector.h * * Created on: Mar 22, 2012 * Author: denis * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef ANCHOR_SELECTOR_H_ diff --git a/src/ui/widget/attr-widget.h b/src/ui/widget/attr-widget.h index d50bdc65a..014a540ce 100644 --- a/src/ui/widget/attr-widget.h +++ b/src/ui/widget/attr-widget.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Nicholas Bishop <nicholasbishop@gmail.com> @@ -5,7 +6,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_ATTR_WIDGET_H diff --git a/src/ui/widget/button.cpp b/src/ui/widget/button.cpp index 2a491e17c..a587cb0cb 100644 --- a/src/ui/widget/button.cpp +++ b/src/ui/widget/button.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * buliabyak@gmail.com * * Copyright (C) 2005 author * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "button.h" diff --git a/src/ui/widget/button.h b/src/ui/widget/button.h index d3c9afa02..cf8c74c69 100644 --- a/src/ui/widget/button.h +++ b/src/ui/widget/button.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * buliabyak@gmail.com * * Copyright (C) 2005 author * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_BUTTON_H diff --git a/src/ui/widget/clipmaskicon.cpp b/src/ui/widget/clipmaskicon.cpp index 281e60886..3caff3fb5 100644 --- a/src/ui/widget/clipmaskicon.cpp +++ b/src/ui/widget/clipmaskicon.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Theodore Janeczko * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/clipmaskicon.h" diff --git a/src/ui/widget/clipmaskicon.h b/src/ui/widget/clipmaskicon.h index 836c0d5e2..d8bbe52a9 100644 --- a/src/ui/widget/clipmaskicon.h +++ b/src/ui/widget/clipmaskicon.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __UI_DIALOG_CLIPMASKICON_H__ #define __UI_DIALOG_CLIPMASKICON_H__ /* @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/cellrendererpixbuf.h> diff --git a/src/ui/widget/color-entry.cpp b/src/ui/widget/color-entry.cpp index b766dc9ed..619a7d515 100644 --- a/src/ui/widget/color-entry.cpp +++ b/src/ui/widget/color-entry.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Entry widget for typing color value in css form *//* @@ -5,7 +6,7 @@ * Tomasz Boczkowski <penginsbacon@gmail.com> * * Copyright (C) 2014 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm.h> #include <glibmm/i18n.h> diff --git a/src/ui/widget/color-entry.h b/src/ui/widget/color-entry.h index 7197321e2..883076c7d 100644 --- a/src/ui/widget/color-entry.h +++ b/src/ui/widget/color-entry.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * Entry widget for typing color value in css form *//* @@ -5,7 +6,7 @@ * Tomasz Boczkowski <penginsbacon@gmail.com> * * Copyright (C) 2014 Authors - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_COLOR_ENTRY_H diff --git a/src/ui/widget/color-icc-selector.cpp b/src/ui/widget/color-icc-selector.cpp index 877a6d011..8d9f4a51c 100644 --- a/src/ui/widget/color-icc-selector.cpp +++ b/src/ui/widget/color-icc-selector.cpp @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifdef HAVE_CONFIG_H # include "config.h" // only include where actually required! #endif diff --git a/src/ui/widget/color-icc-selector.h b/src/ui/widget/color-icc-selector.h index 310db0664..2c5ec419b 100644 --- a/src/ui/widget/color-icc-selector.h +++ b/src/ui/widget/color-icc-selector.h @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifndef SEEN_SP_COLOR_ICC_SELECTOR_H #define SEEN_SP_COLOR_ICC_SELECTOR_H diff --git a/src/ui/widget/color-notebook.cpp b/src/ui/widget/color-notebook.cpp index 6f5423de4..6d6fee5e0 100644 --- a/src/ui/widget/color-notebook.cpp +++ b/src/ui/widget/color-notebook.cpp @@ -1,15 +1,14 @@ -/** - * @file - * A notebook with RGB, CMYK, CMS, HSL, HSV, and Wheel pages - implementation - */ -/* Authors: +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * A notebook with RGB, CMYK, CMS, HSL, and Wheel pages + *//* + * Authors: * Lauris Kaplinski <lauris@kaplinski.com> * bulia byak <buliabyak@users.sf.net> * Tomasz Boczkowski <penginsbacon@gmail.com> (c++-sification) * * Copyright (C) 2001-2014 Authors - * - * This code is in public domain + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/ui/widget/color-notebook.h b/src/ui/widget/color-notebook.h index e5ac78939..ddc8ea85f 100644 --- a/src/ui/widget/color-notebook.h +++ b/src/ui/widget/color-notebook.h @@ -1,15 +1,14 @@ -/** - * @file +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file * A notebook with RGB, CMYK, CMS, HSL, and Wheel pages - */ -/* Authors: + *//* + * Authors: * Lauris Kaplinski <lauris@kaplinski.com> * bulia byak <buliabyak@users.sf.net> * Tomasz Boczkowski <penginsbacon@gmail.com> (c++-sification) * * Copyright (C) 2001-2014 Authors - * - * This code is in public domain + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_SP_COLOR_NOTEBOOK_H #define SEEN_SP_COLOR_NOTEBOOK_H diff --git a/src/ui/widget/color-picker.cpp b/src/ui/widget/color-picker.cpp index 5c6820e83..ad74a10cc 100644 --- a/src/ui/widget/color-picker.cpp +++ b/src/ui/widget/color-picker.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Lauris Kaplinski <lauris@kaplinski.com> @@ -7,7 +8,7 @@ * * Copyright (C) Authors 2000-2005 * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "color-picker.h" diff --git a/src/ui/widget/color-picker.h b/src/ui/widget/color-picker.h index 325ba7d13..f0252550b 100644 --- a/src/ui/widget/color-picker.h +++ b/src/ui/widget/color-picker.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Color picker button and window. */ @@ -7,7 +8,7 @@ * * Copyright (C) Authors 2000-2005 * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef __COLOR_PICKER_H__ diff --git a/src/ui/widget/color-preview.cpp b/src/ui/widget/color-preview.cpp index 54b2991f0..ac8fc5788 100644 --- a/src/ui/widget/color-preview.cpp +++ b/src/ui/widget/color-preview.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Lauris Kaplinski <lauris@kaplinski.com> @@ -6,7 +7,7 @@ * Copyright (C) 2001-2005 Authors * Copyright (C) 2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/color-preview.h" diff --git a/src/ui/widget/color-preview.h b/src/ui/widget/color-preview.h index 8422961ec..b78957929 100644 --- a/src/ui/widget/color-preview.h +++ b/src/ui/widget/color-preview.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_COLOR_PREVIEW_H #define SEEN_COLOR_PREVIEW_H /* @@ -8,7 +9,7 @@ * Copyright (C) 2001-2005 Authors * Copyright (C) 2001 Ximian, Inc. * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/widget.h> diff --git a/src/ui/widget/color-scales.cpp b/src/ui/widget/color-scales.cpp index f5334821a..e10b9f6a5 100644 --- a/src/ui/widget/color-scales.cpp +++ b/src/ui/widget/color-scales.cpp @@ -1,5 +1,13 @@ -/* +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: + * see git history * bulia byak <buliabyak@users.sf.net> + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/adjustment.h> diff --git a/src/ui/widget/color-scales.h b/src/ui/widget/color-scales.h index d14b5edaa..f3007fd7b 100644 --- a/src/ui/widget/color-scales.h +++ b/src/ui/widget/color-scales.h @@ -1,3 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ #ifndef SEEN_SP_COLOR_SCALES_H #define SEEN_SP_COLOR_SCALES_H diff --git a/src/ui/widget/color-slider.cpp b/src/ui/widget/color-slider.cpp index e3b06f09c..a6a516774 100644 --- a/src/ui/widget/color-slider.cpp +++ b/src/ui/widget/color-slider.cpp @@ -1,14 +1,14 @@ -/** - * @file +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file * A slider with colored background - implementation. - */ -/* Author: - * Lauris Kaplinski <lauris@kaplinski.com> + *//* + * Authors: + * see git history + * Lauris Kaplinski <lauris@kaplinski.com> * bulia byak <buliabyak@users.sf.net> * - * Copyright (C) 2001-2002 Lauris Kaplinski - * - * This code is in public domain + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gdkmm/cursor.h> diff --git a/src/ui/widget/color-slider.h b/src/ui/widget/color-slider.h index 956615880..6a0834e6f 100644 --- a/src/ui/widget/color-slider.h +++ b/src/ui/widget/color-slider.h @@ -1,12 +1,13 @@ -/* - * A slider with colored background - * - * Author: - * Lauris Kaplinski <lauris@kaplinski.com> - * - * Copyright (C) 2001-2002 Lauris Kaplinski +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: + * see git history +* Lauris Kaplinski <lauris@kaplinski.com> * - * This code is in public domain + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_COLOR_SLIDER_H diff --git a/src/ui/widget/color-wheel-selector.cpp b/src/ui/widget/color-wheel-selector.cpp index 0e0d39ab3..c0a27a552 100644 --- a/src/ui/widget/color-wheel-selector.cpp +++ b/src/ui/widget/color-wheel-selector.cpp @@ -1,3 +1,13 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * TODO: insert short description here + *//* + * Authors: see git history + * + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + #include "color-wheel-selector.h" #include <glibmm/i18n.h> diff --git a/src/ui/widget/color-wheel-selector.h b/src/ui/widget/color-wheel-selector.h index 39c5f752e..a5e492f4b 100644 --- a/src/ui/widget/color-wheel-selector.h +++ b/src/ui/widget/color-wheel-selector.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Color selector widget containing GIMP color wheel and slider @@ -5,9 +6,8 @@ /* Authors: * Tomasz Boczkowski <penginsbacon@gmail.com> (c++-sification) * - * Copyright (C) 2014 Authors - * - * This code is in public domain + * Copyright (C) 2018 Authors + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_SP_COLOR_WHEEL_SELECTOR_H #define SEEN_SP_COLOR_WHEEL_SELECTOR_H diff --git a/src/ui/widget/combo-enums.h b/src/ui/widget/combo-enums.h index e06f5b610..957c49cbd 100644 --- a/src/ui/widget/combo-enums.h +++ b/src/ui/widget/combo-enums.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Nicholas Bishop <nicholasbishop@gmail.com> @@ -5,7 +6,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_COMBO_ENUMS_H diff --git a/src/ui/widget/dock-item.cpp b/src/ui/widget/dock-item.cpp index c85abd6de..e438521c0 100644 --- a/src/ui/widget/dock-item.cpp +++ b/src/ui/widget/dock-item.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Gustav Broberg <broberg@kth.se> * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/dock.h" diff --git a/src/ui/widget/dock-item.h b/src/ui/widget/dock-item.h index 789abc224..be7ac77d2 100644 --- a/src/ui/widget/dock-item.h +++ b/src/ui/widget/dock-item.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Gustav Broberg <broberg@kth.se> * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/widget/dock.cpp b/src/ui/widget/dock.cpp index 1e5be3505..b2ff7c785 100644 --- a/src/ui/widget/dock.cpp +++ b/src/ui/widget/dock.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * A desktop dock pane to dock dialogs. @@ -7,7 +8,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifdef HAVE_CONFIG_H diff --git a/src/ui/widget/dock.h b/src/ui/widget/dock.h index efdb6fa39..f061f598d 100644 --- a/src/ui/widget/dock.h +++ b/src/ui/widget/dock.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief A desktop dock pane to dock dialogs, a custom wrapper around gdl-dock. */ @@ -6,7 +7,7 @@ * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_DOCK_H diff --git a/src/ui/widget/entity-entry.cpp b/src/ui/widget/entity-entry.cpp index d16ee6e6a..7cabed1b5 100644 --- a/src/ui/widget/entity-entry.cpp +++ b/src/ui/widget/entity-entry.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * bulia byak <buliabyak@users.sf.net> @@ -10,7 +11,7 @@ * * Copyright (C) 2000 - 2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "entity-entry.h" diff --git a/src/ui/widget/entity-entry.h b/src/ui/widget/entity-entry.h index 19eea0fc8..3168e4cb8 100644 --- a/src/ui/widget/entity-entry.h +++ b/src/ui/widget/entity-entry.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ralf Stephan <ralf@ark.in-berlin.de> * * Copyright (C) 2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_ENTITY_ENTRY__H diff --git a/src/ui/widget/entry.cpp b/src/ui/widget/entry.cpp index 9ee6c9a08..e9a63c55a 100644 --- a/src/ui/widget/entry.cpp +++ b/src/ui/widget/entry.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Johan Engelen <goejendaagh@zonnet.nl> * * Copyright (C) 2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "entry.h" diff --git a/src/ui/widget/entry.h b/src/ui/widget/entry.h index de5cceadd..3674d51d4 100644 --- a/src/ui/widget/entry.h +++ b/src/ui/widget/entry.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Johan Engelen <goejendaagh@zonnet.nl> * * Copyright (C) 2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_ENTRY__H diff --git a/src/ui/widget/filter-effect-chooser.cpp b/src/ui/widget/filter-effect-chooser.cpp index a517bc03e..aeca506eb 100644 --- a/src/ui/widget/filter-effect-chooser.cpp +++ b/src/ui/widget/filter-effect-chooser.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Filter effect selection selection widget * @@ -7,7 +8,7 @@ * * Copyright (C) 2007, 2017 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "filter-effect-chooser.h" diff --git a/src/ui/widget/filter-effect-chooser.h b/src/ui/widget/filter-effect-chooser.h index 148f44d04..054fac242 100644 --- a/src/ui/widget/filter-effect-chooser.h +++ b/src/ui/widget/filter-effect-chooser.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __FILTER_EFFECT_CHOOSER_H__ #define __FILTER_EFFECT_CHOOSER_H__ @@ -10,7 +11,7 @@ * * Copyright (C) 2007, 2017 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/ui/widget/font-button.cpp b/src/ui/widget/font-button.cpp index b9adedb2c..e0a140aea 100644 --- a/src/ui/widget/font-button.cpp +++ b/src/ui/widget/font-button.cpp @@ -1,6 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "font-button.h" diff --git a/src/ui/widget/font-button.h b/src/ui/widget/font-button.h index 98c3db440..a53b7d6f1 100644 --- a/src/ui/widget/font-button.h +++ b/src/ui/widget/font-button.h @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * * Copyright (C) 2007 Author * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_FONT_BUTTON_H diff --git a/src/ui/widget/font-selector-toolbar.cpp b/src/ui/widget/font-selector-toolbar.cpp index 0d057f2df..ea53d900b 100644 --- a/src/ui/widget/font-selector-toolbar.cpp +++ b/src/ui/widget/font-selector-toolbar.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Tavmjong Bah <tavmjong@free.fr> * * Copyright (C) 2018 Tavmong Bah * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/widget/font-selector-toolbar.h b/src/ui/widget/font-selector-toolbar.h index 1bddfac55..53cdcea56 100644 --- a/src/ui/widget/font-selector-toolbar.h +++ b/src/ui/widget/font-selector-toolbar.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Tavmjong Bah <tavmjong@free.fr> * * Copyright (C) 2018 Tavmong Bah * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * * * The routines here create and manage a font selector widget with two parts, diff --git a/src/ui/widget/font-selector.cpp b/src/ui/widget/font-selector.cpp index 3def3eb2b..5c1905752 100644 --- a/src/ui/widget/font-selector.cpp +++ b/src/ui/widget/font-selector.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Tavmjong Bah <tavmjong@free.fr> * * Copyright (C) 2018 Tavmong Bah * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/widget/font-selector.h b/src/ui/widget/font-selector.h index c308c0528..df9057338 100644 --- a/src/ui/widget/font-selector.h +++ b/src/ui/widget/font-selector.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Tavmjong Bah <tavmjong@free.fr> * * Copyright (C) 2018 Tavmong Bah * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. * * * The routines here create and manage a font selector widget with three parts, diff --git a/src/ui/widget/font-variants.cpp b/src/ui/widget/font-variants.cpp index 06729eb26..8f99bd74c 100644 --- a/src/ui/widget/font-variants.cpp +++ b/src/ui/widget/font-variants.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Tavmjong Bah <tavmjong@free.fr> * * Copyright (C) 2015, 2018 Tavmong Bah * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/ui/widget/font-variants.h b/src/ui/widget/font-variants.h index 14e3fbb3a..83c9fa98e 100644 --- a/src/ui/widget/font-variants.h +++ b/src/ui/widget/font-variants.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Tavmjong Bah <tavmjong@free.fr> * * Copyright (C) 2015, 2018 Tavmong Bah * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_FONT_VARIANT_H diff --git a/src/ui/widget/font-variations.cpp b/src/ui/widget/font-variations.cpp index 3a2a7b137..d0e6090e5 100644 --- a/src/ui/widget/font-variations.cpp +++ b/src/ui/widget/font-variations.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Felipe Corrêa da Silva Sanches <juca@members.fsf.org> @@ -5,7 +6,7 @@ * * Copyright (C) 2018 Felipe Corrêa da Silva Sanches, Tavmong Bah * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <iostream> diff --git a/src/ui/widget/font-variations.h b/src/ui/widget/font-variations.h index 594df217d..8ee7fd088 100644 --- a/src/ui/widget/font-variations.h +++ b/src/ui/widget/font-variations.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Felipe Corrêa da Silva Sanches <juca@members.fsf.org> @@ -5,7 +6,7 @@ * * Copyright (C) 2018 Felipe Corrêa da Silva Sanches, Tavmong Bah * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_FONT_VARIATIONS_H diff --git a/src/ui/widget/frame.cpp b/src/ui/widget/frame.cpp index 231cc28ee..34ed38eb7 100644 --- a/src/ui/widget/frame.cpp +++ b/src/ui/widget/frame.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Murray C * * Copyright (C) 2012 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "frame.h" diff --git a/src/ui/widget/frame.h b/src/ui/widget/frame.h index 3145eddfe..b2934b644 100644 --- a/src/ui/widget/frame.h +++ b/src/ui/widget/frame.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Murray C * * Copyright (C) 2012 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_FRAME_H diff --git a/src/ui/widget/highlight-picker.cpp b/src/ui/widget/highlight-picker.cpp index a3abc32bb..f35e405c7 100644 --- a/src/ui/widget/highlight-picker.cpp +++ b/src/ui/widget/highlight-picker.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Theodore Janeczko * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm.h> diff --git a/src/ui/widget/highlight-picker.h b/src/ui/widget/highlight-picker.h index 5e98ebd45..0b77a235f 100644 --- a/src/ui/widget/highlight-picker.h +++ b/src/ui/widget/highlight-picker.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __UI_DIALOG_HIGHLIGHT_PICKER_H__ #define __UI_DIALOG_HIGHLIGHT_PICKER_H__ /* @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/cellrendererpixbuf.h> diff --git a/src/ui/widget/iconrenderer.cpp b/src/ui/widget/iconrenderer.cpp index f84b6ffd5..447c1821d 100644 --- a/src/ui/widget/iconrenderer.cpp +++ b/src/ui/widget/iconrenderer.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Theodore Janeczko @@ -5,7 +6,7 @@ * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * Martin Owens 2018 <doctormo@gmail.com> * - * Released under GNU GPLv2+, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/iconrenderer.h" diff --git a/src/ui/widget/iconrenderer.h b/src/ui/widget/iconrenderer.h index 7f8e475ac..568d211ba 100644 --- a/src/ui/widget/iconrenderer.h +++ b/src/ui/widget/iconrenderer.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __UI_DIALOG_ADDTOICON_H__ #define __UI_DIALOG_ADDTOICON_H__ /* @@ -7,7 +8,7 @@ * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * Martin Owens 2018 <doctormo@gmail.com> * - * Released under GNU GPLv2+, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/cellrendererpixbuf.h> diff --git a/src/ui/widget/imagetoggler.cpp b/src/ui/widget/imagetoggler.cpp index 76b48fbbe..e50e3815e 100644 --- a/src/ui/widget/imagetoggler.cpp +++ b/src/ui/widget/imagetoggler.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Jon A. Cruz @@ -5,7 +6,7 @@ * * Copyright (C) 2006-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/widget/imagetoggler.h b/src/ui/widget/imagetoggler.h index fc97c2982..a03ee37dc 100644 --- a/src/ui/widget/imagetoggler.h +++ b/src/ui/widget/imagetoggler.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __UI_DIALOG_IMAGETOGGLER_H__ #define __UI_DIALOG_IMAGETOGGLER_H__ /* @@ -7,7 +8,7 @@ * * Copyright (C) 2006-2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/cellrendererpixbuf.h> diff --git a/src/ui/widget/ink-select-one-action.cpp b/src/ui/widget/ink-select-one-action.cpp index b85e9c189..7cff5f0be 100644 --- a/src/ui/widget/ink-select-one-action.cpp +++ b/src/ui/widget/ink-select-one-action.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Tavmjong Bah <tavmjong@free.fr> * * Copyright (C) 2017 Tavmjong Bah * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ diff --git a/src/ui/widget/ink-select-one-action.h b/src/ui/widget/ink-select-one-action.h index 34495d346..efe249da8 100644 --- a/src/ui/widget/ink-select-one-action.h +++ b/src/ui/widget/ink-select-one-action.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_INK_SELECT_ONE_ACTION #define SEEN_INK_SELECT_ONE_ACTION @@ -7,7 +8,7 @@ * * Copyright (C) 2017 Tavmjong Bah * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /** diff --git a/src/ui/widget/ink-spinscale.cpp b/src/ui/widget/ink-spinscale.cpp index 3e075978b..6fd79c9af 100644 --- a/src/ui/widget/ink-spinscale.cpp +++ b/src/ui/widget/ink-spinscale.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Tavmjong Bah <tavmjong@free.fr> * * Copyright (C) 2017 Tavmjong Bah * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /** \file diff --git a/src/ui/widget/ink-spinscale.h b/src/ui/widget/ink-spinscale.h index a5807f8dc..ada7efd29 100644 --- a/src/ui/widget/ink-spinscale.h +++ b/src/ui/widget/ink-spinscale.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef INK_SPINSCALE_H #define INK_SPINSCALE_H @@ -7,7 +8,7 @@ * * Copyright (C) 2017 Tavmjong Bah * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ /** diff --git a/src/ui/widget/insertordericon.cpp b/src/ui/widget/insertordericon.cpp index 1343786a1..3abb82586 100644 --- a/src/ui/widget/insertordericon.cpp +++ b/src/ui/widget/insertordericon.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Theodore Janeczko * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/insertordericon.h" diff --git a/src/ui/widget/insertordericon.h b/src/ui/widget/insertordericon.h index 5003edb0b..7ca1cefec 100644 --- a/src/ui/widget/insertordericon.h +++ b/src/ui/widget/insertordericon.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __UI_DIALOG_INSERTORDERICON_H__ #define __UI_DIALOG_INSERTORDERICON_H__ /* @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/cellrendererpixbuf.h> diff --git a/src/ui/widget/labelled.cpp b/src/ui/widget/labelled.cpp index a38391590..39d1456dd 100644 --- a/src/ui/widget/labelled.cpp +++ b/src/ui/widget/labelled.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Carl Hetherington <inkscape@carlh.net> @@ -5,7 +6,7 @@ * * Copyright (C) 2004 Carl Hetherington * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "helper/icon-loader.h" diff --git a/src/ui/widget/labelled.h b/src/ui/widget/labelled.h index 0f59a4d68..e0ffa20c4 100644 --- a/src/ui/widget/labelled.h +++ b/src/ui/widget/labelled.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Carl Hetherington <inkscape@carlh.net> @@ -5,7 +6,7 @@ * * Copyright (C) 2004 Carl Hetherington * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_LABELLED_H diff --git a/src/ui/widget/layer-selector.cpp b/src/ui/widget/layer-selector.cpp index 91f10817e..59b26c2ad 100644 --- a/src/ui/widget/layer-selector.cpp +++ b/src/ui/widget/layer-selector.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Inkscape::Widgets::LayerSelector - layer selector widget * @@ -7,7 +8,7 @@ * * Copyright (C) 2004 MenTaLguY * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cstring> diff --git a/src/ui/widget/layer-selector.h b/src/ui/widget/layer-selector.h index bcdc2548e..13f381121 100644 --- a/src/ui/widget/layer-selector.h +++ b/src/ui/widget/layer-selector.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Inkscape::Widgets::LayerSelector - layer selector widget * @@ -6,7 +7,7 @@ * * Copyright (C) 2004 MenTaLguY * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_WIDGETS_LAYER_SELECTOR diff --git a/src/ui/widget/layertypeicon.cpp b/src/ui/widget/layertypeicon.cpp index 9dac64c32..33e668702 100644 --- a/src/ui/widget/layertypeicon.cpp +++ b/src/ui/widget/layertypeicon.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Theodore Janeczko * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/layertypeicon.h" diff --git a/src/ui/widget/layertypeicon.h b/src/ui/widget/layertypeicon.h index 017910e27..7dccf4c7d 100644 --- a/src/ui/widget/layertypeicon.h +++ b/src/ui/widget/layertypeicon.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef __UI_DIALOG_LAYERTYPEICON_H__ #define __UI_DIALOG_LAYERTYPEICON_H__ /* @@ -6,7 +7,7 @@ * * Copyright (C) Theodore Janeczko 2012 <flutterguy317@gmail.com> * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/cellrendererpixbuf.h> diff --git a/src/ui/widget/licensor.cpp b/src/ui/widget/licensor.cpp index de6817266..c5d6a9aca 100644 --- a/src/ui/widget/licensor.cpp +++ b/src/ui/widget/licensor.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * bulia byak <buliabyak@users.sf.net> @@ -9,7 +10,7 @@ * * Copyright (C) 2000 - 2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "licensor.h" diff --git a/src/ui/widget/licensor.h b/src/ui/widget/licensor.h index 798d20d4e..3e1f0dae9 100644 --- a/src/ui/widget/licensor.h +++ b/src/ui/widget/licensor.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ralf Stephan <ralf@ark.in-berlin.de> * * Copyright (C) 2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_LICENSOR_H diff --git a/src/ui/widget/notebook-page.cpp b/src/ui/widget/notebook-page.cpp index 6bb84014c..894b290fe 100644 --- a/src/ui/widget/notebook-page.cpp +++ b/src/ui/widget/notebook-page.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Notebook page widget. * @@ -6,7 +7,7 @@ * * Copyright (C) 2004 Bryce Harrington * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "notebook-page.h" diff --git a/src/ui/widget/notebook-page.h b/src/ui/widget/notebook-page.h index 2e6fbba06..cc11d3056 100644 --- a/src/ui/widget/notebook-page.h +++ b/src/ui/widget/notebook-page.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Bryce Harrington <bryce@bryceharrington.org> * * Copyright (C) 2004 Bryce Harrington * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_NOTEBOOK_PAGE_H diff --git a/src/ui/widget/object-composite-settings.cpp b/src/ui/widget/object-composite-settings.cpp index fc24ec7cd..6e37c095b 100644 --- a/src/ui/widget/object-composite-settings.cpp +++ b/src/ui/widget/object-composite-settings.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * A widget for controlling object compositing (filter, opacity, etc.) * @@ -9,7 +10,7 @@ * * Copyright (C) 2004--2008 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/object-composite-settings.h" diff --git a/src/ui/widget/object-composite-settings.h b/src/ui/widget/object-composite-settings.h index d71050ab3..8e57bbf0c 100644 --- a/src/ui/widget/object-composite-settings.h +++ b/src/ui/widget/object-composite-settings.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later #ifndef SEEN_UI_WIDGET_OBJECT_COMPOSITE_SETTINGS_H #define SEEN_UI_WIDGET_OBJECT_COMPOSITE_SETTINGS_H @@ -8,7 +9,7 @@ * * Copyright (C) 2004--2007 Authors * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/ui/widget/page-sizer.cpp b/src/ui/widget/page-sizer.cpp index 47f99beec..12f3e36d3 100644 --- a/src/ui/widget/page-sizer.cpp +++ b/src/ui/widget/page-sizer.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * @@ -14,7 +15,7 @@ * * Copyright (C) 2000 - 2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "page-sizer.h" diff --git a/src/ui/widget/page-sizer.h b/src/ui/widget/page-sizer.h index e90205514..1d1d605d6 100644 --- a/src/ui/widget/page-sizer.h +++ b/src/ui/widget/page-sizer.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Ralf Stephan <ralf@ark.in-berlin.de> * * Copyright (C) 2005-2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_PAGE_SIZER_H diff --git a/src/ui/widget/pages-skeleton.h b/src/ui/widget/pages-skeleton.h index 348f24f4d..b1977ed5b 100644 --- a/src/ui/widget/pages-skeleton.h +++ b/src/ui/widget/pages-skeleton.h @@ -1,3 +1,23 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** + * @file + * List of paper sizes + */ +/* + * Authors: + * bulia byak <buliabyak@users.sf.net> + * Lauris Kaplinski <lauris@kaplinski.com> + * Jon Phillips <jon@rejon.org> + * Ralf Stephan <ralf@ark.in-berlin.de> (Gtkmm) + * Bob Jamison <ishmal@users.sf.net> + * Abhishek Sharma + * + see git history + * + * Copyright (C) 2000 - 2018 Authors + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + #ifndef SEEN_PAGES_SKELETON_H #define SEEN_PAGES_SKELETON_H diff --git a/src/ui/widget/panel.cpp b/src/ui/widget/panel.cpp index 255dc2206..aff7f98fe 100644 --- a/src/ui/widget/panel.cpp +++ b/src/ui/widget/panel.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Bryce Harrington <bryce@bryceharrington.org> @@ -8,7 +9,7 @@ * Copyright (C) 2005 Jon A. Cruz * Copyright (C) 2007 Gustav Broberg * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/dialog.h> // for Gtk::RESPONSE_* diff --git a/src/ui/widget/panel.h b/src/ui/widget/panel.h index 340c1acdd..3f08218da 100644 --- a/src/ui/widget/panel.h +++ b/src/ui/widget/panel.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Bryce Harrington <bryce@bryceharrington.org> @@ -7,7 +8,7 @@ * Copyright (C) 2005 Jon A. Cruz * Copyright (C) 2012 Kris De Gussem * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_UI_WIDGET_PANEL_H diff --git a/src/ui/widget/point.cpp b/src/ui/widget/point.cpp index 3a12e87e4..e0d6eed1c 100644 --- a/src/ui/widget/point.cpp +++ b/src/ui/widget/point.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Johan Engelen <j.b.c.engelen@utwente.nl> @@ -8,7 +9,7 @@ * Copyright (C) 2007 Authors * Copyright (C) 2004 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "ui/widget/point.h" diff --git a/src/ui/widget/point.h b/src/ui/widget/point.h index ab4debe96..104bc788a 100644 --- a/src/ui/widget/point.h +++ b/src/ui/widget/point.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Johan Engelen <j.b.c.engelen@utwente.nl> @@ -8,7 +9,7 @@ * Copyright (C) 2007 Authors * Copyright (C) 2004 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_POINT_H #define INKSCAPE_UI_WIDGET_POINT_H diff --git a/src/ui/widget/preferences-widget.cpp b/src/ui/widget/preferences-widget.cpp index d712c17ae..a44199b10 100644 --- a/src/ui/widget/preferences-widget.cpp +++ b/src/ui/widget/preferences-widget.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Inkscape Preferences dialog. * @@ -7,7 +8,7 @@ * * Copyright (C) 2004, 2006, 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <glibmm/i18n.h> diff --git a/src/ui/widget/preferences-widget.h b/src/ui/widget/preferences-widget.h index 6a1e5cab7..3e132c05f 100644 --- a/src/ui/widget/preferences-widget.h +++ b/src/ui/widget/preferences-widget.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Widgets for Inkscape Preferences dialog. @@ -9,7 +10,7 @@ * * Copyright (C) 2004, 2006, 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_INKSCAPE_PREFERENCES_H diff --git a/src/ui/widget/random.cpp b/src/ui/widget/random.cpp index 27c2f8f6f..81d9f1ace 100644 --- a/src/ui/widget/random.cpp +++ b/src/ui/widget/random.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Carl Hetherington <inkscape@carlh.net> @@ -6,7 +7,7 @@ * * Copyright (C) 2004 Carl Hetherington * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "helper/icon-loader.h" diff --git a/src/ui/widget/random.h b/src/ui/widget/random.h index d86ab6246..2648cb2e2 100644 --- a/src/ui/widget/random.h +++ b/src/ui/widget/random.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Johan Engelen <j.b.c.engelen@ewi.utwente.nl> * * Copyright (C) 2007 Author * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_RANDOM_H diff --git a/src/ui/widget/registered-enums.h b/src/ui/widget/registered-enums.h index c837640d3..b0cc19951 100644 --- a/src/ui/widget/registered-enums.h +++ b/src/ui/widget/registered-enums.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Johan Engelen <j.b.c.engelen@ewi.utwente.nl> * * Copyright (C) 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_REGISTERED_ENUMS_H diff --git a/src/ui/widget/registered-widget.cpp b/src/ui/widget/registered-widget.cpp index 23376ae38..e779f14e5 100644 --- a/src/ui/widget/registered-widget.cpp +++ b/src/ui/widget/registered-widget.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Johan Engelen <j.b.c.engelen@utwente.nl> @@ -10,7 +11,7 @@ * * Copyright (C) 2000 - 2007 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "registered-widget.h" diff --git a/src/ui/widget/registered-widget.h b/src/ui/widget/registered-widget.h index 033ab9541..84b850312 100644 --- a/src/ui/widget/registered-widget.h +++ b/src/ui/widget/registered-widget.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ralf Stephan <ralf@ark.in-berlin.de> @@ -6,7 +7,7 @@ * * Copyright (C) 2005-2008 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_REGISTERED_WIDGET__H_ diff --git a/src/ui/widget/registry.cpp b/src/ui/widget/registry.cpp index b8260a694..28340076d 100644 --- a/src/ui/widget/registry.cpp +++ b/src/ui/widget/registry.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: - * Ralf Stephan <ralf@ark.in-berlin.de> + * Ralf Stephan <ralf@ark.in-berlin.de> * * Copyright (C) 2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "registry.h" diff --git a/src/ui/widget/registry.h b/src/ui/widget/registry.h index a236b96ad..190aaac0f 100644 --- a/src/ui/widget/registry.h +++ b/src/ui/widget/registry.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ralf Stephan <ralf@ark.in-berlin.de> * * Copyright (C) 2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_REGISTRY__H #define INKSCAPE_UI_WIDGET_REGISTRY__H diff --git a/src/ui/widget/rendering-options.cpp b/src/ui/widget/rendering-options.cpp index 79c2573cb..549f494f1 100644 --- a/src/ui/widget/rendering-options.cpp +++ b/src/ui/widget/rendering-options.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Kees Cook <kees@outflux.net> @@ -5,7 +6,7 @@ * Copyright (C) 2007 Kees Cook * Copyright (C) 2004 Bryce Harrington * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm.h> diff --git a/src/ui/widget/rendering-options.h b/src/ui/widget/rendering-options.h index 74c56591f..2e10ff354 100644 --- a/src/ui/widget/rendering-options.h +++ b/src/ui/widget/rendering-options.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Kees Cook <kees@outflux.net> @@ -5,7 +6,7 @@ * Copyright (C) 2007 Kees Cook * Copyright (C) 2004 Bryce Harrington * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_RENDERING_OPTIONS_H diff --git a/src/ui/widget/rotateable.cpp b/src/ui/widget/rotateable.cpp index 207145411..639f8d1a8 100644 --- a/src/ui/widget/rotateable.cpp +++ b/src/ui/widget/rotateable.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * buliabyak@gmail.com * * Copyright (C) 2007 authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <gtkmm/box.h> diff --git a/src/ui/widget/rotateable.h b/src/ui/widget/rotateable.h index 5ed3c62c9..c174a09f1 100644 --- a/src/ui/widget/rotateable.h +++ b/src/ui/widget/rotateable.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * buliabyak@gmail.com * * Copyright (C) 2007 authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_ROTATEABLE_H diff --git a/src/ui/widget/scalar-unit.cpp b/src/ui/widget/scalar-unit.cpp index 203f4e4a4..d9acd375b 100644 --- a/src/ui/widget/scalar-unit.cpp +++ b/src/ui/widget/scalar-unit.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Bryce Harrington <bryce@bryceharrington.org> @@ -6,7 +7,7 @@ * * Copyright (C) 2004-2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "scalar-unit.h" diff --git a/src/ui/widget/scalar-unit.h b/src/ui/widget/scalar-unit.h index debcff53e..e82c41d04 100644 --- a/src/ui/widget/scalar-unit.h +++ b/src/ui/widget/scalar-unit.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Bryce Harrington <bryce@bryceharrington.org> @@ -6,7 +7,7 @@ * * Copyright (C) 2004-2005 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_SCALAR_UNIT_H diff --git a/src/ui/widget/scalar.cpp b/src/ui/widget/scalar.cpp index 3281d340c..471de497c 100644 --- a/src/ui/widget/scalar.cpp +++ b/src/ui/widget/scalar.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Carl Hetherington <inkscape@carlh.net> @@ -7,7 +8,7 @@ * * Copyright (C) 2004-2011 authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "scalar.h" diff --git a/src/ui/widget/scalar.h b/src/ui/widget/scalar.h index 0d9ed9c4b..9581d86dc 100644 --- a/src/ui/widget/scalar.h +++ b/src/ui/widget/scalar.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Carl Hetherington <inkscape@carlh.net> @@ -6,7 +7,7 @@ * * Copyright (C) 2004 Carl Hetherington * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_SCALAR_H diff --git a/src/ui/widget/selected-style.cpp b/src/ui/widget/selected-style.cpp index a16dcc26b..92c460c03 100644 --- a/src/ui/widget/selected-style.cpp +++ b/src/ui/widget/selected-style.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * buliabyak@gmail.com @@ -6,7 +7,7 @@ * * Copyright (C) 2005 author * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "selected-style.h" diff --git a/src/ui/widget/selected-style.h b/src/ui/widget/selected-style.h index 490f4290a..2f76b7a11 100644 --- a/src/ui/widget/selected-style.h +++ b/src/ui/widget/selected-style.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * buliabyak@gmail.com @@ -5,7 +6,7 @@ * * Copyright (C) 2005 authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_CURRENT_STYLE_H diff --git a/src/ui/widget/spin-scale.cpp b/src/ui/widget/spin-scale.cpp index 0c843590c..5e3a2a261 100644 --- a/src/ui/widget/spin-scale.cpp +++ b/src/ui/widget/spin-scale.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * * Copyright (C) 2012 Author * 2017 Tavmjong Bah * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "spin-scale.h" diff --git a/src/ui/widget/spin-scale.h b/src/ui/widget/spin-scale.h index 743f0e393..b154cb333 100644 --- a/src/ui/widget/spin-scale.h +++ b/src/ui/widget/spin-scale.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * * Copyright (C) 2012 Author * 2017 Tavmjong Bah * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_SPIN_SCALE_H diff --git a/src/ui/widget/spin-slider.cpp b/src/ui/widget/spin-slider.cpp index 0b63e7455..e4cd0c667 100644 --- a/src/ui/widget/spin-slider.cpp +++ b/src/ui/widget/spin-slider.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Nicholas Bishop <nicholasbishop@gmail.com> @@ -5,7 +6,7 @@ * * Copyright (C) 2007 Author * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "spin-slider.h" diff --git a/src/ui/widget/spin-slider.h b/src/ui/widget/spin-slider.h index 8c7c1fde6..24a18a048 100644 --- a/src/ui/widget/spin-slider.h +++ b/src/ui/widget/spin-slider.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Nicholas Bishop <nicholasbishop@gmail.com> * * Copyright (C) 2007 Author * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_SPIN_SLIDER_H diff --git a/src/ui/widget/spinbutton.cpp b/src/ui/widget/spinbutton.cpp index 4271936a1..b5769d8e2 100644 --- a/src/ui/widget/spinbutton.cpp +++ b/src/ui/widget/spinbutton.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Johan B. C. Engelen * * Copyright (C) 2011 Author * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "spinbutton.h" diff --git a/src/ui/widget/spinbutton.h b/src/ui/widget/spinbutton.h index 918e7047f..33ff11576 100644 --- a/src/ui/widget/spinbutton.h +++ b/src/ui/widget/spinbutton.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Johan B. C. Engelen * * Copyright (C) 2011 Author * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_SPINBUTTON_H diff --git a/src/ui/widget/style-subject.cpp b/src/ui/widget/style-subject.cpp index 04de4b162..7be56c175 100644 --- a/src/ui/widget/style-subject.cpp +++ b/src/ui/widget/style-subject.cpp @@ -1,8 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2007 MenTaLguY <mental@rydia.net> * Abhishek Sharma * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "style-subject.h" diff --git a/src/ui/widget/style-subject.h b/src/ui/widget/style-subject.h index 3a3010f46..931dbd15f 100644 --- a/src/ui/widget/style-subject.h +++ b/src/ui/widget/style-subject.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Abstraction for different style widget operands. @@ -5,7 +6,7 @@ /* * Copyright (C) 2007 MenTaLguY <mental@rydia.net> * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef SEEN_INKSCAPE_UI_WIDGET_STYLE_SUBJECT_H #define SEEN_INKSCAPE_UI_WIDGET_STYLE_SUBJECT_H diff --git a/src/ui/widget/style-swatch.cpp b/src/ui/widget/style-swatch.cpp index 04a63271e..97b801547 100644 --- a/src/ui/widget/style-swatch.cpp +++ b/src/ui/widget/style-swatch.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** * @file * Static style swatch (fill, stroke, opacity). @@ -8,7 +9,7 @@ * * Copyright (C) 2005-2008 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "style-swatch.h" diff --git a/src/ui/widget/style-swatch.h b/src/ui/widget/style-swatch.h index 7a56a5d04..4c7dc51b5 100644 --- a/src/ui/widget/style-swatch.h +++ b/src/ui/widget/style-swatch.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /** @file * @brief Static style swatch (fill, stroke, opacity) */ @@ -7,7 +8,7 @@ * * Copyright (C) 2005-2008 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_CURRENT_STYLE_H diff --git a/src/ui/widget/text.cpp b/src/ui/widget/text.cpp index 7b0df45ad..656ec45e2 100644 --- a/src/ui/widget/text.cpp +++ b/src/ui/widget/text.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Carl Hetherington <inkscape@carlh.net> @@ -5,7 +6,7 @@ * * Copyright (C) 2004 Carl Hetherington * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "text.h" diff --git a/src/ui/widget/text.h b/src/ui/widget/text.h index 593875b23..87c93572c 100644 --- a/src/ui/widget/text.h +++ b/src/ui/widget/text.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Carl Hetherington <inkscape@carlh.net> @@ -5,7 +6,7 @@ * * Copyright (C) 2004 Carl Hetherington * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_TEXT_H diff --git a/src/ui/widget/tolerance-slider.cpp b/src/ui/widget/tolerance-slider.cpp index 002681204..1b639a214 100644 --- a/src/ui/widget/tolerance-slider.cpp +++ b/src/ui/widget/tolerance-slider.cpp @@ -1,11 +1,12 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: - * Ralf Stephan <ralf@ark.in-berlin.de> + * Ralf Stephan <ralf@ark.in-berlin.de> * Abhishek Sharma * * Copyright (C) 2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include "tolerance-slider.h" diff --git a/src/ui/widget/tolerance-slider.h b/src/ui/widget/tolerance-slider.h index b77512c34..1c4af1d37 100644 --- a/src/ui/widget/tolerance-slider.h +++ b/src/ui/widget/tolerance-slider.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Authors: * Ralf Stephan <ralf@ark.in-berlin.de> * * Copyright (C) 2006 Authors * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_TOLERANCE_SLIDER__H_ diff --git a/src/ui/widget/unit-menu.cpp b/src/ui/widget/unit-menu.cpp index e6453a03b..7be848aac 100644 --- a/src/ui/widget/unit-menu.cpp +++ b/src/ui/widget/unit-menu.cpp @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Bryce Harrington <bryce@bryceharrington.org> * * Copyright (C) 2004 Bryce Harrington * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <cmath> diff --git a/src/ui/widget/unit-menu.h b/src/ui/widget/unit-menu.h index a076c5168..a219a9486 100644 --- a/src/ui/widget/unit-menu.h +++ b/src/ui/widget/unit-menu.h @@ -1,10 +1,11 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Author: * Bryce Harrington <bryce@bryceharrington.org> * * Copyright (C) 2004 Bryce Harrington * - * Released under GNU GPL. Read the file 'COPYING' for more information. + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_UNIT_H diff --git a/src/ui/widget/unit-tracker.cpp b/src/ui/widget/unit-tracker.cpp index 2d562f468..9a4ff8268 100644 --- a/src/ui/widget/unit-tracker.cpp +++ b/src/ui/widget/unit-tracker.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Inkscape::UI::Widget::UnitTracker * Simple mediator to synchronize changes to unit menus @@ -10,7 +11,7 @@ * Copyright (C) 2013 Matthew Petroff * Copyright (C) 2018 Tavmjong Bah * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #include <algorithm> diff --git a/src/ui/widget/unit-tracker.h b/src/ui/widget/unit-tracker.h index 10c21a7ec..f4d3b114d 100644 --- a/src/ui/widget/unit-tracker.h +++ b/src/ui/widget/unit-tracker.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Inkscape::UI::Widget::UnitTracker * Simple mediator to synchronize changes to unit menus @@ -9,7 +10,7 @@ * Copyright (C) 2007 Jon A. Cruz * Copyright (C) 2013 Matthew Petroff * - * Released under GNU GPL, read the file 'COPYING' for more information + * Released under GNU GPL v2+, read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_UNIT_TRACKER_H |
