File indexing completed on 2024-05-12 16:33:27

0001 /*
0002    Copyright (c) 2017 Dag Andersen <danders@get2net.dk>
0003    Copyright (c) 2015 Friedrich W. H. Kossebau <kossebau@kde.org>
0004 
0005    This library is free software; you can redistribute it and/or
0006    modify it under the terms of the GNU Library General Public
0007    License as published by the Free Software Foundation; either
0008    version 2 of the License, or (at your option) any later version.
0009 
0010    This library is distributed in the hope that it will be useful,
0011    but WITHOUT ANY WARRANTY; without even the implied warranty of
0012    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0013    Library General Public License for more details.
0014 
0015    You should have received a copy of the GNU Library General Public License
0016    along with this library; see the file COPYING.LIB.  If not, write to
0017    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0018    Boston, MA 02110-1301, USA.
0019 */
0020 
0021 #include "ChartDebug.h"
0022 
0023 const QLoggingCategory &CHART_LOG()
0024 {
0025     static const QLoggingCategory category("calligra.plugin.chart.shape");
0026     return category;
0027 }
0028 
0029 const QLoggingCategory &CHARTPARSE_LOG()
0030 {
0031     static const QLoggingCategory category("calligra.plugin.chart.parse");
0032     return category;
0033 }
0034 
0035 const QLoggingCategory &CHARTLAYOUT_LOG()
0036 {
0037     static const QLoggingCategory category("calligra.plugin.chart.layout");
0038     return category;
0039 }
0040 
0041 const QLoggingCategory &CHARTODF_LOG()
0042 {
0043     static const QLoggingCategory category("calligra.plugin.chart.odf");
0044     return category;
0045 }
0046 
0047 const QLoggingCategory &CHARTTOOL_LOG()
0048 {
0049     static const QLoggingCategory category("calligra.plugin.chart.tool");
0050     return category;
0051 }
0052 
0053 const QLoggingCategory &CHARTAXIS_LOG()
0054 {
0055     static const QLoggingCategory category("calligra.plugin.chart.axis");
0056     return category;
0057 }
0058 
0059 const QLoggingCategory &CHARTDADASET_LOG()
0060 {
0061     static const QLoggingCategory category("calligra.plugin.chart.dataset");
0062     return category;
0063 }
0064 
0065 const QLoggingCategory &CHARTUI_TITLES_LOG()
0066 {
0067     static const QLoggingCategory category("calligra.plugin.chart.ui.titles");
0068     return category;
0069 }
0070 
0071 const QLoggingCategory &CHARTUI_LEGEND_LOG()
0072 {
0073     static const QLoggingCategory category("calligra.plugin.chart.ui.legend");
0074     return category;
0075 }
0076 
0077 const QLoggingCategory &CHARTUI_PLOTAREA_LOG()
0078 {
0079     static const QLoggingCategory category("calligra.plugin.chart.ui.plotarea");
0080     return category;
0081 }
0082 
0083 const QLoggingCategory &CHARTUI_AXES_LOG()
0084 {
0085     static const QLoggingCategory category("calligra.plugin.chart.ui.axes");
0086     return category;
0087 }
0088 
0089 const QLoggingCategory &CHARTUI_DATASET_LOG()
0090 {
0091     static const QLoggingCategory category("calligra.plugin.chart.ui.dataset");
0092     return category;
0093 }
0094 
0095 const QLoggingCategory &CHARTUI_BUBBLE_LOG()
0096 {
0097     static const QLoggingCategory category("calligra.plugin.chart.ui.bubble");
0098     return category;
0099 }
0100 
0101 const QLoggingCategory &CHARTUI_SCATTER_LOG()
0102 {
0103     static const QLoggingCategory category("calligra.plugin.chart.ui.scatter");
0104     return category;
0105 }
0106 
0107 const QLoggingCategory &CHARTUI_STOCK_LOG()
0108 {
0109     static const QLoggingCategory category("calligra.plugin.chart.ui.stock");
0110     return category;
0111 }