mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
a12309c76b
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
60 lines
857 B
C
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();
|
|
}
|