Skip to content

Commit

Permalink
license changed
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Jul 12, 2022
1 parent 642d7b8 commit c1b5412
Show file tree
Hide file tree
Showing 87 changed files with 889 additions and 158 deletions.
510 changes: 358 additions & 152 deletions LICENSE.md

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions plotjuggler_app/color_map.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "color_map.h"
#include <QSettings>

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/color_map.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef COLOR_MAP_H
#define COLOR_MAP_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/colormap_editor.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "colormap_editor.h"
#include "ui_colormap_editor.h"
#include "PlotJuggler/svg_util.h"
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/colormap_editor.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef COLOR_MAP_EDITOR_H
#define COLOR_MAP_EDITOR_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/colormap_selector.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "colormap_selector.h"
#include "ui_colormap_selector.h"
#include "color_map.h"
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/colormap_selector.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef COLORMAP_SELECTOR_H
#define COLORMAP_SELECTOR_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/curvelist_panel.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "curvelist_panel.h"
#include "ui_curvelist_panel.h"
#include "PlotJuggler/alphanum.hpp"
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/curvelist_panel.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef CURVE_SELECTOR_H
#define CURVE_SELECTOR_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/curvelist_view.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "curvelist_view.h"
#include <QApplication>
#include <QDrag>
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/curvelist_view.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef CURVELIST_VIEW_H
#define CURVELIST_VIEW_H

Expand Down
14 changes: 13 additions & 1 deletion plotjuggler_app/curvetree_view.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "curvetree_view.h"
#include "curvelist_panel.h"
#include <QFontDatabase>
Expand Down Expand Up @@ -68,7 +74,13 @@ void CurveTreeView::addItem(const QString& group_name,
const QString& tree_name,
const QString& plot_ID)
{
QSettings settings;
QSettings settings;/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/


bool use_separator = settings.value("Preferences::use_separator", true).toBool();

QStringList parts;
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/curvetree_view.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef CURVETREE_VIEW_H
#define CURVETREE_VIEW_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/customtracker.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "customtracker.h"
#include "qwt_series_data.h"
#include "qwt_plot.h"
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/customtracker.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef CUSTOMTRACKER_H
#define CUSTOMTRACKER_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/dummy_data.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "dummy_data.h"
#include <QColor>

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/dummy_data.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef DUMMY_DATA_H
#define DUMMY_DATA_H

Expand Down
14 changes: 10 additions & 4 deletions plotjuggler_app/main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "mainwindow.h"
#include <iostream>
#include <QApplication>
Expand Down Expand Up @@ -342,11 +348,11 @@ int main(int argc, char* argv[])

QNetworkRequest request;

QString uuid = settings.value("UUID", QUuid::createUuid().toString()).toString();
settings.setValue("UUID", uuid);
// QString uuid = settings.value("UUID", QUuid::createUuid().toString()).toString();
// settings.setValue("UUID", uuid);

request.setUrl(QUrl(QString("https://l4g9l4.deta.dev/check_updates/%1").arg(uuid)) );
manager.get(request);
// request.setUrl(QUrl(QString("https://l4g9l4.deta.dev/check_updates/%1").arg(uuid)) );
// manager.get(request);

MainWindow* w = nullptr;

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/mainwindow.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include <functional>
#include <stdio.h>
#include <numeric>
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/mainwindow.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/menubar.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "menubar.h"
#include <QDebug>
#include <QFontDatabase>
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/menubar.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef MENUBAR_H
#define MENUBAR_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/messageparser_base.cpp
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "PlotJuggler/messageparser_base.h"
6 changes: 6 additions & 0 deletions plotjuggler_app/multifile_prefix.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "multifile_prefix.h"
#include "ui_multifile_prefix.h"

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/multifile_prefix.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef MULTIFILE_PREFIX_H
#define MULTIFILE_PREFIX_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/new_release_dialog.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "new_release_dialog.h"
#include "ui_new_release_dialog.h"
#include <QSettings>
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/new_release_dialog.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef NEW_RELEASE_DIALOG_H
#define NEW_RELEASE_DIALOG_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/nlohmann_parsers.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "nlohmann_parsers.h"

#include "PlotJuggler/fmt/format.h"
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/nlohmann_parsers.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef NLOHMANN_PARSERS_H
#define NLOHMANN_PARSERS_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/plot_background.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "plot_background.h"
#include "qwt_scale_map.h"
#include "qwt_painter.h"
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/plot_background.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef PLOT_BACKGROUND_H
#define PLOT_BACKGROUND_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/plot_docker.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "plot_docker.h"
#include "plotwidget_editor.h"
#include "Qads/DockSplitter.h"
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/plot_docker.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef PLOT_DOCKER_H
#define PLOT_DOCKER_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/plot_docker_toolbar.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "plot_docker_toolbar.h"
#include "PlotJuggler/svg_util.h"

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/plot_docker_toolbar.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef PLOT_DOCKER_TOOLBAR_H
#define PLOT_DOCKER_TOOLBAR_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/plotwidget.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include <QAction>
#include <QActionGroup>
#include <QApplication>
Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/plotwidget.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#ifndef DragableWidget_H
#define DragableWidget_H

Expand Down
6 changes: 6 additions & 0 deletions plotjuggler_app/plotwidget_editor.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/

#include "plotwidget_editor.h"
#include "ui_plotwidget_editor.h"
#include <QHBoxLayout>
Expand Down
Loading

0 comments on commit c1b5412

Please sign in to comment.