lyx_mirror/src/frontends/qt2/Qt2Base.C
Alfredo Braunstein 0062cd3408 move the title_ string to the base class Dialog::View
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7003 a592a061-630c-0410-9148-cb99ea01b6c8
2003-05-22 15:42:50 +00:00

113 lines
1.5 KiB
C

/**
* \file Qt2Base.C
* 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 <qdialog.h>
#include <qapplication.h>
#include "debug.h"
#include "qt_helpers.h"
#include "QtLyXView.h"
#include "Qt2Base.h"
#include "Qt2BC.h"
#include "ButtonController.h"
#include "ControlButtons.h"
#include "support/LAssert.h"
Qt2Base::Qt2Base(string const & t)
: ViewBase(t), updating_(false)
{}
Qt2BC & Qt2Base::bcview()
{
return static_cast<Qt2BC &>(bc().view());
// return dynamic_cast<Qt2BC &>(bc());
}
bool Qt2Base::isVisible() const
{
return form() && form()->isVisible();
}
void Qt2Base::show()
{
if (!form()) {
build();
}
form()->setMinimumSize(form()->sizeHint());
update(); // make sure its up-to-date
form()->setCaption(toqstr(getTitle()));
if (form()->isVisible()) {
form()->raise();
} else {
form()->show();
}
}
void Qt2Base::hide()
{
if (form() && form()->isVisible())
form()->hide();
}
bool Qt2Base::isValid()
{
return true;
}
void Qt2Base::changed()
{
if (updating_)
return;
bc().valid(isValid());
}
void Qt2Base::slotWMHide()
{
getController().CancelButton();
}
void Qt2Base::slotApply()
{
getController().ApplyButton();
}
void Qt2Base::slotOK()
{
getController().OKButton();
}
void Qt2Base::slotClose()
{
getController().CancelButton();
}
void Qt2Base::slotRestore()
{
getController().RestoreButton();
}