2001-08-28 03:35:17 +00:00
|
|
|
/**
|
|
|
|
* \file QGraphicsDialog.C
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-08-28 03:35:17 +00:00
|
|
|
*
|
2002-10-20 01:48:28 +00:00
|
|
|
* \author John Levon
|
2002-09-24 13:57:09 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-08-28 03:35:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2002-09-24 13:57:09 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2002-06-19 03:38:44 +00:00
|
|
|
#include "ControlGraphics.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "LString.h"
|
|
|
|
|
2001-08-28 03:35:17 +00:00
|
|
|
#include <qwidget.h>
|
|
|
|
#include <qpushbutton.h>
|
2002-09-11 17:42:45 +00:00
|
|
|
#include <qlineedit.h>
|
2001-08-28 03:35:17 +00:00
|
|
|
#include <qcheckbox.h>
|
|
|
|
|
|
|
|
#include "QGraphicsDialog.h"
|
|
|
|
#include "QGraphics.h"
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
2001-08-28 03:35:17 +00:00
|
|
|
QGraphicsDialog::QGraphicsDialog(QGraphics * form)
|
|
|
|
: QGraphicsDialogBase(0, 0, false, 0),
|
|
|
|
form_(form)
|
|
|
|
{
|
|
|
|
connect(okPB, SIGNAL(clicked()),
|
|
|
|
form, SLOT(slotOK()));
|
|
|
|
connect(applyPB, SIGNAL(clicked()),
|
2002-01-31 13:15:33 +00:00
|
|
|
form, SLOT(slotApply()));
|
2001-08-28 03:35:17 +00:00
|
|
|
connect(closePB, SIGNAL(clicked()),
|
|
|
|
form, SLOT(slotClose()));
|
2002-01-31 13:15:33 +00:00
|
|
|
connect(restorePB, SIGNAL(clicked()),
|
|
|
|
form, SLOT(slotRestore()));
|
2001-08-28 03:35:17 +00:00
|
|
|
}
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2002-09-11 17:42:45 +00:00
|
|
|
void QGraphicsDialog::show()
|
2002-10-20 01:48:28 +00:00
|
|
|
{
|
2002-09-11 17:42:45 +00:00
|
|
|
QGraphicsDialogBase::show();
|
|
|
|
filename->setFocus();
|
|
|
|
}
|
|
|
|
|
2002-10-20 01:48:28 +00:00
|
|
|
|
2001-08-28 03:35:17 +00:00
|
|
|
void QGraphicsDialog::change_adaptor()
|
|
|
|
{
|
|
|
|
form_->changed();
|
|
|
|
}
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
2001-08-28 03:35:17 +00:00
|
|
|
void QGraphicsDialog::closeEvent(QCloseEvent * e)
|
|
|
|
{
|
|
|
|
form_->slotWMHide();
|
|
|
|
e->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-01-31 13:15:33 +00:00
|
|
|
void QGraphicsDialog::browse_clicked()
|
2001-08-28 03:35:17 +00:00
|
|
|
{
|
|
|
|
form_->browse();
|
|
|
|
}
|
2002-01-31 13:15:33 +00:00
|
|
|
|
|
|
|
void QGraphicsDialog::get_clicked()
|
|
|
|
{
|
|
|
|
form_->get();
|
|
|
|
}
|