mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
9abb7db468
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22104 a592a061-630c-0410-9148-cb99ea01b6c8
40 lines
703 B
C++
40 lines
703 B
C++
/**
|
|
* \file DialogView.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "DialogView.h"
|
|
|
|
#include "GuiView.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include <QCloseEvent>
|
|
#include <QShowEvent>
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
DialogView::DialogView(GuiView & lv, string const & name)
|
|
: QDialog(&lv), Dialog(lv, name)
|
|
{}
|
|
|
|
|
|
void DialogView::setViewTitle(docstring const & title)
|
|
{
|
|
setWindowTitle("LyX: " + toqstr(title));
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "DialogView_moc.cpp"
|