mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
5342ee5aad
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20875 a592a061-630c-0410-9148-cb99ea01b6c8
117 lines
1.7 KiB
C++
117 lines
1.7 KiB
C++
/**
|
|
* \file Dialog.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "Dialog.h"
|
|
|
|
#include "FuncRequest.h"
|
|
#include "FuncStatus.h"
|
|
#include "LyXFunc.h"
|
|
|
|
#include "frontends/LyXView.h"
|
|
#include "frontends/Dialogs.h" // FIXME
|
|
|
|
#include "Buffer.h"
|
|
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
|
|
Dialog::~Dialog()
|
|
{}
|
|
|
|
|
|
bool Dialog::canApply() const
|
|
{
|
|
FuncRequest const fr(getLfun(), name());
|
|
FuncStatus const fs(getStatus(fr));
|
|
return fs.enabled();
|
|
}
|
|
|
|
|
|
void Dialog::dispatch(FuncRequest const & fr) const
|
|
{
|
|
lyxview_->dispatch(fr);
|
|
}
|
|
|
|
|
|
void Dialog::updateDialog(std::string const & name) const
|
|
{
|
|
dispatch(FuncRequest(LFUN_DIALOG_UPDATE, name));
|
|
}
|
|
|
|
|
|
void Dialog::disconnect(std::string const & name) const
|
|
{
|
|
lyxview_->getDialogs().disconnect(name);
|
|
}
|
|
|
|
|
|
bool Dialog::isBufferAvailable() const
|
|
{
|
|
return lyxview_->buffer() != 0;
|
|
}
|
|
|
|
|
|
bool Dialog::isBufferReadonly() const
|
|
{
|
|
if (!lyxview_->buffer())
|
|
return true;
|
|
return lyxview_->buffer()->isReadonly();
|
|
}
|
|
|
|
|
|
std::string const Dialog::bufferFilepath() const
|
|
{
|
|
return buffer().filePath();
|
|
}
|
|
|
|
|
|
KernelDocType Dialog::docType() const
|
|
{
|
|
if (buffer().isLatex())
|
|
return LATEX;
|
|
if (buffer().isLiterate())
|
|
return LITERATE;
|
|
|
|
return DOCBOOK;
|
|
}
|
|
|
|
|
|
BufferView * Dialog::bufferview()
|
|
{
|
|
return lyxview_->view();
|
|
}
|
|
|
|
|
|
BufferView const * Dialog::bufferview() const
|
|
{
|
|
return lyxview_->view();
|
|
}
|
|
|
|
|
|
Buffer & Dialog::buffer()
|
|
{
|
|
BOOST_ASSERT(lyxview_->buffer());
|
|
return *lyxview_->buffer();
|
|
}
|
|
|
|
|
|
Buffer const & Dialog::buffer() const
|
|
{
|
|
BOOST_ASSERT(lyxview_->buffer());
|
|
return *lyxview_->buffer();
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|