lyx_mirror/src/frontends/qt2/QTabular.h
Lars Gullik Bjønnes 13349032cb ws changes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5758 a592a061-630c-0410-9148-cb99ea01b6c8
2002-12-01 22:59:25 +00:00

53 lines
940 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 Juergen Spitzmueller
* \author Herbert Voss
*
* Full author contact details are available in file CREDITS
*/
#ifndef QTABULAR_H
#define QTABULAR_H
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
class ControlTabular;
class QTabularDialog;
class QTabular :
public Qt2CB<ControlTabular, Qt2DB<QTabularDialog> >
{
public:
friend class QTabularDialog;
QTabular();
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();
};
#endif // QTABULAR_H