mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
67 lines
1.4 KiB
C
67 lines
1.4 KiB
C
|
// -*- C++ -*-
|
||
|
/* This file is part of
|
||
|
* ======================================================
|
||
|
*
|
||
|
* LyX, The Document Processor
|
||
|
*
|
||
|
* Copyright 2001 The LyX Team.
|
||
|
*
|
||
|
*======================================================
|
||
|
*
|
||
|
* \file ControlERT.h
|
||
|
* \author Juergen Vigna, jug@sad.it
|
||
|
* \author Angus Leeming, a.leeming@ic.ac.uk
|
||
|
*/
|
||
|
|
||
|
#ifndef CONTROLERT_H
|
||
|
#define CONTROLERT_H
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
#ifdef __GNUG__
|
||
|
#pragma interface
|
||
|
#endif
|
||
|
|
||
|
#include "ControlInset.h"
|
||
|
#include "insets/insetert.h" // InsetERT::Status
|
||
|
|
||
|
/** This should be moved back into insetert.h and InsetERT should
|
||
|
contain an instance of it. */
|
||
|
|
||
|
struct ERTParams {
|
||
|
///
|
||
|
ERTParams();
|
||
|
///
|
||
|
ERTParams(InsetERT const &);
|
||
|
///
|
||
|
InsetERT::ERTStatus status;
|
||
|
};
|
||
|
|
||
|
|
||
|
///
|
||
|
bool operator==(ERTParams const &, ERTParams const &);
|
||
|
///
|
||
|
bool operator!=(ERTParams const &, ERTParams const &);
|
||
|
|
||
|
|
||
|
/** A controller for ERT dialogs.
|
||
|
*/
|
||
|
class ControlERT : public ControlInset<InsetERT, ERTParams> {
|
||
|
public:
|
||
|
///
|
||
|
ControlERT(LyXView &, Dialogs &);
|
||
|
|
||
|
private:
|
||
|
/// Dispatch the changed parameters to the kernel.
|
||
|
virtual void applyParamsToInset();
|
||
|
///
|
||
|
virtual void applyParamsNoInset();
|
||
|
/// get the parameters from the string passed to createInset.
|
||
|
virtual ERTParams const getParams(string const &)
|
||
|
{ return ERTParams(); }
|
||
|
/// get the parameters from the inset passed to showInset.
|
||
|
virtual ERTParams const getParams(InsetERT const &);
|
||
|
};
|
||
|
|
||
|
#endif
|