lyx_mirror/src/frontends/qt2/QTabularDialog.h

39 lines
661 B
C
Raw Normal View History

// -*- C++ -*-
/**
* \file QTabularDialog.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QTABULARDIALOG_H
#define QTABULARDIALOG_H
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QTabularDialogBase.h"
class QTabular;
class QTabularDialog : public QTabularDialogBase {
Q_OBJECT
public:
QTabularDialog(QTabular * form);
protected slots:
virtual void change_adaptor();
protected:
virtual void closeEvent(QCloseEvent * e);
private:
QTabular * form_;
};
#endif // QTABULARDIALOG_H