You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
433 B
C++
26 lines
433 B
C++
#ifndef _H_QPLCINDEXUI_H_
|
|
#define _H_QPLCINDEXUI_H_
|
|
|
|
#include <QDialog>
|
|
#include "ui_QPLCIndexUI.h"
|
|
|
|
class QPLCIndexUI : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QPLCIndexUI(QWidget *parent = Q_NULLPTR);
|
|
~QPLCIndexUI();
|
|
|
|
void setModelName(QString strName);
|
|
void setModelIndex(int val);
|
|
int getModelIndex();
|
|
Q_SLOT void onButtonClicked();
|
|
protected:
|
|
virtual void changeEvent(QEvent *event);
|
|
private:
|
|
Ui::QPLCIndexUI ui;
|
|
};
|
|
|
|
#endif
|