mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-28 14:58:36 +00:00
55 lines
996 B
C
55 lines
996 B
C
|
// -*- C++ -*-
|
|||
|
/**
|
|||
|
* \file QTabular.h
|
|||
|
* This file is part of LyX, the document processor.
|
|||
|
* Licence details can be found in the file COPYING.
|
|||
|
*
|
|||
|
* \author John Levon
|
|||
|
* \author Kalle Dalheimer
|
|||
|
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
|
|||
|
* \author Herbert Vo<EFBFBD>
|
|||
|
*
|
|||
|
* Full author contact details are available in file CREDITS.
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef QTABULAR_H
|
|||
|
#define QTABULAR_H
|
|||
|
|
|||
|
#include "QDialogView.h"
|
|||
|
|
|||
|
namespace lyx {
|
|||
|
namespace frontend {
|
|||
|
|
|||
|
class ControlTabular;
|
|||
|
class QTabularDialog;
|
|||
|
|
|||
|
|
|||
|
class QTabular :
|
|||
|
public QController<ControlTabular, QView<QTabularDialog> >
|
|||
|
{
|
|||
|
public:
|
|||
|
friend class QTabularDialog;
|
|||
|
|
|||
|
QTabular(Dialog &);
|
|||
|
|
|||
|
protected:
|
|||
|
virtual bool isValid();
|
|||
|
|
|||
|
private:
|
|||
|
/// We can't use this ...
|
|||
|
virtual void apply() {}
|
|||
|
/// update borders
|
|||
|
virtual void update_borders();
|
|||
|
/// update
|
|||
|
virtual void update_contents();
|
|||
|
/// build the dialog
|
|||
|
virtual void build_dialog();
|
|||
|
/// save some values before closing the gui
|
|||
|
virtual void closeGUI();
|
|||
|
};
|
|||
|
|
|||
|
} // namespace frontend
|
|||
|
} // namespace lyx
|
|||
|
|
|||
|
#endif // QTABULAR_H
|