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