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 FormMathsSpace.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
|
|
|
|
* \author Angus Leeming
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-03-19 15:38:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORM_MATHSSPACE_H
|
|
|
|
#define FORM_MATHSSPACE_H
|
|
|
|
|
2002-04-23 08:16:27 +00:00
|
|
|
#ifdef __GNUG__
|
2001-03-19 15:38:22 +00:00
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2002-11-25 18:58:15 +00:00
|
|
|
#include "FormBase.h"
|
2002-05-22 01:16:37 +00:00
|
|
|
|
2002-11-25 18:58:15 +00:00
|
|
|
class ControlMathSub;
|
2002-06-13 13:43:51 +00:00
|
|
|
struct FD_maths_space;
|
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 space.
|
|
|
|
*/
|
2002-11-25 18:58:15 +00:00
|
|
|
class FormMathsSpace : public FormCB<ControlMathSub, FormDB<FD_maths_space> > {
|
2001-03-19 15:38:22 +00:00
|
|
|
public:
|
|
|
|
///
|
2002-11-25 18:58:15 +00:00
|
|
|
FormMathsSpace();
|
2001-03-19 15:38:22 +00:00
|
|
|
|
|
|
|
private:
|
2002-11-25 18:58:15 +00:00
|
|
|
///
|
2001-03-19 15:38:22 +00:00
|
|
|
virtual void apply();
|
2002-11-25 18:58:15 +00:00
|
|
|
///
|
|
|
|
virtual void build();
|
|
|
|
///
|
|
|
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
|
|
|
/// Not needed.
|
|
|
|
virtual void update() {}
|
2001-03-19 15:38:22 +00:00
|
|
|
|
|
|
|
/// The current choice.
|
2002-01-29 16:40:07 +00:00
|
|
|
int space_;
|
2001-03-19 15:38:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FORM_MATHSSPACE_H
|