lyx_mirror/src/frontends/controllers/ControlBase.C
Angus Leeming a12309c76b Implementation of controller-view split for FormCharacter.
Some small clean-ups of code in frontends/controllers and frontends/xforms.
Added size_type and size() to Languages in language.h


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1798 a592a061-630c-0410-9148-cb99ea01b6c8
2001-03-21 13:27:03 +00:00

60 lines
857 B
C

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2001 The LyX Team.
*
* ======================================================
*
* \file ControlBase.C
* \author Angus Leeming <a.leeming@ic.ac.uk>
*/
#ifdef __GNUG__
#pragma implementation
#endif
#include <config.h>
#include "buffer.h"
#include "ButtonController.h"
#include "ControlBase.h"
#include "LyXView.h"
#include "support/LAssert.h"
void ControlBase::ApplyButton()
{
apply();
bc().apply();
}
void ControlBase::OKButton()
{
apply();
hide();
bc().ok();
}
void ControlBase::CancelButton()
{
hide();
bc().cancel();
}
void ControlBase::RestoreButton()
{
update();
bc().undoAll();
}
bool ControlBase::isReadonly() const
{
return lv_.buffer()->isReadonly();
}