lyx_mirror/src/frontends/qt2/QSplashDialog.h
John Levon 03add3957a The big renaming. Yowser.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2552 a592a061-630c-0410-9148-cb99ea01b6c8
2001-08-19 13:25:15 +00:00

26 lines
473 B
C++

/**
* \file QSplashDialog.C
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author Edwin Leuven
*/
#ifndef FORMSPLASHBASE_H
#define FORMSPLASHBASE_H
class QSplashDialog : public QFrame
{
public:
QSplashDialog(QWidget * parent, const char * name,
WFlags fl = QWidget::WStyle_NoBorder | QWidget::WStyle_Customize,
bool modal = false);
~QSplashDialog();
protected:
virtual void mousePressEvent(QMouseEvent *);
};
#endif // QSPLASHDIALOG_H