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
|
|
|
|
* See 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
|
|
|
|
|
|
|
|
#include "FormMathsPanel.h"
|
|
|
|
|
2002-05-22 01:16:37 +00:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
class FormMathsSpace : public FormMathsSub {
|
|
|
|
public:
|
|
|
|
///
|
2002-08-15 16:02:22 +00:00
|
|
|
FormMathsSpace(LyXView &, Dialogs &, FormMathsPanel const &);
|
2001-03-19 15:38:22 +00:00
|
|
|
|
|
|
|
private:
|
2001-04-03 14:30:58 +00:00
|
|
|
/// Build the dialog
|
2001-03-19 15:38:22 +00:00
|
|
|
virtual void build();
|
|
|
|
/// input handler
|
|
|
|
virtual bool input(FL_OBJECT *, long);
|
|
|
|
/// Apply from dialog (modify or create inset)
|
|
|
|
virtual void apply();
|
|
|
|
|
|
|
|
/// Pointer to the actual instantiation of the xforms form
|
|
|
|
virtual FL_FORM * form() const;
|
|
|
|
|
|
|
|
// Real GUI implementation
|
2002-06-13 13:43:51 +00:00
|
|
|
boost::scoped_ptr<FD_maths_space> dialog_;
|
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
|