mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
2a31934f38
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8766 a592a061-630c-0410-9148-cb99ea01b6c8
88 lines
2.0 KiB
C
88 lines
2.0 KiB
C
/**
|
|
* \file ControlBox.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Martin Vermeer (with useful hints from Angus Leeming)
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "ControlBox.h"
|
|
#include "funcrequest.h"
|
|
#include "insets/insetbox.h"
|
|
#include "gettext.h"
|
|
|
|
|
|
using std::string;
|
|
using std::vector;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
ControlBox::ControlBox(Dialog & parent)
|
|
: Dialog::Controller(parent)
|
|
{}
|
|
|
|
|
|
bool ControlBox::initialiseParams(string const & data)
|
|
{
|
|
InsetBoxParams params("");
|
|
InsetBoxMailer::string2params(data, params);
|
|
params_.reset(new InsetBoxParams(params));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
void ControlBox::clearParams()
|
|
{
|
|
params_.reset();
|
|
}
|
|
|
|
|
|
void ControlBox::dispatchParams()
|
|
{
|
|
string const lfun = InsetBoxMailer::params2string(params());
|
|
kernel().dispatch(FuncRequest(LFUN_INSET_APPLY, lfun));
|
|
}
|
|
|
|
|
|
void box_gui_tokens(vector<string> & ids, vector<string> & gui_names)
|
|
{
|
|
char const * const ids_[] = {
|
|
"Frameless", "Boxed", "ovalbox",
|
|
"Ovalbox", "Shadowbox", "Doublebox"};
|
|
size_t const ids_size = sizeof(ids_) / sizeof(char *);
|
|
ids = vector<string>(ids_, ids_ + ids_size);
|
|
gui_names.clear();
|
|
gui_names.push_back(_("No frame drawn"));
|
|
gui_names.push_back(_("Rectangular box"));
|
|
gui_names.push_back(_("Oval box, thin"));
|
|
gui_names.push_back(_("Oval box, thick"));
|
|
gui_names.push_back(_("Shadow box"));
|
|
gui_names.push_back(_("Double box"));
|
|
}
|
|
|
|
void box_gui_tokens_special_length(vector<string> & ids,
|
|
vector<string> & gui_names)
|
|
{
|
|
char const * const ids_[] = {
|
|
"none", "height", "depth",
|
|
"totalheight", "width"};
|
|
size_t const ids_size = sizeof(ids_) / sizeof(char *);
|
|
ids = vector<string>(ids_, ids_ + ids_size);
|
|
gui_names.clear();
|
|
gui_names.push_back(_("None"));
|
|
gui_names.push_back(_("Height"));
|
|
gui_names.push_back(_("Depth"));
|
|
gui_names.push_back(_("Total Height"));
|
|
gui_names.push_back(_("Width"));
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|