summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2013-03-05 13:10:32 +0200
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2013-03-05 13:10:32 +0200
commit984cff4693b34e1f20cf51403ab91c73d73916fa (patch)
tree7dee5d9b6ca7b3477cf8fd3a3c69fb00020ae85c
parentb9f3bb08b3e6dfaaf8443261acf6306850018c5b (diff)
Added copyright headers to *.h/*.cpp files missing them
Also added private header warnings to *_p.h files missing them
-rw-r--r--demos/audio/main.cpp20
-rw-r--r--demos/audio/widget.cpp20
-rw-r--r--demos/audio/widget.h20
-rw-r--r--demos/audio/xyseriesiodevice.cpp20
-rw-r--r--demos/audio/xyseriesiodevice.h20
-rw-r--r--demos/callout/callout.cpp20
-rw-r--r--demos/callout/callout.h20
-rw-r--r--demos/callout/main.cpp20
-rw-r--r--src/charthelpers_p.h29
-rw-r--r--src/chartlayout_p.h9
-rw-r--r--src/legend/legendlayout_p.h9
11 files changed, 207 insertions, 0 deletions
diff --git a/demos/audio/main.cpp b/demos/audio/main.cpp
index 7b1f424b..5fefe335 100644
--- a/demos/audio/main.cpp
+++ b/demos/audio/main.cpp
@@ -1,3 +1,23 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
#include <QApplication>
#include "widget.h"
diff --git a/demos/audio/widget.cpp b/demos/audio/widget.cpp
index 9bca1821..a94632a5 100644
--- a/demos/audio/widget.cpp
+++ b/demos/audio/widget.cpp
@@ -1,3 +1,23 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
#include "widget.h"
#include <QAudioDeviceInfo>
#include <QAudioInput>
diff --git a/demos/audio/widget.h b/demos/audio/widget.h
index c3d9646b..f49ab477 100644
--- a/demos/audio/widget.h
+++ b/demos/audio/widget.h
@@ -1,3 +1,23 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
#ifndef WIDGET_H
#define WIDGET_H
diff --git a/demos/audio/xyseriesiodevice.cpp b/demos/audio/xyseriesiodevice.cpp
index 4d068617..35fe0788 100644
--- a/demos/audio/xyseriesiodevice.cpp
+++ b/demos/audio/xyseriesiodevice.cpp
@@ -1,3 +1,23 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
#include "xyseriesiodevice.h"
#include <QXYSeries>
diff --git a/demos/audio/xyseriesiodevice.h b/demos/audio/xyseriesiodevice.h
index a4610fd5..71dbf2ae 100644
--- a/demos/audio/xyseriesiodevice.h
+++ b/demos/audio/xyseriesiodevice.h
@@ -1,3 +1,23 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
#ifndef XYSERIESIODEVICE_H
#define XYSERIESIODEVICE_H
diff --git a/demos/callout/callout.cpp b/demos/callout/callout.cpp
index 22130e20..0b3f4486 100644
--- a/demos/callout/callout.cpp
+++ b/demos/callout/callout.cpp
@@ -1,3 +1,23 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
#include "callout.h"
#include <QPainter>
#include <QFontMetrics>
diff --git a/demos/callout/callout.h b/demos/callout/callout.h
index f5ab1ea0..e96a564e 100644
--- a/demos/callout/callout.h
+++ b/demos/callout/callout.h
@@ -1,3 +1,23 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
#ifndef CALLOUT_H
#define CALLOUT_H
diff --git a/demos/callout/main.cpp b/demos/callout/main.cpp
index 18858fd3..bfe7d284 100644
--- a/demos/callout/main.cpp
+++ b/demos/callout/main.cpp
@@ -1,3 +1,23 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
#include <QApplication>
#include "view.h"
diff --git a/src/charthelpers_p.h b/src/charthelpers_p.h
index 63e5cfaf..993eb574 100644
--- a/src/charthelpers_p.h
+++ b/src/charthelpers_p.h
@@ -1,3 +1,32 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+// W A R N I N G
+// -------------
+//
+// This file is not part of the QtCommercial Chart API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+
#ifndef CHARTHELPERS_P_H
#define CHARTHELPERS_P_H
diff --git a/src/chartlayout_p.h b/src/chartlayout_p.h
index 8c3a869e..5b8d38a8 100644
--- a/src/chartlayout_p.h
+++ b/src/chartlayout_p.h
@@ -18,6 +18,15 @@
**
****************************************************************************/
+// W A R N I N G
+// -------------
+//
+// This file is not part of the QtCommercial Chart API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+
#ifndef CHARTLAYOUT_H
#define CHARTLAYOUT_H
#include <QGraphicsLayout>
diff --git a/src/legend/legendlayout_p.h b/src/legend/legendlayout_p.h
index 1ef8c93e..4c7c338d 100644
--- a/src/legend/legendlayout_p.h
+++ b/src/legend/legendlayout_p.h
@@ -18,6 +18,15 @@
**
****************************************************************************/
+// W A R N I N G
+// -------------
+//
+// This file is not part of the QtCommercial Chart API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+
#ifndef LEGENDLAYOUT_H
#define LEGENDLAYOUT_H
#include <QGraphicsLayout>