mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
50 lines
898 B
C++
50 lines
898 B
C++
|
/**
|
|||
|
* \file QBranchDialog.C
|
|||
|
* This file is part of LyX, the document processor.
|
|||
|
* Licence details can be found in the file COPYING.
|
|||
|
*
|
|||
|
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
|
|||
|
*
|
|||
|
* Full author contact details are available in file CREDITS.
|
|||
|
*/
|
|||
|
|
|||
|
#include <config.h>
|
|||
|
|
|||
|
#include "QBranchDialog.h"
|
|||
|
#include "QBranch.h"
|
|||
|
|
|||
|
#include <qpushbutton.h>
|
|||
|
//Added by qt3to4:
|
|||
|
#include <QCloseEvent>
|
|||
|
|
|||
|
namespace lyx {
|
|||
|
namespace frontend {
|
|||
|
|
|||
|
QBranchDialog::QBranchDialog(QBranch * form)
|
|||
|
: form_(form)
|
|||
|
{
|
|||
|
setupUi(this);
|
|||
|
connect(okPB, SIGNAL(clicked()),
|
|||
|
form, SLOT(slotOK()));
|
|||
|
connect(closePB, SIGNAL(clicked()),
|
|||
|
form, SLOT(slotClose()));
|
|||
|
|
|||
|
connect( branchCO, SIGNAL( activated(int) ), this, SLOT( change_adaptor() ) );
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void QBranchDialog::closeEvent(QCloseEvent * e)
|
|||
|
{
|
|||
|
form_->slotWMHide();
|
|||
|
e->accept();
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
void QBranchDialog::change_adaptor()
|
|||
|
{
|
|||
|
form_->changed();
|
|||
|
}
|
|||
|
|
|||
|
} // namespace frontend
|
|||
|
} // namespace lyx
|