version 2.18.0

add GraphicRanges to graphic library
new graphic_analysis library
This commit is contained in:
2023-07-31 20:17:34 +03:00
parent 2a063a4f00
commit d98e8c1f30
24 changed files with 1524 additions and 383 deletions

View File

@@ -2,7 +2,7 @@
#include "graphic.h"
#include <QtCore/QtPlugin>
#include <QtPlugin>
GraphicPlugin::GraphicPlugin(QObject * parent): QObject(parent) {
@@ -10,12 +10,9 @@ GraphicPlugin::GraphicPlugin(QObject * parent): QObject(parent) {
}
void GraphicPlugin::initialize(QDesignerFormEditorInterface * /* core */) {
void GraphicPlugin::initialize(QDesignerFormEditorInterface *) {
m_designer = true;
if (m_initialized) return;
// Add extension registrations, etc. here
m_initialized = true;
}

View File

@@ -3,7 +3,7 @@
#include "graphicplugin.h"
QADGraphic::QADGraphic(QObject * parent): QObject(parent) {
m_widgets.append(new GraphicPlugin(this));
m_widgets << new GraphicPlugin(this);
}