2024-11-25 17:51:20 +00:00
|
|
|
|
#pragma once
|
2025-02-06 13:18:25 +00:00
|
|
|
|
#ifndef QToolAbstract_H_
|
|
|
|
|
#define QToolAbstract_H_
|
|
|
|
|
|
2025-02-09 18:16:07 +00:00
|
|
|
|
#include "BaseConstVariable.h"
|
2024-11-25 17:51:20 +00:00
|
|
|
|
#include <QTreeWidgetItem>
|
|
|
|
|
#include <QPushButton>
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
#include <QItemDelegate>
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// <20>Զ<EFBFBD><D4B6><EFBFBD> QTreeWidgetItem <20>̳<EFBFBD><CCB3><EFBFBD>
|
2025-02-09 18:16:07 +00:00
|
|
|
|
class BASECONSTVARIABLEAPI QToolAbstract : public QObject {
|
2024-11-25 17:51:20 +00:00
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
QToolAbstract(QObject* parent=nullptr);
|
|
|
|
|
~QToolAbstract();
|
|
|
|
|
public slots:
|
|
|
|
|
virtual void excute();
|
|
|
|
|
virtual void setToolXpath(QVector<QString> toolPath);
|
|
|
|
|
virtual void setToolName(QString toolname);
|
|
|
|
|
virtual QVector<QString> getToolXpath();
|
|
|
|
|
virtual QString getToolName();
|
|
|
|
|
public:
|
|
|
|
|
QVector<QString> toolPath;
|
|
|
|
|
QString toolname;
|
|
|
|
|
};
|
2025-02-06 13:18:25 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
// ע<>Ṥ<EFBFBD><E1B9A4><EFBFBD><EFBFBD>
|
2025-02-09 18:16:07 +00:00
|
|
|
|
PluginTool_*.dll
|
2025-02-06 13:18:25 +00:00
|
|
|
|
void RegisterPreToolBox(RasterProcessTool* mainWindows);
|
2025-02-09 18:16:07 +00:00
|
|
|
|
extern "C" void RegisterPreToolBox(LAMPMainWidget::RasterMainWidget* mainwindows,ToolBoxWidget* toolbox);
|
2025-02-06 13:18:25 +00:00
|
|
|
|
*/
|
|
|
|
|
#endif // !1
|