2002-09-24 13:57:09 +00:00
|
|
|
// -*- C++ -*-
|
2001-08-19 13:25:15 +00:00
|
|
|
/**
|
|
|
|
* \file QTabularCreateDialog.h
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-19 13:25:15 +00:00
|
|
|
*
|
2002-09-24 13:57:09 +00:00
|
|
|
* \author John Levon
|
|
|
|
* \author Edwin Leuven
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-19 13:25:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QTABULARCREATEDIALOG_H
|
|
|
|
#define QTABULARCREATEDIALOG_H
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-09-24 13:57:09 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-08-19 13:25:15 +00:00
|
|
|
#include "ui/QTabularCreateDialogBase.h"
|
|
|
|
|
|
|
|
class QTabularCreate;
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
class QTabularCreateDialog : public QTabularCreateDialogBase {
|
|
|
|
Q_OBJECT
|
2001-08-19 13:25:15 +00:00
|
|
|
public:
|
2001-08-28 04:17:49 +00:00
|
|
|
QTabularCreateDialog(QTabularCreate * form);
|
2001-08-19 13:25:15 +00:00
|
|
|
protected slots:
|
2001-08-28 04:17:49 +00:00
|
|
|
virtual void columnsChanged(int);
|
2001-08-19 13:25:15 +00:00
|
|
|
virtual void rowsChanged(int);
|
|
|
|
private:
|
|
|
|
QTabularCreate * form_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // QTABULARCREATEDIALOG_H
|