lyx_mirror/src/frontends/qt2/tabularcreatedlgimpl.h
Jean-Marc Lasgouttes 795225e72d Qt2 compilation + LColor cleanup from John
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2092 a592a061-630c-0410-9148-cb99ea01b6c8
2001-06-05 17:05:51 +00:00

35 lines
738 B
C++

/**
* \file tabularcreatedlgimpl.h
* Copyright 2001 LyX Team
* see the file COPYING
*
* \author John Levon, moz@compsoc.man.ac.uk
* \author Edwin Leuven, leuven@fee.uva.nl
*/
#ifndef TABULARCREATEDLGIMPL_H
#define TABULARCREATEDLGIMPL_H
#include "tabularcreatedlg.h"
class FormTabularCreate;
class TabularCreateDlgImpl : public InsertTabularDlg
{
Q_OBJECT
public:
TabularCreateDlgImpl(FormTabularCreate *form, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
~TabularCreateDlgImpl();
protected slots:
void insert_tabular();
void cancel_adaptor();
virtual void colsChanged(int);
virtual void rowsChanged(int);
private:
FormTabularCreate * form_;
};
#endif // TABULARCREATEDLGIMPL_H