git-svn-id: svn://192.168.0.12/source@1 8346c931-da38-4b9b-9d4c-e48b93cbd075
This commit is contained in:
24
DataAnalyzer/stable.h
Normal file
24
DataAnalyzer/stable.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#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();
|
||||
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
|
||||
Reference in New Issue
Block a user