2003-10-23 11:58:01 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file QBranchDialog.h
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef QBRANCHDIALOG_H
|
|
|
|
|
#define QBRANCHDIALOG_H
|
|
|
|
|
|
|
|
|
|
#include "ui/QBranchDialogBase.h"
|
|
|
|
|
|
2004-05-19 15:11:37 +00:00
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace frontend {
|
2003-10-23 11:58:01 +00:00
|
|
|
|
|
|
|
|
|
class QBranch;
|
|
|
|
|
|
|
|
|
|
class QBranchDialog : public QBranchDialogBase {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
QBranchDialog(QBranch * form);
|
|
|
|
|
protected slots:
|
|
|
|
|
virtual void change_adaptor();
|
|
|
|
|
protected:
|
|
|
|
|
virtual void closeEvent(QCloseEvent * e);
|
|
|
|
|
private:
|
|
|
|
|
QBranch * form_;
|
|
|
|
|
};
|
|
|
|
|
|
2004-05-19 15:11:37 +00:00
|
|
|
|
} // namespace frontend
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
2003-10-23 11:58:01 +00:00
|
|
|
|
#endif // QBRANCHDIALOG_H
|