2000-08-03 12:56:25 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* ======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include FORMS_H_LOCATION
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include "Dialogs.h"
|
|
|
|
#include "FormIndex.h"
|
|
|
|
#include "LyXView.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "form_index.h"
|
|
|
|
#include "lyxfunc.h"
|
|
|
|
|
|
|
|
FormIndex::FormIndex(LyXView * lv, Dialogs * d)
|
2000-11-14 02:01:57 +00:00
|
|
|
: FormCommand(lv, d, _("Index"), new OkCancelReadOnlyPolicy),
|
|
|
|
dialog_(0)
|
2000-08-03 12:56:25 +00:00
|
|
|
{
|
|
|
|
// let the dialog be shown
|
|
|
|
// These are permanent connections so we won't bother
|
|
|
|
// storing a copy because we won't be disconnecting.
|
|
|
|
d->showIndex.connect(slot(this, &FormIndex::showInset));
|
|
|
|
d->createIndex.connect(slot(this, &FormIndex::createInset));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FormIndex::~FormIndex()
|
|
|
|
{
|
|
|
|
delete dialog_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-03 05:53:25 +00:00
|
|
|
FL_FORM * FormIndex::form() const
|
|
|
|
{
|
2000-11-14 02:01:57 +00:00
|
|
|
if (dialog_) return dialog_->form;
|
2000-10-03 05:53:25 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-20 09:50:09 +00:00
|
|
|
void FormIndex::connect()
|
|
|
|
{
|
2000-11-14 02:01:57 +00:00
|
|
|
fl_set_form_maxsize(form(), 2 * minw_, minh_);
|
2000-10-20 09:50:09 +00:00
|
|
|
FormCommand::connect();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-08-03 12:56:25 +00:00
|
|
|
void FormIndex::build()
|
|
|
|
{
|
|
|
|
dialog_ = build_index();
|
2000-08-04 13:12:30 +00:00
|
|
|
|
2000-10-13 05:57:05 +00:00
|
|
|
#ifdef WITH_WARNINGS
|
|
|
|
#warning use the buttoncontroller
|
|
|
|
#endif
|
2000-10-20 09:50:09 +00:00
|
|
|
// Workaround dumb xforms sizing bug
|
|
|
|
minw_ = form()->w;
|
|
|
|
minh_ = form()->h;
|
2000-08-03 12:56:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-24 13:13:59 +00:00
|
|
|
void FormIndex::update()
|
2000-08-03 12:56:25 +00:00
|
|
|
{
|
|
|
|
fl_set_input(dialog_->key, params.getContents().c_str());
|
|
|
|
|
2000-11-04 10:00:12 +00:00
|
|
|
if (lv_->buffer()->isReadonly()) {
|
2000-11-14 02:01:57 +00:00
|
|
|
fl_deactivate_object(dialog_->key);
|
|
|
|
fl_deactivate_object(dialog_->ok);
|
|
|
|
fl_set_object_lcol(dialog_->ok, FL_INACTIVE);
|
2000-08-03 12:56:25 +00:00
|
|
|
} else {
|
2000-11-14 02:01:57 +00:00
|
|
|
fl_activate_object(dialog_->key);
|
|
|
|
fl_activate_object(dialog_->ok);
|
|
|
|
fl_set_object_lcol(dialog_->ok, FL_BLACK);
|
2000-08-03 12:56:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FormIndex::apply()
|
|
|
|
{
|
2000-10-03 05:53:25 +00:00
|
|
|
if (lv_->buffer()->isReadonly()) return;
|
2000-08-03 12:56:25 +00:00
|
|
|
|
2000-09-19 11:18:35 +00:00
|
|
|
params.setContents(fl_get_input(dialog_->key));
|
2000-08-03 12:56:25 +00:00
|
|
|
|
2000-09-19 11:18:35 +00:00
|
|
|
if (inset_ != 0) {
|
2000-08-03 12:56:25 +00:00
|
|
|
// Only update if contents have changed
|
2000-09-19 11:18:35 +00:00
|
|
|
if (params != inset_->params()) {
|
|
|
|
inset_->setParams(params);
|
|
|
|
lv_->view()->updateInset(inset_, true);
|
2000-08-03 12:56:25 +00:00
|
|
|
}
|
|
|
|
} else {
|
2000-09-19 11:18:35 +00:00
|
|
|
lv_->getLyXFunc()->Dispatch(LFUN_INDEX_INSERT,
|
|
|
|
params.getAsString());
|
2000-08-03 12:56:25 +00:00
|
|
|
}
|
|
|
|
}
|