2006-03-05 17:24:44 +00:00
|
|
|
/**
|
|
|
|
* \file QIndex.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
#include "ControlCommand.h"
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
|
|
|
|
#include "QIndexDialog.h"
|
|
|
|
#include "QIndex.h"
|
|
|
|
#include "Qt2BC.h"
|
|
|
|
#include "ButtonController.h"
|
|
|
|
#include <qlabel.h>
|
|
|
|
#include <qlineedit.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
typedef QController<ControlCommand, QView<QIndexDialog> > base_class;
|
|
|
|
|
|
|
|
|
2006-10-09 10:35:14 +00:00
|
|
|
QIndex::QIndex(Dialog & parent, docstring const & title, QString const & label)
|
2006-03-05 17:24:44 +00:00
|
|
|
: base_class(parent, title), label_(label)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QIndex::build_dialog()
|
|
|
|
{
|
|
|
|
dialog_.reset(new QIndexDialog(this));
|
|
|
|
|
|
|
|
dialog_->keywordLA->setText(label_);
|
|
|
|
|
|
|
|
bcview().setOK(dialog_->okPB);
|
|
|
|
bcview().setCancel(dialog_->closePB);
|
|
|
|
bcview().addReadOnly(dialog_->keywordED);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QIndex::update_contents()
|
|
|
|
{
|
2006-10-20 13:53:43 +00:00
|
|
|
docstring const contents = controller().params()["name"];
|
2006-03-05 17:24:44 +00:00
|
|
|
dialog_->keywordED->setText(toqstr(contents));
|
|
|
|
|
|
|
|
bc().valid(!contents.empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void QIndex::apply()
|
|
|
|
{
|
2006-10-20 13:53:43 +00:00
|
|
|
controller().params()["name"] = qstring_to_ucs4(dialog_->keywordED->text());
|
2006-03-05 17:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool QIndex::isValid()
|
|
|
|
{
|
|
|
|
return !dialog_->keywordED->text().isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|