summaryrefslogtreecommitdiffstats
path: root/src/ui/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/tools')
-rw-r--r--src/ui/tools/arc-tool.cpp3
-rw-r--r--src/ui/tools/arc-tool.h3
-rw-r--r--src/ui/tools/box3d-tool.cpp3
-rw-r--r--src/ui/tools/box3d-tool.h3
-rw-r--r--src/ui/tools/calligraphic-tool.cpp3
-rw-r--r--src/ui/tools/calligraphic-tool.h3
-rw-r--r--src/ui/tools/connector-tool.cpp3
-rw-r--r--src/ui/tools/connector-tool.h3
-rw-r--r--src/ui/tools/dropper-tool.cpp3
-rw-r--r--src/ui/tools/dropper-tool.h3
-rw-r--r--src/ui/tools/dynamic-base.cpp9
-rw-r--r--src/ui/tools/dynamic-base.h3
-rw-r--r--src/ui/tools/eraser-tool.cpp3
-rw-r--r--src/ui/tools/eraser-tool.h3
-rw-r--r--src/ui/tools/flood-tool.cpp3
-rw-r--r--src/ui/tools/flood-tool.h3
-rw-r--r--src/ui/tools/freehand-base.cpp3
-rw-r--r--src/ui/tools/freehand-base.h3
-rw-r--r--src/ui/tools/gradient-tool.cpp3
-rw-r--r--src/ui/tools/gradient-tool.h3
-rw-r--r--src/ui/tools/lpe-tool.cpp3
-rw-r--r--src/ui/tools/lpe-tool.h3
-rw-r--r--src/ui/tools/measure-tool.cpp3
-rw-r--r--src/ui/tools/measure-tool.h3
-rw-r--r--src/ui/tools/mesh-tool.cpp3
-rw-r--r--src/ui/tools/mesh-tool.h3
-rw-r--r--src/ui/tools/node-tool.cpp3
-rw-r--r--src/ui/tools/node-tool.h3
-rw-r--r--src/ui/tools/pen-tool.cpp3
-rw-r--r--src/ui/tools/pen-tool.h13
-rw-r--r--src/ui/tools/pencil-tool.cpp3
-rw-r--r--src/ui/tools/pencil-tool.h13
-rw-r--r--src/ui/tools/rect-tool.cpp3
-rw-r--r--src/ui/tools/rect-tool.h3
-rw-r--r--src/ui/tools/select-tool.cpp3
-rw-r--r--src/ui/tools/select-tool.h3
-rw-r--r--src/ui/tools/spiral-tool.cpp3
-rw-r--r--src/ui/tools/spiral-tool.h3
-rw-r--r--src/ui/tools/spray-tool.cpp3
-rw-r--r--src/ui/tools/spray-tool.h5
-rw-r--r--src/ui/tools/star-tool.cpp3
-rw-r--r--src/ui/tools/star-tool.h3
-rw-r--r--src/ui/tools/text-tool.cpp3
-rw-r--r--src/ui/tools/text-tool.h3
-rw-r--r--src/ui/tools/tool-base.cpp3
-rw-r--r--src/ui/tools/tool-base.h3
-rw-r--r--src/ui/tools/tweak-tool.cpp3
-rw-r--r--src/ui/tools/tweak-tool.h5
-rw-r--r--src/ui/tools/zoom-tool.cpp3
-rw-r--r--src/ui/tools/zoom-tool.h3
50 files changed, 125 insertions, 55 deletions
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"