csv import export replace 기능 추가 git-svn-id: svn://192.168.0.12/source@20 8346c931-da38-4b9b-9d4c-e48b93cbd075
25 lines
549 B
C++
25 lines
549 B
C++
#ifndef STABLE_H
|
|
#define STABLE_H
|
|
|
|
#include <QTableWidget>
|
|
#include <QStringList>
|
|
|
|
class STable : public QTableWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit STable(QWidget *parent = 0);
|
|
void keyPressEvent(QKeyEvent* event);
|
|
void SetHeaderList(QVector <QStringList> *_vecColumn,int _nColumn);
|
|
public:
|
|
QStringList m_strListHeader;
|
|
signals:
|
|
public slots:
|
|
void HeaderContextMenuShow(const QPoint& pos);
|
|
void menuInsert();
|
|
void menuDelete();
|
|
void CellClick(int nRow,int nPrev);
|
|
};
|
|
|
|
#endif // STABLE_H
|