29 lines
556 B
C++
29 lines
556 B
C++
#ifndef CELLBORDERDLG_H
|
|
#define CELLBORDERDLG_H
|
|
|
|
#include <QDialog>
|
|
#include "ui_CellBorderDalog.h"
|
|
#include "formtableitem.h"
|
|
|
|
#pragma execution_character_set("utf-8")
|
|
|
|
//单元格边框选中对话框
|
|
class CellBorderDlg : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CellBorderDlg(FormTableItem *m_pCell, QWidget *parent = 0);
|
|
~CellBorderDlg();
|
|
protected:
|
|
virtual void paintEvent(QPaintEvent *pevt);
|
|
private slots:
|
|
void OnSelectLineStyleChanged(int ,int);
|
|
void onEnter();
|
|
|
|
private:
|
|
Ui::CellBorder ui;
|
|
};
|
|
|
|
#endif // CELLBORDERDLG_H
|