mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
f7ba7c8e9f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
85 lines
1.8 KiB
C
85 lines
1.8 KiB
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2001 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*
|
|
* \author Jürgen Vigna, jug@sad.it
|
|
* \author Angus Leeming, a.leeming@ic.ac.uk
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "ViewBase.h"
|
|
#include "ButtonControllerBase.h"
|
|
#include "ControlMinipage.h"
|
|
#include "ControlInset.tmpl"
|
|
#include "Dialogs.h"
|
|
#include "LyXView.h"
|
|
#include "buffer.h"
|
|
#include "BufferView.h"
|
|
#include "helper_funcs.h"
|
|
|
|
using std::vector;
|
|
using SigC::slot;
|
|
|
|
|
|
ControlMinipage::ControlMinipage(LyXView & lv, Dialogs & d)
|
|
: ControlInset<InsetMinipage, MinipageParams>(lv, d)
|
|
{
|
|
d_.showMinipage.connect(slot(this, &ControlMinipage::showInset));
|
|
|
|
// We could have an extra method updateInset that calls
|
|
// view().update() rather than view().show(), but I don't see why
|
|
// it is really needed.
|
|
d_.updateMinipage.connect(slot(this, &ControlMinipage::showInset));
|
|
}
|
|
|
|
|
|
void ControlMinipage::applyParamsToInset()
|
|
{
|
|
inset()->pageWidth(params().pageWidth);
|
|
inset()->pos(params().pos);
|
|
|
|
lv_.view()->updateInset(inset(), true);
|
|
}
|
|
|
|
|
|
void ControlMinipage::applyParamsNoInset()
|
|
{
|
|
}
|
|
|
|
|
|
MinipageParams const ControlMinipage::getParams(InsetMinipage const & inset)
|
|
{
|
|
return MinipageParams(inset);
|
|
}
|
|
|
|
|
|
MinipageParams::MinipageParams()
|
|
: pos(InsetMinipage::top)
|
|
{}
|
|
|
|
MinipageParams::MinipageParams(InsetMinipage const & inset)
|
|
: pageWidth(inset.pageWidth()), pos(inset.pos())
|
|
{}
|
|
|
|
|
|
bool operator==(MinipageParams const & p1, MinipageParams const & p2)
|
|
{
|
|
return (p1.pageWidth == p2.pageWidth && p1.pos == p2.pos);
|
|
}
|
|
|
|
|
|
bool operator!=(MinipageParams const & p1, MinipageParams const & p2)
|
|
{
|
|
return !(p1 == p2);
|
|
}
|