lyx_mirror/src/frontends/xforms/FormSendto.C
Angus Leeming 2a31934f38 Wrap most of the frontend code up inside namespace lyx::frontend.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8766 a592a061-630c-0410-9148-cb99ea01b6c8
2004-05-19 15:11:37 +00:00

127 lines
3.0 KiB
C

/**
* \file FormSendto.C
* 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 "FormSendto.h"
#include "ControlSendto.h"
#include "forms/form_sendto.h"
#include "Tooltips.h"
#include "xforms_helpers.h"
#include "xformsBC.h"
#include "format.h"
#include "support/lstrings.h"
#include "lyx_forms.h"
using std::vector;
using std::string;
namespace lyx {
using support::trim;
namespace frontend {
typedef FormController<ControlSendto, FormView<FD_sendto> > base_class;
FormSendto::FormSendto(Dialog & parent)
: base_class(parent, _("Send document to command"))
{}
void FormSendto::build()
{
dialog_.reset(build_sendto(this));
fl_set_input_return(dialog_->input_command, FL_RETURN_CHANGED);
setPrehandler(dialog_->input_command);
// Manage the ok, apply, restore and cancel/close buttons
bcview().setOK(dialog_->button_ok);
bcview().setApply(dialog_->button_apply);
bcview().setCancel(dialog_->button_close);
// Set up the tooltip mechanism
string str = _("Export the buffer to this format before running the command below on it.");
tooltips().init(dialog_->browser_formats, str);
str = _("Run this command on the buffer exported to the chosen format. $$FName will be replaced by the name of this file.");
tooltips().init(dialog_->input_command, str);
}
void FormSendto::update()
{
all_formats_ = controller().allFormats();
// Check whether the current contents of the browser will be
// changed by loading the contents of formats
vector<string> keys;
keys.resize(all_formats_.size());
vector<string>::iterator result = keys.begin();
vector<Format const *>::const_iterator it = all_formats_.begin();
vector<Format const *>::const_iterator end = all_formats_.end();
for (; it != end; ++it, ++result) {
*result = (*it)->prettyname();
}
vector<string> const browser_keys =
getVector(dialog_->browser_formats);
if (browser_keys == keys)
return;
// Reload the browser
fl_clear_browser(dialog_->browser_formats);
for (vector<string>::const_iterator it = keys.begin();
it < keys.end(); ++it) {
fl_add_browser_line(dialog_->browser_formats, it->c_str());
}
fl_set_input(dialog_->input_command, controller().getCommand().c_str());
}
ButtonPolicy::SMInput FormSendto::input(FL_OBJECT *, long)
{
int const line = fl_get_browser(dialog_->browser_formats);
if (line < 1 || line > fl_get_browser_maxline(dialog_->browser_formats))
return ButtonPolicy::SMI_INVALID;
string cmd = getString(dialog_->input_command);
cmd = trim(cmd);
if (cmd.empty())
return ButtonPolicy::SMI_INVALID;
return ButtonPolicy::SMI_VALID;
}
void FormSendto::apply()
{
int const line = fl_get_browser(dialog_->browser_formats);
if (line < 1 || line > fl_get_browser_maxline(dialog_->browser_formats))
return;
string const cmd = getString(dialog_->input_command);
controller().setFormat(all_formats_[line-1]);
controller().setCommand(cmd);
}
} // namespace frontend
} // namespace lyx