2001-06-13 14:33:31 +00:00
|
|
|
// -*- C++ -*-
|
2001-03-27 16:03:28 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 2001 The LyX Team.
|
|
|
|
*
|
|
|
|
*======================================================
|
|
|
|
*
|
|
|
|
* \file ControlMinipage.h
|
|
|
|
* \author Juergen Vigna, jug@sad.it
|
|
|
|
* \author Angus Leeming, a.leeming@ic.ac.uk
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CONTROLMINIPAGE_H
|
|
|
|
#define CONTROLMINIPAGE_H
|
|
|
|
|
2001-03-28 12:59:29 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2001-03-27 16:03:28 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "ControlInset.h"
|
|
|
|
#include "insets/insetminipage.h" // InsetMinipage::Position
|
|
|
|
|
|
|
|
/** This should be moved back into insetminipage.h and InsetMinipage should
|
|
|
|
contain an instance of it. */
|
|
|
|
|
|
|
|
struct MinipageParams {
|
|
|
|
///
|
|
|
|
MinipageParams();
|
|
|
|
///
|
|
|
|
MinipageParams(InsetMinipage const &);
|
|
|
|
///
|
2002-01-17 23:09:31 +00:00
|
|
|
LyXLength pageWidth;
|
2001-03-27 16:03:28 +00:00
|
|
|
///
|
|
|
|
InsetMinipage::Position pos;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-07-30 11:56:00 +00:00
|
|
|
///
|
|
|
|
bool operator==(MinipageParams const &, MinipageParams const &);
|
|
|
|
///
|
2001-07-30 13:35:08 +00:00
|
|
|
bool operator!=(MinipageParams const &, MinipageParams const &);
|
2001-07-30 11:56:00 +00:00
|
|
|
|
2001-03-27 16:03:28 +00:00
|
|
|
|
|
|
|
/** A controller for Minipage dialogs.
|
|
|
|
*/
|
|
|
|
class ControlMinipage : public ControlInset<InsetMinipage, MinipageParams> {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
ControlMinipage(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 MinipageParams const getParams(string const &)
|
|
|
|
{ return MinipageParams(); }
|
|
|
|
/// get the parameters from the inset passed to showInset.
|
|
|
|
virtual MinipageParams const getParams(InsetMinipage const &);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|