#pragma once #include #include #include #include "../toolinterface.h" #include "HalconCpp.h" using namespace HalconCpp; namespace Ui { class BolbShapeTrans; } class BolbShapeTrans : public ToolInterface { Q_OBJECT public: explicit BolbShapeTrans(QWidget *parent = 0, ToolDialogImpl* p = nullptr); ~BolbShapeTrans(); virtual bool Serialized(QDataStream& ar, bool bIsOut); virtual QString ShowParameter(); virtual int Execute(); private slots: void on_comboBox_currentIndexChanged(int index); void on_comboBox_index_currentIndexChanged(int index); private: Ui::BolbShapeTrans *ui; };