2000-09-22 15:09:51 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* ======================================================
|
2001-03-20 10:14:03 +00:00
|
|
|
*
|
|
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
2000-09-22 15:09:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "Dialogs.h"
|
|
|
|
#include "FormBase.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
#include "xformsBC.h"
|
2000-11-08 09:39:46 +00:00
|
|
|
#include "support/LAssert.h"
|
2000-12-04 14:10:44 +00:00
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
extern "C" int C_FormBaseWMHideCB(FL_FORM * form, void *);
|
2000-09-22 15:09:51 +00:00
|
|
|
|
2000-10-02 00:10:25 +00:00
|
|
|
|
2001-04-03 14:30:58 +00:00
|
|
|
FormBase::FormBase(ControlButtons & c, string const & t)
|
2001-03-15 13:37:04 +00:00
|
|
|
: ViewBC<xformsBC>(c), minw_(0), minh_(0), title_(t)
|
|
|
|
{}
|
2000-10-02 00:10:25 +00:00
|
|
|
|
|
|
|
|
2000-11-10 17:29:47 +00:00
|
|
|
void FormBase::redraw()
|
|
|
|
{
|
2000-11-14 02:01:57 +00:00
|
|
|
if (form() && form()->visible)
|
|
|
|
fl_redraw_form(form());
|
2000-11-10 17:29:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-22 15:09:51 +00:00
|
|
|
void FormBase::show()
|
|
|
|
{
|
|
|
|
if (!form()) {
|
|
|
|
build();
|
2001-03-19 15:38:22 +00:00
|
|
|
|
2001-04-03 14:30:58 +00:00
|
|
|
bc().refresh();
|
|
|
|
|
2001-03-19 15:38:22 +00:00
|
|
|
// work around dumb xforms sizing bug
|
|
|
|
minw_ = form()->w;
|
|
|
|
minh_ = form()->h;
|
|
|
|
|
2000-09-22 15:09:51 +00:00
|
|
|
fl_set_form_atclose(form(),
|
|
|
|
C_FormBaseWMHideCB, 0);
|
|
|
|
}
|
|
|
|
|
2000-11-14 02:01:57 +00:00
|
|
|
fl_freeze_form(form());
|
2000-09-22 15:09:51 +00:00
|
|
|
update(); // make sure its up-to-date
|
2000-11-14 02:01:57 +00:00
|
|
|
fl_unfreeze_form(form());
|
2000-09-22 15:09:51 +00:00
|
|
|
|
|
|
|
if (form()->visible) {
|
|
|
|
fl_raise_form(form());
|
2001-02-23 16:19:54 +00:00
|
|
|
/* This XMapWindow() will hopefully ensure that
|
|
|
|
* iconified dialogs are de-iconified. Mad props
|
|
|
|
* out to those crazy Xlib guys for forgetting a
|
|
|
|
* XDeiconifyWindow(). At least WindowMaker, when
|
|
|
|
* being notified of the redirected MapRequest will
|
|
|
|
* specifically de-iconify. From source, fvwm2 seems
|
|
|
|
* to do the same.
|
|
|
|
*/
|
|
|
|
XMapWindow(fl_get_display(), form()->window);
|
2000-09-22 15:09:51 +00:00
|
|
|
} else {
|
2000-10-20 09:50:09 +00:00
|
|
|
// calls to fl_set_form_minsize/maxsize apply only to the next
|
2001-03-15 13:37:04 +00:00
|
|
|
// fl_show_form(), so this comes first.
|
|
|
|
fl_set_form_minsize(form(), minw_, minh_);
|
2000-09-22 15:09:51 +00:00
|
|
|
fl_show_form(form(),
|
2001-02-23 16:19:54 +00:00
|
|
|
FL_PLACE_MOUSE | FL_FREE_SIZE, 0,
|
2001-03-15 13:37:04 +00:00
|
|
|
title_.c_str());
|
2000-09-22 15:09:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FormBase::hide()
|
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
if (form() && form()->visible)
|
2000-10-13 05:57:05 +00:00
|
|
|
fl_hide_form(form());
|
2000-09-29 06:34:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
void FormBase::InputCB(FL_OBJECT * ob, long data)
|
2000-09-22 15:09:51 +00:00
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
bc().input(input(ob, data));
|
2000-09-22 15:09:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-20 10:14:03 +00:00
|
|
|
ButtonPolicy::SMInput FormBase::input(FL_OBJECT *, long)
|
|
|
|
{
|
2001-03-21 13:27:03 +00:00
|
|
|
return ButtonPolicy::SMI_VALID;
|
2001-03-20 10:14:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
FormBase * GetForm(FL_OBJECT * ob)
|
2000-09-22 15:09:51 +00:00
|
|
|
{
|
2001-04-24 15:25:26 +00:00
|
|
|
lyx::Assert(ob && ob->form && ob->form->u_vdata);
|
2001-03-15 13:37:04 +00:00
|
|
|
FormBase * pre = static_cast<FormBase *>(ob->form->u_vdata);
|
|
|
|
return pre;
|
2000-09-22 15:09:51 +00:00
|
|
|
}
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
} // namespace anon
|
|
|
|
|
2000-09-22 15:09:51 +00:00
|
|
|
|
2001-04-24 15:25:26 +00:00
|
|
|
extern "C"
|
|
|
|
int C_FormBaseWMHideCB(FL_FORM * form, void *)
|
2000-09-22 15:09:51 +00:00
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
// Close the dialog cleanly, even if the WM is used to do so.
|
2001-04-24 15:25:26 +00:00
|
|
|
lyx::Assert(form && form->u_vdata);
|
2001-03-15 13:37:04 +00:00
|
|
|
FormBase * pre = static_cast<FormBase *>(form->u_vdata);
|
|
|
|
pre->CancelButton();
|
|
|
|
return FL_CANCEL;
|
2000-10-02 00:10:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
extern "C" void C_FormBaseApplyCB(FL_OBJECT * ob, long)
|
2000-10-02 00:10:25 +00:00
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
GetForm(ob)->ApplyButton();
|
2000-09-22 15:09:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
extern "C" void C_FormBaseOKCB(FL_OBJECT * ob, long)
|
2000-09-22 15:09:51 +00:00
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
GetForm(ob)->OKButton();
|
2000-09-22 15:09:51 +00:00
|
|
|
}
|
2000-10-13 05:57:05 +00:00
|
|
|
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
extern "C" void C_FormBaseCancelCB(FL_OBJECT * ob, long)
|
2000-10-13 05:57:05 +00:00
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
FormBase * form = GetForm(ob);
|
|
|
|
form->CancelButton();
|
2000-10-13 05:57:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
extern "C" void C_FormBaseRestoreCB(FL_OBJECT * ob, long)
|
2000-10-13 05:57:05 +00:00
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
GetForm(ob)->RestoreButton();
|
2000-10-13 05:57:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
extern "C" void C_FormBaseInputCB(FL_OBJECT * ob, long d)
|
2000-10-13 05:57:05 +00:00
|
|
|
{
|
2001-03-15 13:37:04 +00:00
|
|
|
GetForm(ob)->InputCB(ob, d);
|
2000-10-13 05:57:05 +00:00
|
|
|
}
|