2001-06-13 14:33:31 +00:00
|
|
|
// -*- C++ -*-
|
2002-03-21 21:21:28 +00:00
|
|
|
/**
|
2001-03-19 15:38:22 +00:00
|
|
|
* \file FormMathsPanel.h
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 21:21:28 +00:00
|
|
|
*
|
|
|
|
* \author Alejandro Aguilar Sierra
|
2002-09-05 14:10:50 +00:00
|
|
|
* \author John Levon
|
2002-12-01 22:59:25 +00:00
|
|
|
* \author Angus Leeming
|
2002-09-05 14:10:50 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2001-03-19 15:38:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORM_MATHSPANEL_H
|
|
|
|
#define FORM_MATHSPANEL_H
|
|
|
|
|
|
|
|
|
2003-06-17 12:53:35 +00:00
|
|
|
#include "FormDialogView.h"
|
|
|
|
|
2002-05-22 01:16:37 +00:00
|
|
|
|
2002-11-25 18:58:15 +00:00
|
|
|
class ControlMath;
|
2002-06-13 13:43:51 +00:00
|
|
|
struct FD_maths_panel;
|
2001-03-19 15:38:22 +00:00
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
/**
|
2001-03-19 15:38:22 +00:00
|
|
|
* This class provides an XForms implementation of the maths panel.
|
|
|
|
*/
|
2003-06-17 12:53:35 +00:00
|
|
|
class FormMathsPanel
|
|
|
|
: public FormController<ControlMath, FormView<FD_maths_panel> > {
|
2001-03-19 15:38:22 +00:00
|
|
|
public:
|
|
|
|
///
|
2003-06-17 12:53:35 +00:00
|
|
|
FormMathsPanel(Dialog &);
|
2002-11-22 11:56:43 +00:00
|
|
|
|
2001-03-19 15:38:22 +00:00
|
|
|
private:
|
2002-11-25 18:58:15 +00:00
|
|
|
/// Not needed.
|
|
|
|
virtual void apply() {}
|
|
|
|
///
|
|
|
|
virtual void update() {}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-11-25 18:58:15 +00:00
|
|
|
///
|
2001-03-19 15:38:22 +00:00
|
|
|
virtual void build();
|
2002-11-25 18:58:15 +00:00
|
|
|
///
|
|
|
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
2001-03-19 15:38:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FORM_MATHSPANEL_H
|