mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
f7ba7c8e9f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
32 lines
602 B
C++
32 lines
602 B
C++
/**
|
|
* \file QTabularCreateDialog.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
* \author Edwin Leuven <leuven@fee.uva.nl>
|
|
*/
|
|
|
|
#ifndef QTABULARCREATEDIALOG_H
|
|
#define QTABULARCREATEDIALOG_H
|
|
|
|
#include "ui/QTabularCreateDialogBase.h"
|
|
|
|
class QTabularCreate;
|
|
|
|
class QTabularCreateDialog : public QTabularCreateDialogBase
|
|
{ Q_OBJECT
|
|
|
|
public:
|
|
QTabularCreateDialog(QTabularCreate * form);
|
|
|
|
protected slots:
|
|
virtual void columnsChanged(int);
|
|
virtual void rowsChanged(int);
|
|
|
|
private:
|
|
QTabularCreate * form_;
|
|
};
|
|
|
|
#endif // QTABULARCREATEDIALOG_H
|