mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
26 lines
473 B
C
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
|