mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
89 lines
1.0 KiB
C++
89 lines
1.0 KiB
C++
/**
|
|
* \file FuncStatus.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jean-Marc Lasgouttes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "FuncStatus.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
FuncStatus::FuncStatus()
|
|
: v_(OK)
|
|
{}
|
|
|
|
|
|
void FuncStatus::clear()
|
|
{
|
|
v_ = OK;
|
|
message_.erase();
|
|
}
|
|
|
|
|
|
void FuncStatus::setUnknown(bool b)
|
|
{
|
|
if (b)
|
|
v_ |= UNKNOWN;
|
|
else
|
|
v_ &= ~UNKNOWN;
|
|
}
|
|
|
|
|
|
|
|
bool FuncStatus::unknown() const
|
|
{
|
|
return (v_ & UNKNOWN);
|
|
}
|
|
|
|
|
|
void FuncStatus::setEnabled(bool b)
|
|
{
|
|
if (b)
|
|
v_ &= ~DISABLED;
|
|
else
|
|
v_ |= DISABLED;
|
|
}
|
|
|
|
|
|
bool FuncStatus::enabled() const
|
|
{
|
|
return !(v_ & DISABLED);
|
|
}
|
|
|
|
|
|
void FuncStatus::setOnOff(bool b)
|
|
{
|
|
v_ |= (b ? ON : OFF);
|
|
}
|
|
|
|
|
|
bool FuncStatus::onOff(bool b) const
|
|
{
|
|
if (b)
|
|
return (v_ & ON);
|
|
else
|
|
return (v_ & OFF);
|
|
}
|
|
|
|
|
|
void FuncStatus::message(docstring const & m)
|
|
{
|
|
message_ = m;
|
|
}
|
|
|
|
|
|
docstring const & FuncStatus::message() const
|
|
{
|
|
return message_;
|
|
}
|
|
|
|
|
|
} // namespace lyx
|