28 lines
368 B
C++
28 lines
368 B
C++
#ifndef TABLE2Z_H
|
|
#define TABLE2Z_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class table2Z;
|
|
}
|
|
|
|
class table2Z : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit table2Z(QWidget *parent = 0);
|
|
~table2Z();
|
|
public slots:
|
|
void double_click(int x, int y);
|
|
|
|
private slots:
|
|
void on_lineEdit_returnPressed();
|
|
|
|
private:
|
|
Ui::table2Z *ui;
|
|
};
|
|
|
|
#endif // TABLE2Z_H
|