41 lines
787 B
C++
41 lines
787 B
C++
#ifndef CREATENEWTABLEDLG_H
|
|
#define CREATENEWTABLEDLG_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_CreateNewTableDlg.h"
|
|
#pragma execution_character_set("utf-8")
|
|
|
|
class CCreateNewTableDlg : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CCreateNewTableDlg(QDialog *parent = 0);
|
|
~CCreateNewTableDlg();
|
|
QString FileName;//slf文件名
|
|
QString TableName;//表名
|
|
private:
|
|
int m_No;
|
|
Ui::CCreateNewTableDlg m_pUI;
|
|
//动态表格行数
|
|
int m_rowCount;
|
|
private slots:
|
|
/**
|
|
*@brief 保存槽函数
|
|
*/
|
|
void slotSave();
|
|
|
|
/**
|
|
*@brief 取消槽函数*/
|
|
void slotCancel(){reject ();};
|
|
void slotChangeTableType(int);
|
|
void slotGetCell(int row,int column);
|
|
void slotComboxSelectChange(int index);
|
|
void slotAdd();
|
|
void slotDelete();
|
|
void slotUp();
|
|
void slotDown();
|
|
};
|
|
|
|
#endif // CREATENEWTABLEDLG_H
|